Saturday, March 26, 2005
Sending Fax From ASP Page
Sending Fax From ASP Page
this articles explain how to send fax from ASP page
u need faxcom.dll to creat an instance fro Faxserver.
1) First Create an intance for FaxServer
Set FaxServer = CreateObject("FaxServer.FaxServer")
2) Specify the Fax Machine
FaxServer.Connect ("\\" & FaxMachine)
FaxServer.Connect ("\\" & FaxMachine)
3)Select the input document you want to send as Fax
Set FaxDoc = FaxServer.CreateDocument(FileName)
Set FaxDoc = FaxServer.CreateDocument(FileName)
4) Specify Fax Number
FaxDoc.FaxNumber = FaxNumber
FaxDoc.FaxNumber = FaxNumber
5) Send Fax
FaxDoc.Send
FaxDoc.Send
6) Initialize to nothig
Set FaxDoc = Nothing
Set FaxServer = Nothing
Set FaxDoc = Nothing
Set FaxServer = Nothing
References: MSDN
Friday, March 25, 2005
Interface between C# and asm
Hi,
anyone can tell me , is there any way to call an subroutine in asm
from C# program..
if possible, can u expalin to me?
thanks
-Renugopal
http://renugopal.rediffblogs.com/
anyone can tell me , is there any way to call an subroutine in asm
from C# program..
if possible, can u expalin to me?
thanks
-Renugopal
http://renugopal.rediffblogs.com/
Monday, March 14, 2005
Subscribe to:
Posts (Atom)