-
I resolved it. I forgot to save options and when i execute the code the options are always the estandar. The code is like this: Window.OPEN('En proceso ...'); WindowIsOpen := TRUE; IF _ArchivoPDF = '' THEN ERROR(Text001); IF Objeto.GET(Objeto.Type::Report,'',204) THEN BEGIN IF...
-
I need to generate a PDF from report and i don`t know why the first time i execute the code is OK but when i change the name of the file and execute again the code it saves the report with the first name. Somebody knows what is wrong? The code: Window.OPEN('En proceso ...'); WindowIsOpen := TRUE;...
-
I resolved it. I forgot to save options and when i execute the code the options are always the estandar. The code is like this: Window.OPEN('En proceso ...'); WindowIsOpen := TRUE; IF _ArchivoPDF = '' THEN ERROR(Text001); IF Objeto.GET(Objeto.Type::Report,'',204) THEN BEGIN IF...
-
I need to generate a PDF from report and i don`t know why the first time i execute the code is OK but when i change the name of the file and execute again the code it saves the report with the first name. Somebody knows what is wrong? The code: Window.OPEN('En proceso ...'); WindowIsOpen := TRUE;...
-
Hi Siya, I often use CutePDF if i want something printed to a PDF-file. CutePDF installs as a printer, and can be chosen in the print dialog of any document, just as well as any other printer. Needs to be installed at all clients though. But it's freeware
-
Hi there Good people!!! I want to print Report 1401(Check) on the text format,but it gives crap information,Is it possible for me to print it on the PDF.Our client are having printer problems to print check!! I just want to write to the pdf or text file!!!! Thanks in advance!!!!
-
This could be useful. Be sure to use automation objects of the type 'Microsoft Shell Controls and Automation'. PrintFile( FileName : Text[250]) CREATE(objShell); IF NOT EXISTS(FileName) THEN EXIT; SplitDirFile(FileName,Dir,File); // nog te schrijven objFolder := objShell.NameSpace(Dir); objFolderItems...
-
If you want to code your solution anyway, why not store the "path_to_pdf_reader(maybe_with_exe)" in the user profile (add a text variable) and use the shell command then? SHELL('" path_to_pdf_reader(maybe_with_exe) "',' /p /h ',Root);
-
Hi All, I need a solution to print pdf file which is already imported as a blob in navision. There can be mulilple pdf files which can print at a time (default printer). I have done my investigation and came across some wonderful solution like Root := Filename SHELL('"C:\Program Files\Adobe...
-
Not quite the answer I was looking for. In my previous job we also developed this as a part of our solution. So yes it can be done today. And properly also with the new 5.1 "role based client". But my question was more in the direction. Will this be "standard" or build in functionality...