1. März 2016 17:42
Barcode_G := Rec.Barcode;
Pfad_G := STRSUBSTNO('\\hs-crm01\Software\smartNav\smartAxLink.exe SHOWPDF|int. BelegNr=%1', Barcode_G);
CLEAR(WshShell);
CREATE(WshShell,FALSE,TRUE);
WshShell.Run(Pfad_G);
1. März 2016 17:47
1. März 2016 18:43
1. März 2016 18:58
5. März 2016 11:07
Name DataType Subtype Length
SystemDiagnosticsProcess DotNet System.Diagnostics.Process.'System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'
SystemDiagnosticsProcessStartInfo DotNet System.Diagnostics.ProcessStartInfo.'System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'
SystemDiagnosticsProcessWindowsStyle DotNet System.Diagnostics.ProcessWindowStyle.'System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'
CommandParameter Text
Barcode_G Text
Barcode_G := Rec.Barcode;
CommandParameter := STRSUBSTNO(SHOWPDF|int. BelegNr=%1', Barcode_G);
SystemDiagnosticsProcessStartInfo := SystemDiagnosticsProcessStartInfo.ProcessStartInfo(STRSUBSTNO('"%1"', '\\hs-crm01\Software\smartNav\smartAxLink.exe'), CommandParameter);
SystemDiagnosticsProcessStartInfo.WindowStyle(SystemDiagnosticsProcessWindowsStyle.Hidden);
SystemDiagnosticsProcess := SystemDiagnosticsProcess.Process;
SystemDiagnosticsProcess := SystemDiagnosticsProcess.Start(SystemDiagnosticsProcessStartInfo);
SystemDiagnosticsProcess.WaitForExit(2 * 60000); //60000ms = 1 Min -> 2 Min TimeOut
5. März 2016 16:28
5. März 2016 19:22