script ที่ผมสร้างใว้ เพื่อ run โปรแกรมข้างนอก
var fonlineid,fvn,fhn,fdepartment,fcid,fdepartmentcode,exefile:string;
begin
fonlineid:=get_onlineid;
fvn:= GetGlobalValue('VN');
fhn:=getsqldata('select hn from ovst where vn = "'+fvn+'"');
fcid:=getsqldata('select cid from patient where hn="'+fhn+'"');
fdepartment := getsqldata('select department from onlineuser where onlineid="'+fonlineid+'"');
fdepartmentcode:=copy(fdepartment,0,3);
exefile:='C:\Program Files\HOSxP\Chome.exe '+fcid;
WinExec(exefile,nil);
end;