View Single Post
  #2  
Old June 22nd, 2004, 12:17 PM
Russ Valentine [MVP-Outlook]
external usenet poster
 
Posts: n/a
Default sending fax with dotnet

AFAIK, WinFax SE cannot be accessed programmatically.
--
Russ Valentine
[MVP-Outlook]
"Emmanuel Guillot" wrote in message
...
hello i want to send a fax with dotnet c# or delphi later

for a email my code is :

Outlook.ApplicationClass app = new Outlook.ApplicationClass();
Outlook.MailItemClass mi =
(Outlook.MailItemClass)app.CreateItem(Outlook.OlIt emType.olMailItem);
mi.Recipients.Add("myemail");
mi.Subject = "essai";
mi.Display(new object());

how doing for sending a fax ?! (symantec fax starter edition and outlook
2000)
thanks manu.