Questions tagged [winfax]

10 questions
3
votes
3 answers

How can I use the WinFax Pro COM objects from a .NET app?

I know, WinFax Pro is so 1998. (note: this is not WinFax.dll, which is apparently part of Windows. This is WinFax Pro, a separate commercial add-on app originally from Delrina, and later acquired by Symantec). I'm working in an office that still…
Cheeso
  • 189,189
  • 101
  • 473
  • 713
1
vote
0 answers

Managing Windows Fax service from another service

I developed a (Topshelf) service that prepares and sends fax jobs using the underlying Fax service from Windows (win7 in my case). I use FaxDotNet which just wraps the winfax.dll (former FAXCOM) for .NET. Whenever I run my service standalone…
Koen
  • 3,626
  • 1
  • 34
  • 55
1
vote
1 answer

Get Fax Job Status

I have tried the code below for sending fax: uses ComObj, ActiveX, FAXCOMEXLib_TLB; procedure TForm1.Button1Click(Sender: TObject); var I: Integer; JobIDs: OleVariant; FaxServer: IFaxServer2; FaxDocument: IFaxDocument2; begin try …
1
vote
0 answers

How to choose a specific modem when sending a fax?

I'm writing an application to send faxes trought FAXCOMEXLib. I used this code: Dim objFaxServer As New FAXCOMEXLib.FaxServer Dim objFaxDocument As New FAXCOMEXLib.FaxDocument Dim JobID As Object Try objFaxServer.Connect(txtFaxServer.Text) …
Ruslan Gilmutdinov
  • 1,217
  • 2
  • 9
  • 20
0
votes
0 answers

Unable to send fax through Fax Modem in Windows 10 Pro vb.net

While sending fax throught the application in vb.net giving the below error on the line (Dim sFaxJobIds() As String = oFaxDoc.ConnectedSubmit(oFaxSvr)). Can someone please help us here. Error : Operation failed Code: Dim oFaxSvrType As Type =…
0
votes
1 answer

COM interop: How can I get the CCW from an LPDISPATCH?

I am writing an app in C#, that connects to an old-skool COM object via IDispatch. I do this with this sort of code: public sealed class Attachments { Object comObject; Type type; private readonly static Attachments _instance = new…
Cheeso
  • 189,189
  • 101
  • 473
  • 713
0
votes
2 answers

Need to send fax without much delay

I am new and I have no much knowledge about fax processing. But, As We are using interfax service for sending fax that is working fine if we send one fax at a time there is not much delay/failure in this type of case, but our requirement is to send…
0
votes
0 answers

Which factors influence the speed with which a fax is transmitted?

I have an application which generates files automatically and faxes them, and I am trying to improve its speed. When I send these files through an application called Classic PhoneTools, the duration is 35-40 seconds. The speed is 14,400 bps, and…
abutnaru
  • 53
  • 4
0
votes
0 answers

FAXCOMLib is not working in windows service

I want to send fax from computer, I am using FAXCOMLib. It is working on windows based application, but it is not working on windows service. I found a thread across which shows that FAXCOMLIb will not work on windows server. Is that true? If…
Manish
  • 103
  • 3
  • 18
0
votes
0 answers

Windows 2008 fax with FAXCOMEXLib issues

I am using FAXCOMEXLib to implement a fax service. I create a windows service, retrieve the fax document from database, connect to fax server. everything is fine, but when I open Windows Fax and Scan. The fax job is not int the outbox queue. But if…
Chris Cheung
  • 79
  • 1
  • 16