Faxing a web page
- From: phpMax <tahir@xxxxxxxxxxxxx>
- Date: Sat, 17 Feb 2007 01:37:03 +0500
Hello
I have the following code to fax a word doc, but has anyone idea how to fax the output of a URL.
Following is the code........
----------
Dim FaxServer As Object
Dim FaxDoc As Object
'Create FaxServer object...
Set FaxServer = CreateObject("FaxServer.FaxServer")
'...and connect to it - no empty name allowed
FaxServer.Connect ("tahir")
'Create document
Set FaxDoc = FaxServer.CreateDocument("c:\test.doc")
FaxDoc.FaxNumber = "6368855"
FaxDoc.RecipientName = "John Doe"
FaxDoc.Send
Set FaxDoc = Nothing
FaxServer.Disconnect
Set FaxServer = Nothing
.
- Prev by Date: Re: How to save common appdata to the registry?
- Next by Date: Re: Finding the default printer
- Previous by thread: Dump first 5 chars of file if match
- Next by thread: Re: Finding the default printer
- Index(es):
Relevant Pages
|