Ms Outlook into form

gstylianou

Registered User.
Local time
Tomorrow, 00:20
Joined
Dec 16, 2013
Messages
359
Hi,

Is it possible to add an outlook control into ms access form?

Thanks
 
Not sure. Maybe try the OLE ActiveX Object control? Good luck!

Edit: I looked, and here are some of the Outlook objects I found on my system.

outlook.png
 
Not sure. Maybe try the OLE ActiveX Object control? Good luck!

Edit: I looked, and here are some of the Outlook objects I found on my system.

View attachment 82883
Hi, i tried it already without result. Actually i put the control into form but On Load event i cannot get anything..
 
What kinds of Outlook things do you want to do on your form?
 
You can create a Listbox that loads emails from your Outlook and refreshes them from time to time.

Look into VBA to loop through an Outlook folder and grab attributes of MailItems. I've done this before in Excel, it's been a while.
 
You can create a Listbox that loads emails from your Outlook and refreshes them from time to time.

Look into VBA to loop through an Outlook folder and grab attributes of MailItems. I've done this before in Excel, it's been a while.
Can you please give me more instruction on how can i do this because my poor knowledge in vba programming? Should be very helpful for me even one small example file in order to understand it...

I will be very appreciated
 
Can you please give me more instruction on how can i do this because my poor knowledge in vba programming? Should be very helpful for me even one small example file in order to understand it...

I will be very appreciated
Why not start off with simple steps?

 
Attached is an example. Form Load event. Loads inbox emails into form listbox. In this example I'm not readily familiar with how to grab the outlook namespace using late binding (strongly preferred for deploying databases to diverse users), so I checked a reference to Microsoft Outlook.
 

Attachments

Attached is an example. Form Load event. Loads inbox emails into form listbox. In this example I'm not readily familiar with how to grab the outlook namespace using late binding (strongly preferred for deploying databases to diverse users), so I checked a reference to Microsoft Outlook.
Thank you very much, i will study your code and your idea and if i will need more help i'll be back. But, the idea is to load the outlook as is it into my form....

Anyway, thank you very much again
 
If you actually mean duplicate the entire outlook interface.....Inbox, Calendar, Todo list, reading pane, onto an Access form, that might be a tall order. (not to say it can't be done).

Good luck with the project
 
If you actually mean duplicate the entire outlook interface.....Inbox, Calendar, Todo list, reading pane, onto an Access form, that might be a tall order. (not to say it can't be done).

Good luck with the project
yes, actually i want Inbox, Calendar, Todo list, reading pane, onto an Access form..
 
yes, actually i want Inbox, Calendar, Todo list, reading pane, onto an Access form..
Hi. The only thing I could think of, to make it easier, is to use a web browser control and point to the online version of your Outlook. Just a thought...
 
I understand you want those functions in Access, but the truth is that after a while you would do better to just launch Outlook. The biggest cost of having to reinvent the wheel is all of the square wheels you end up building until you finally get it right - whereas it is already right in Outlook.
 
I understand you want those functions in Access, but the truth is that after a while you would do better to just launch Outlook. The biggest cost of having to reinvent the wheel is all of the square wheels you end up building until you finally get it right - whereas it is already right in Outlook.
There goes my idea for an Access form to type in commands for my Google Minis, rather than speaking to them then. :D
 

Users who are viewing this thread

Back
Top Bottom