CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: Faxing in VB

  1. #1
    Join Date
    Sep 1999
    Location
    Bangalore, India
    Posts
    21

    Faxing in VB

    Can we fax using VB? Is there any component?

    Software Engineer
    Bangalore

  2. #2
    Join Date
    Feb 2000
    Location
    Indiana
    Posts
    308

    Re: Faxing in VB

    If you're using a fax program that creates a "fax printer", you can print to that printer.


  3. #3
    Join Date
    Mar 2000
    Location
    MALAYSIA
    Posts
    30

    Re: Faxing in VB

    Hope my problem could give you a good start... cheer...

    I am writing an email/fax application using the VB MAPI control. And the code is basically like this:

    MAPISession.SignOn
    MAPISession.NewSession = True

    MAPIMessages.SessionID = MAPISession.SessionID

    MAPIMessages.Compose
    MAPIMessages.MsgIndex = -1
    MAPIMessages.RecipAddress = "[email protected]"
    MAPIMessages.MsgSubject = "xxxxx"

    MAPIMessages.AttachmentIndex = 0
    MAPIMessages.AttachmentType = mapData
    MAPIMessages.AttachmentPathName = "c:/test.txt"

    MAPIMessages.Send

    I have both Microsoft Outlook and Outlook Express on my machine. Everything looked pretty good as I was able to get my application to work with Outlook Express, but it fails when using Microsoft Outlook.

    The error occurs on the line:
    MAPIMessages.Send
    and I get the following message:
    "Unspecified Error Occurred 32002"

    Is there any known problems using the MAPI control with Microsoft Outlook? Any information on this??

    Thanks in advance.



Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured