sending email from excel using outlook express

S

Sam

I recently had to re-install Windows XP Pro due to a disk failure. When I
originally installed XP I had to add something to the win.ini file so that
the code
x = Application.Dialogs(xlDialogSendMail).Show(MailTo$, "Monthly Invoice")
would work but I can't remember what it was.
 
D

David

Sam wrote
I recently had to re-install Windows XP Pro due to a disk failure.
When I originally installed XP I had to add something to the win.ini
file so that the code
x = Application.Dialogs(xlDialogSendMail).Show(MailTo$, "Monthly
Invoice")
would work but I can't remember what it was.

This works for me:
[Mail]
MAPIXVER=1.0.0.1
MAPI=1
MAPIX=1
OLEMessaging=1
CMC=1
CMCDLLNAME=mapi.dll
CMCDLLNAME32=mapi32.dll
 
S

Sam

Thanks David. It was the MAPIX=1 that fixes the problem.


David said:
Sam wrote
I recently had to re-install Windows XP Pro due to a disk failure.
When I originally installed XP I had to add something to the win.ini
file so that the code
x = Application.Dialogs(xlDialogSendMail).Show(MailTo$, "Monthly
Invoice")
would work but I can't remember what it was.

This works for me:
[Mail]
MAPIXVER=1.0.0.1
MAPI=1
MAPIX=1
OLEMessaging=1
CMC=1
CMCDLLNAME=mapi.dll
CMCDLLNAME32=mapi32.dll
 
Top