Hi everyone,
I'm generating an EPL file in one directory, and trying to print it, bit I finde the next error:

"There os no associated application with the specified file for this operation"
The file is generated correctly, with this code:
lShipment.CALCFIELDS(EPL);
lTmpBLob.Blob := lShipment.EPL;
lTempServerFileName := lFileManagement.ServerTempFileName('.EPL');
lFileManagement.BLOBExportToServerFile(lTmpBLob,lTempServerFileName);
FileNameServer := '\\SRV-DC01\navision\XML\Pegatinas\'+lShipment."No."+'.EPL';
lFileManagement.DownloadToFile(lTempServerFileName, FileNameServer);
And I'm trying to print it this way:
IF ISNULL(ProcessStartInfo) THEN
ProcessStartInfo := ProcessStartInfo.ProcessStartInfo;
ProcessStartInfo.UseShellExecute := TRUE;
ProcessStartInfo.Verb := 'Print';
ProcessStartInfo.WindowStyle := ProcessWindowStyle.Hidden;
//seleccionar impresora
ProcessStartInfo.Arguments :='Etiquetas Expediciones 2';
ProcessStartInfo.FileName := FileNameServer;
Process.Start(ProcessStartInfo);
Process.Close;
This are the involved variables
ProcessStartInfo DotNet System.Diagnostics.ProcessStartInfo.'System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'
ProcessWindowStyle DotNet System.Diagnostics.ProcessWindowStyle.'System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'
Process DotNet System.Diagnostics.Process.'System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'
What could be the problem? I'm trying different options, but I can't finde the correct way,
Any hint will be really appreciated