I am successfully faxing text files from my vb.net 2003 application using a fax server on the network server (Win 2003). Now I am trying to fax HTML or Doc files and getting error 80070483 which after some searching indicates there is no file association for these types of files which doesn't make any sense to me. I can double click either of these file types and they open with the appropriate program. I also checked the settings in windows explorer/tools/folder options. I'm using the following code for testing.
If I do this the Fax works correctly.
Not sure where to go from here. I've seen some suggestions that say I have to change the html file into an image before I can fax it. Any ideas on how I cane get these faxes to work?
Auguy
Sylvania/Toledo Ohio
Code:
oFaxDocument.Body = "C:\TestFolder\MyFile.html"
Code:
oFaxDocument.Body = "C:\TestFolder\MyFile.txt"
Auguy
Sylvania/Toledo Ohio