I dette særtema ser vi på, hvordan cloud og AI bliver fundamentet for virksomhedernes digitale forretning, og hvordan de nye muligheder for automatisering og forretningsværdi kan udnyttes uden at miste overblik, sikkerhed og menneskelig kontrol.
function ExecAndWait(Filename, Parameter: string; nCmdShow: integer): longword; var zAppName: array[0..max_path] of char; zParameter: array[0..max_path] of char; zCurDir: array[0..max_path] of char; StartupInfo: TStartupInfo; ProcessInfo: TProcessInformation; begin StrPCopy(zAppName,FileName); StrPCopy(zParameter,Parameter); StrPCopy(zCurDir,GetCurrentDir()); FillChar(StartupInfo,Sizeof(StartupInfo),#0); StartupInfo.cb:=Sizeof(StartupInfo); StartupInfo.dwFlags:=STARTF_USESHOWWINDOW; StartupInfo.wShowWindow:=nCmdShow; if not CreateProcess(zAppName,zParameter,nil,nil,false,CREATE_NEW_CONSOLE or NORMAL_PRIORITY_CLASS,nil,nil,StartupInfo,ProcessInfo) then Result:=0 else begin WaitforSingleObject(ProcessInfo.hProcess,INFINITE); GetExitCodeProcess(ProcessInfo.hProcess,Result); end; end;
shellexecute(handle, \'open\', pchar(\'{her skal stien til din half-life mappe stå + din HL.EXE, og hvis du skulle starte CS, skal du have dette med \" -game cstrike\"}\'), \'\',\'\', SW_SHOW);
Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.