On Oct 30, 4:02*am, Jeff C <Je...@discussions.microsoft.com> wrote:
> --
> Jeff C
> Live Well .. Be Happy In All You Do
>
> "tshil...@gmail.com" wrote:
> > I have an Access 2003 database with a simple table. Using Office
> > Outlook 2007 I created an email form (saved as a .msg file). When I
> > get messages from Outlook 07 users, messages automatically process as
> > configured. However, if I get an email from an Outlook 03 user, the
> > message moves to the data processing folder, but it does not get
> > processed automatically. Anyone know how to get the Outlook 03
> > messages to process automatically?
>
> > Thanks,
>
> Sorry - forgot another method. *In an Access Database go to file-get
> external data-link-choose Exchange
>
> You will link to your Outlook inbox. *Once you have the link established you
> can built queries with the data. *Once you locate the message field youcan
> append the data to a new table. *You will probably need to build additional
> queries to parse the text of the message the way you want but it is do-able. *
> Place your action queries into a macro and schedule you macro to run daily
> and you can collect the data.
>
>
>
>
>
> > Todd- Hide quoted text -
>
> - Show quoted text -
My workaround will be a simple approach. Using a developer tool,
called Auto-It (
www.autoitscript.com), I will right a function to
perform the same process a user would perform upon reciept of a 2003
message to manually export to Access.
Basically, I will create an email form specifically for 2003 OUtlook
users and direct to an Outlook folder that is different than 2007
users. Using a mail rule, I will run a script (.exe) upon reciept of
the 2003 message. This script will use sendkeys() method to do all the
clicking to make the process autonomous (as the old adage goes...where
there's a will, there's a way). Here's the initial Auto-It script:
/==========================================
WinActivate("Microsoft Outlook", "")
Send("!g")
Sleep (500)
Send("!m")
Sleep (500)
Send("+{F10}")
/=============================================