VB.NET - Send WinXP Fax

  • Thread starter Thread starter Scott Johnson
  • Start date Start date
S

Scott Johnson

Hi!

I have been looking for a way to send a fax using Visual Basic .NET through
the built in Fax of Windows XP.

I was able to get it to work in VB6, but I want to rewrite the application
in VB.NET. Anyone got any ideas?

Thanks!
--Scott
 
* "Scott Johnson said:
I have been looking for a way to send a fax using Visual Basic .NET through
the built in Fax of Windows XP.

I was able to get it to work in VB6, but I want to rewrite the application
in VB.NET. Anyone got any ideas?

How did you send the FAX in VB Classic?
 
To fax in VB6, I make a reference to Microsoft Fax Service Extended Com Type
Library (c:\windows\system32\fxscomex.dll)

Dim FS As FAXCOMEXLib.FaxServer
Dim FD As FAXCOMEXLib.FaxDocument
Set FS = New FAXCOMEXLib.FaxServer
Set FD = New FAXCOMEXLib.FaxDocument
 
* "Scott Johnson said:
To fax in VB6, I make a reference to Microsoft Fax Service Extended Com Type
Library (c:\windows\system32\fxscomex.dll)

Dim FS As FAXCOMEXLib.FaxServer
Dim FD As FAXCOMEXLib.FaxDocument
Set FS = New FAXCOMEXLib.FaxServer
Set FD = New FAXCOMEXLib.FaxDocument

What's the problem in using this library in .NET?
 
Back
Top