home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / dbmsg / mapi / simple.cli / readme.txt < prev    next >
Encoding:
Text File  |  1996-01-16  |  1.4 KB  |  32 lines

  1. Sample Simple MAPI Client
  2.  
  3.  
  4. The Simple.Cli sample application illustrates using Simple MAPI functions.
  5.  
  6. The sample is a very simple mail client. Using it is intuitive and
  7. straightforward.
  8.  
  9. To run this application, you have to have MAPI run-time binaries installed on
  10. your system. For installation instructions, see the readme.wri in the
  11. mstools\mapi\ directory.
  12.  
  13. When writing simple MAPI applications, the addresses of all of the simple
  14. MAPI functions has to be obtained explicitly (using GetProcAddress), as
  15. opposed to linking to the import library for MAPI.DLL.
  16.  
  17. If sending/receiving mail is not the primary function of your application, you
  18. can test presence of simple MAPI in a system without incurring high cost of
  19. trying to load a DLL. You can test the value of the MAPI variable. It is 1 if
  20. simple MAPI is installed. The variable is located in the [mail] section of
  21. win.ini on 16-bit Windows and Windows NT version 3.51 and earlier and under
  22. HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Messaging Subsystem in the
  23. registry on Windows 95 and Windows NT 4.0 and later.
  24.  
  25. Known Problems
  26. --------------
  27.  
  28. When you Reply All to a message that you sent to yourself, your name will
  29. appear twice in the To well. This is caused by the fact that Simple MAPI
  30. does not expose either search key or a way to compare entry IDs, so there is
  31. no safe way to remove duplicates from the recipient list.
  32.