> I have a problem,
> How to print a HTML document directly from a form to printer, having only the URL address of this document?
>
> Regards
It is not clear what do you mean exactly
- "print", manually or from the code?
- "form" ?
- etc.
Probably this will give you some ideas:
oIE = CreateObject("InternetExplorer.Application")
oIE.Visible = .t.
oIE.navigate(lcURL)
....
oIE.Execwb(6,1) &&print it, with user prompt
oIE.Execwb(6,2) &&print it, withOUT user prompt
....
Best Wishes,
Yuri Rubinov