replacing Outlook forms

  • Thread starter Thread starter Pete
  • Start date Start date
P

Pete

Is it possible to replace outlook's default forsm ( eg reminder ) with your
own form to make it do more - eg the ability to fire off another application
etc or send an email etc

If yes - any good books or samples around

TIA


Pete
 
A reminder is not shown in an Outlook form and you cannot modify how
reminders are displayed.

You can handle various reminder events such as Application.Reminder for
Outlook 2000 and later, and Application.Reminders.ReminderFire or
..ReminderAdd and so on if using Outlook 2002 or later.

See http://www.outlookcode.com/d/code/sendreminder.htm for a code example
that sends emails when reminders fire for an idea of what you can do.
 
Thank you Ken and Sue

Looks like I'm really going to have to buy your books now - been putting
it off

Pete
 
Sue / Ken

I take it from the example Ken gave from sue's book that I could
theoretically fire off another application ???? - that is to automatically
update some data elswhere .

Pete
 
You can start an application by using CreateObject, like for Word or Excel
for example. You can also run programs by using Windows Scripting or
Shell.Execute. You can also do things like connecting to a database using an
ADO Connection and execute code on the database. Lots of things you can do.
 
Thank you - just what I need to do

Pete


Ken Slovak - said:
You can start an application by using CreateObject, like for Word or Excel
for example. You can also run programs by using Windows Scripting or
Shell.Execute. You can also do things like connecting to a database using an
ADO Connection and execute code on the database. Lots of things you can do.
 
Back
Top