Forum Moderators: open

Message Too Old, No Replies

Active-x Fax control

really a VB question..

         

weblamer2

3:20 pm on Jul 28, 2003 (gmt 0)

10+ Year Member



Hello, this is more of a VB question, but since it's almost identical to asp, i thought i would ask..

I am upgrading an application to have built in fax capabilities. Rather than write it all myself, i wanted to find a third party fax control.

Has anyone seen an active-x fax control on the market anywhere?

aspdaddy

11:56 am on Jul 29, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



If you have a fax server or use winfax, you can send fax by printing to that device.

So one way to fax from your application would be to automate word to print to your fax:

ActivePrinter = "Fax"
Application.PrintOut FileName:="myFax.doc"

HTH