views:

80

answers:

0

I'm trying to find faxcomexlib.dll. After Googling around, I installed the Core SDK from the Platform SDK, but I still don't see this dll listed in the System32 folder. This is the code I'm trying to run:

FAXCOMEXLib.FaxServer faxServer = new FAXCOMEXLib.FaxServerClass();
                //faxServer.Connect(Environment.MachineName); 
                faxServer.Connect("//My-Server");                   
                FAXCOMLib.FaxDoc faxDoc = (FAXCOMEXLib.FaxDoc)faxServer.CreateDocument(FileName);               
                faxDoc.RecipientName = "Test";
                faxDoc.FaxNumber = "1234567890"; 
                faxDoc.DisplayName = "Test";
                int Response = faxDoc.Send(); 
                faxServer.Disconnect();

I'm using VS 2010/.NET 4.0, and I'm on Windows XP.