SPLUS.PAS and MAPI.PAS ---------------------- These files provide access to Microsoft's SPLUS.DLL and MAPI.DLL. Using the DLLs allowes you to communicate with MS-Mail and MS-Schedule+ packages. These packages are also included in Windows for Workgroups. To get more information on how to use these DLLs, access Microsoft's forum. These units were translated from SPLUS.H and MAPI.H and related .DEF files. For example, to login to mail and popup the send mail dialog: var mm : tmapimessage; begin fillchar (mm, sizeof (mm), #0); mapisendmail (0, hwindow, @mm, mapi_dialog, 0); end; Please note that you need SPLUS.DLL, MAPI.DLL and other certain other DLLs that are only present in Windows for Workgroups to use MAPI and SPLUS. Without these DLLs your application will not run. If your application must run with or without these DLLs, use the API SetErrorMode to perform the appropriate error handling. -- Yasser Asmi (CIS 71543,2252)