How do you print/preview graphical reports?
DDOC does an excellent job on text only reports.
Does QHTML give this ability?
Would Internet Explorer automation do this?
http://www.powerbasic.com/support/pb...ad.php?t=40921
Suggestion to PowerBASIC:
Greatly expand XPRINT by supporting a graphical file format.
Jose Roca's mini browser makes an excellent report viewer
with the added ability to have your own browser!
Highly suggested download at: http://www.jose.it-berater.org/smffo...p?topic=2826.0
Printing a web page without a dialog even works.
I'm surprised because I thought that was a security issue.
Can't wait to move to PBFORMS!
DDOC does an excellent job on text only reports.
Does QHTML give this ability?
Would Internet Explorer automation do this?
http://www.powerbasic.com/support/pb...ad.php?t=40921
Suggestion to PowerBASIC:
Greatly expand XPRINT by supporting a graphical file format.
Jose Roca's mini browser makes an excellent report viewer
with the added ability to have your own browser!
Highly suggested download at: http://www.jose.it-berater.org/smffo...p?topic=2826.0
Printing a web page without a dialog even works.
I'm surprised because I thought that was a security issue.
Can't wait to move to PBFORMS!
Code:
CASE %IDM_PRINT pIWebBrowser2 = OC_GetDispatch(GetDlgItem(hWnd, %IDC_IEWB)) IF ISOBJECT(pIWebBrowser2) THEN REM pIWebBrowser2.ExecWB %OLECMDID_PRINT, %OLECMDEXECOPT_PROMPTUSER pIWebBrowser2.ExecWB %OLECMDID_PRINT, %OLECMDEXECOPT_DONTPROMPTUSER pIWebBrowser2 = NOTHING END IF EXIT FUNCTION
Comment