Faxing a Web Page

Posted: 02-16-2007, 08:35 PM
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
Reply With Quote

Responses to "Faxing a Web Page"

 
LinkBack Thread Tools Display Modes
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


Similar Threads
Thread Thread Starter Forum Replies Last Post
Faxing Cover Page Tony Windows XP Printers / Scanners / Fax 1 01-29-2007 09:46 PM
Faxing more then one page? xmasfool1 Windows XP Printers / Scanners / Fax 1 04-25-2006 10:42 PM
Faxing w/OUT a Cover Page??? YJ Windows XP Printers / Scanners / Fax 1 12-01-2005 01:16 AM
Multiple Page FAXing With XP Clyde Windows XP Printers / Scanners / Fax 2 09-26-2004 11:05 AM
Attaching documents while faxing, faxing multiple page docs MrMike Windows XP Printers / Scanners / Fax 3 09-07-2003 06:01 PM