I am trying to get a faxing routine working, but I cannot get past the error
An unhndled exception of the type
'System.Runtime .InteropService s.COMException' occurred in
microsoft.visua lbasic.dll
Additional information: The data is invalid.
The code I am using is
Dim fxServer As Object
Dim fxDoc As Object
'
fxServer = CreateObject("F axserver.Faxser ver")
fxServer.connec t("SERVER")
fxDoc = fxServer.create document("D:\Te st1.fax")
fxDoc.faxnumber = "0123456789 "
fxDoc.send()
Does anyone have any ideas.
Thanks
An unhndled exception of the type
'System.Runtime .InteropService s.COMException' occurred in
microsoft.visua lbasic.dll
Additional information: The data is invalid.
The code I am using is
Dim fxServer As Object
Dim fxDoc As Object
'
fxServer = CreateObject("F axserver.Faxser ver")
fxServer.connec t("SERVER")
fxDoc = fxServer.create document("D:\Te st1.fax")
fxDoc.faxnumber = "0123456789 "
fxDoc.send()
Does anyone have any ideas.
Thanks
Comment