Using Winfax Send Object from ASP.Net

dmorin74

Member
Joined
Dec 24, 2003
Messages
7
Im attempting to use the CSDKSend winfax object to send a fax from a browser-based application were building. Im able to do this just fine if i do not use the .addAttachmentFile method on the SendObject. However, i need to attach a file, and when i do so, it seems to go through fine, but then when i minimize my browser, there is a dialog box in the background that looks like this.. and it never goes away, thus, the fax never goes through.

[Broken External Image]:http://www.gamemisconduct.net/dave/logo.gif

Has anyone ever attempted this?? Any help would be GREAT!!

Below is one of the renditions of the code i used.

With objFaxSend
.SetQuickCover(0)
.SetCoverFile("")
.SetUseCover(0)
.SetCoverText("TESTING")
.SetSubject("Fax Confirmation I " & lInvoice)
.AddAttachmentFile("c:\faxattach.txt")
.SetUseCover(0)
.SetCompany(sCustomer)
.SetTo(sContact)
.SetNumber(sPhoneNo)
.SetCountryCode(1)
.SetAreaCode(sAreaCode)
.SetDate(sDate)
.SetTime(Format$(Now(), "hh:mm:ss"))
.SetTime("20:00:00")
.AddRecipient()
.Send(0)
.LeaveRunning()
.Done()
End With
objFaxSend = Nothing


Thanks,
Dave
 
Back
Top