
Re: sending fax with dotnet
AFAIK, WinFax SE cannot be accessed programmatically.
--
Russ Valentine
[MVP-Outlook]
"Emmanuel Guillot" <eguillot@chez.com> wrote in message
news:%237rrSaEWEHA.1952@TK2MSFTNGP12.phx.gbl...
> 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.
>
>