Hi guys
I have seen various threads about setting an outlook reminder based on an appt table and then a form. All i want to do is have a command button which opens outlook and opens a new appointment in the calendar for the user to enter the reminder information themselves.
Is this possible?
I have the code below to open outlook but it opens a new copy of outlook (even if outlook is already open) and i dont know how to open the calendar or new appointment...
So to summarise, i do not want to automate an appointment with another form, just open the window for the user to enter it directly to outlook...
TIA
I have seen various threads about setting an outlook reminder based on an appt table and then a form. All i want to do is have a command button which opens outlook and opens a new appointment in the calendar for the user to enter the reminder information themselves.
Is this possible?
I have the code below to open outlook but it opens a new copy of outlook (even if outlook is already open) and i dont know how to open the calendar or new appointment...
Code:
Private Sub Command69_Click()
On Error GoTo Err_Command69_Click
Dim stAppName As String
stAppName = "C:\Program Files\Microsoft Office\OFFICE11\OUTLOOK.EXE"
Call Shell(stAppName, 1)
Exit_Command69_Click:
Exit Sub
Err_Command69_Click:
MsgBox Err.Description
Resume Exit_Command69_Click
End Sub
So to summarise, i do not want to automate an appointment with another form, just open the window for the user to enter it directly to outlook...
TIA