The following code snippet might be helpful.
Note: Do add the FaxComex.dll to the C# project
using FAXCOMEXLib;
:
:
//number of messages to be fetched
int count = 10;
string messageId;
FaxServerClass fax = new FaxServerClass();
fax.Connect("");
FaxFolders folders = fax.Folders;
FaxIncomingArchive incoming = folders.IncomingArchive;
FaxIncomingMessageIterator iterator = incoming.GetMessages(count);
FaxIncomingMessage message ;
for(int i=0;i<count && (!iterator.AtEOF) ;i++)
{
message = iterator.Message;
messageId = message.Id;
iterator.MoveNext();
}
---
Renu Bhattar [MSFT]
Microsoft Printing, Imaging and Faxing
This posting isprovided "AS IS" with no warranties and confers no rights.
Please do not send mail directly to this aloas. This alias is for newsgroup
purposes only.
Rambabu said:
I want to read Fax inbox items and Send items uisng C#
Application
Any one Know this one send to me
(e-mail address removed)