I am trying to use ShellExecute to print a html file using the following code:
But I am getting the following error:
Is the ShellExecute command stable, or is there a way to bring a html file into a report to print?
Code:
DECLARE INTEGER ShellExecute IN shell32.dll ;
INTEGER hndWin, STRING cAction, STRING cFileName, ;
STRING cParams, STRING cDir, INTEGER nShowWin
=ShellExecute(0,"PRINT","c:\Test.htm","","",1)
But I am getting the following error:
Ambiguous name detected: TMpDDE
Is the ShellExecute command stable, or is there a way to bring a html file into a report to print?