Programming Outlook
Programming Outlook
So, Outlook 2000 doesn't do ANYTHING like all the other Office programs in terms of programming. Poor editor, weird object constructs, etc. I'm basically going to have to learn new syntax to make it do what I want. Bah.
Has anyone here programmed for later versions of Outlook (like XP, 2003, etc.)? I would assume the newer Office suites use .Net as their programming base. Am I right?
Has anyone here programmed for later versions of Outlook (like XP, 2003, etc.)? I would assume the newer Office suites use .Net as their programming base. Am I right?
[color=red]You're Pretty When I'm Drunk[/color]
-
Freakaloin
- Posts: 10620
- Joined: Tue May 07, 2002 7:00 am
-
Freakaloin
- Posts: 10620
- Joined: Tue May 07, 2002 7:00 am
Outlook 2003 kicks ass IMO.
I've done some coding for it in VB. Yes it uses .Net.
I highly recommed the book:
Programming Outlook and Exchange 2003
by Thomas Rizzo
Very good book. Covers some VB scripting too (although, I feel VB script is the soupy shit that dripped out of the devils ass after taco night).
I've done some coding for it in VB. Yes it uses .Net.
I highly recommed the book:
Programming Outlook and Exchange 2003
by Thomas Rizzo
Very good book. Covers some VB scripting too (although, I feel VB script is the soupy shit that dripped out of the devils ass after taco night).
Well, for exchange programming tonnes of stuff. Being as exchange is essentially a database program, you can learn to extract any kind of informatin you want from your exchange server.
Having said that, that allows you to write custom automated processes to manage your email system however you see fit. E.g. You want to write a custom trouble ticket system with complex routing and message handling.
And then there is the usual forms and what not for end users to enter data more easily.
By using the Exchange API mail and other objects are already defined making use of mail functions exceptionally easy and fast. With about 5 lines of code I can have a program import the exchange objects, create an email and send it.
Having said that, that allows you to write custom automated processes to manage your email system however you see fit. E.g. You want to write a custom trouble ticket system with complex routing and message handling.
And then there is the usual forms and what not for end users to enter data more easily.
By using the Exchange API mail and other objects are already defined making use of mail functions exceptionally easy and fast. With about 5 lines of code I can have a program import the exchange objects, create an email and send it.