This is a real beginer question and sadly I have to ask it because I have been going around in circles for the part two hours...
So, I want to be able to use the FAXCOMLib to play with sending faxes in C# (alternative to using Office Automation for faxing).
I tried the following directly
However in both cases I get the following error:
frmMain.cs(8): The type or namespace name FAXCOMLib could not be found (are you missing a using directive or an assembly reference?)
frmMain.cs(9): The type or namespace name FAXCOMEXLib could not be found (are you missing a using directive or an assembly reference?)
So I assume I am missing something - I checked in References (NET and COM) and the only thing I could find that looked slightly relevant was "COM->FaxControl 1.0 Type Library" which allows me to use the FaxControl but not FaxServer.
I did some reading and I think the FAXCOMLIb is part of the "Platform SDK" so I went to the Microsoft Downloads (http://www.microsoft.com/downloads/results.aspx?productid=&freetext=sdk&displaylang=en) and found a bunch of possible choices...
- Platform SDK Redistributable: GDI+
- Microsoft Windows SDK for the February 2006 CTP
...etc...
Is there anyway to confirm that FAXCOMLib is part of "Platform SDK" and not part of another SDK? And which SDK do I need to download and install?
(after that I assume it is just as simple as loading the COM Reference that will have appeared after installing the SDK)
Any help would be greatly appreciated, thanks
So, I want to be able to use the FAXCOMLib to play with sending faxes in C# (alternative to using Office Automation for faxing).
I tried the following directly
Code:
using FAXCOMLib;
using FAXCOMEXLib;
frmMain.cs(8): The type or namespace name FAXCOMLib could not be found (are you missing a using directive or an assembly reference?)
frmMain.cs(9): The type or namespace name FAXCOMEXLib could not be found (are you missing a using directive or an assembly reference?)
So I assume I am missing something - I checked in References (NET and COM) and the only thing I could find that looked slightly relevant was "COM->FaxControl 1.0 Type Library" which allows me to use the FaxControl but not FaxServer.
I did some reading and I think the FAXCOMLIb is part of the "Platform SDK" so I went to the Microsoft Downloads (http://www.microsoft.com/downloads/results.aspx?productid=&freetext=sdk&displaylang=en) and found a bunch of possible choices...
- Platform SDK Redistributable: GDI+
- Microsoft Windows SDK for the February 2006 CTP
...etc...
Is there anyway to confirm that FAXCOMLib is part of "Platform SDK" and not part of another SDK? And which SDK do I need to download and install?
(after that I assume it is just as simple as loading the COM Reference that will have appeared after installing the SDK)
Any help would be greatly appreciated, thanks