send fax through fax service
-
i wants to send fax through vb.net application i added reference of faxservice'sdll and usiong the following code: FaxServerClass fs = new FaxServerClass(); fs.Connect("mymachine"); //specifies the machinename object obj = fs.CreateDocument("myfilename"); FaxDoc fd = (FaxDoc)obj; fd.FaxNumber = "myfax#"; fd.RecipientName = "Tester"; int i = fd.Send(); MessageBox.Show(i.ToString()); fs.Disconnect(); i dont have modem but have lan card which is connected to internet how can i send fax
-
i wants to send fax through vb.net application i added reference of faxservice'sdll and usiong the following code: FaxServerClass fs = new FaxServerClass(); fs.Connect("mymachine"); //specifies the machinename object obj = fs.CreateDocument("myfilename"); FaxDoc fd = (FaxDoc)obj; fd.FaxNumber = "myfax#"; fd.RecipientName = "Tester"; int i = fd.Send(); MessageBox.Show(i.ToString()); fs.Disconnect(); i dont have modem but have lan card which is connected to internet how can i send fax
Dont really know much about this but could you give us the error/output that you recieve when you run the code. Do you have Windows fax services installed and configured on the computer in the connect("mymachine") line?
-
Dont really know much about this but could you give us the error/output that you recieve when you run the code. Do you have Windows fax services installed and configured on the computer in the connect("mymachine") line?