I don't know about you, but I often need to put a quick reminder in Outlook for tomorrow. Such things as "Phone Bill", "Feed the Guinea Pig" and "Get son to have bath" are the sort of essential things that make life slip along that little easier. A while ago I wrote a quick VBScript to do just that. Here it is: ' Written by Ian Watkins September 2002 ' This script creates an Outlook Appointment item to act as a reminder to the user Dim ol Dim olns dim olAppt dim olAppointmentItem olAppointmentItem = 1 ' Set the Application object. Set ol = CreateObject("Outlook.Application") ' Set the Namespace object. Set olns = ol.GetNamespace("MAPI") ' Create an appointment item and populate it set olAppt = ol.CreateItem(olAppointmentItem) olAppt.start = date + 1 & " 09:00am" olAppt.duration = 0 olAppt.ReminderMinutesBeforeStart = 0 olAppt.subject = inputbox("Please enter a subject", "Reminder Appointment") olAppt.BusyStatus...