AllenRitch
Technical User
I would like to have a button on an Access form that opens a custom Outlook form I created. I know how to use the following code to open and send a default mail message, but of course, this isn’t what I need.
Set outLookApp = CreateObject("Outlook.Application"
Set eMailItem = outLookApp.CreateItem(olMailItem)
I’m not sure if this is relevant or not, but the Message class of my custom Outlook form is IPM.Note.Bankruptcy. Would I use this in place of olMailItem?
Assuming this can be done, can I also automatically populate the user-defined Outlook text fields with my Access text fields?
Thanks
Set outLookApp = CreateObject("Outlook.Application"
Set eMailItem = outLookApp.CreateItem(olMailItem)
I’m not sure if this is relevant or not, but the Message class of my custom Outlook form is IPM.Note.Bankruptcy. Would I use this in place of olMailItem?
Assuming this can be done, can I also automatically populate the user-defined Outlook text fields with my Access text fields?
Thanks