sending email from excel using outlook express

  • Thread starter Thread starter Sam
  • Start date Start date
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.
 
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
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top