I want help with Mapi32.dll 
Author Message
 I want help with Mapi32.dll

Hello,

You need to call VBAMAP32.DLL instead of calling MAPI32.DLL
directly.  Search MSKB for that file. The data structures in
MAPI32.DLL are not all compatible with VB, VBAMAP32.DLL solves
that problem.

Alternatively, you can use our IDSMail component instead.  For
example, here is all the code you would need to send a message
with a file attachment:

Dim idsMail as Object
Set idsMail = CreateObject("IDSMailInterface.Server")
idsMail.ObjectKey = "ABC123"
idsMail.NewMessage
idsMail.AddRecipientTo "Jim Smith"
idsMail.AddRecipientCc "Mary Brown, Doug Williams"
idsMail.Subject = "Meeting Agenda"
idsMail.Message = "Here is the agenda for the weekly meeting."
idsMail.AddAttachment "C:\MEETINGS\AGENDA.DOC"
idsMail.Send

Info at http://www.*-*-*.com/

--
Regards,

Eric June
Intuitive Data Solutions

--------- We Make OLE Servers Intuitive --------------

Intuitive Data Solutions           fax: (408) 776-1267
Send/Rcv Email *EASILY* through SMTP/POP, VIM, MAPI,
MHS & VINES http://www.*-*-*.com/
------------------------------------------------------



Tue, 07 Mar 2000 03:00:00 GMT  
 I want help with Mapi32.dll

I would like to call Mapi32.dll from Visual Basic with API methods .

I am calling the function Mapifindnext  from MAPI32.DLL but i can not
take the Message ID from this .
What can i do ?

I would like to have an expample with how can i used functions from
MAPI32.DLL

If someone would help me find the information I need to get started, I
would greatly appreciate it.



Wed, 08 Mar 2000 03:00:00 GMT  
 
 [ 2 post ] 

 Relevant Pages 

1. Help with MAPI32.DLL calls for Access 7.0

2. HELP!! Accessing MAPI32.DLL functions from VB

3. Need help on using MAPI32.DLL in NT 4.0

4. Problem calling MAPISendMail from MAPI32.DLL

5. MAPI32.DLL and 32-bit Access

6. Mapi32.DLL and Groupwise 5.2

7. Using MAPI32.DLL

8. info on MAPI32.DLL

9. Problem using MAPI32.DLL and MAPISendMail

10. MAPI32.DLL

11. info on MAPI32.DLL

12. MAPI32.dll "Contacts"

 

 
Powered by phpBB® Forum Software