BigDelGooner
Board Regular
- Joined
- Aug 17, 2009
- Messages
- 197
Hi all
I am using the following code to create an outlook meeting request.
This works fine apart from the fact that I'd like the meeting request to shift to the 'Invite Attendees' tabs. Any ideas on how I can do this?
Sub Open_InviteTeam()
Dim OutApp As Object
Dim OutMtg As Object
Set OutApp = CreateObject("Outlook.Application")
Set OutMtg = OutApp.CreateItem(1)
On Error Resume Next
With OutMtg
.Recipients.Add ("email@test.com")
.Subject = "Inv Meeeting:"
.Body = "Kind regards" & vbCr & Trim(Mid(Application.username, InStr(Application.username, ",") + 1, 50))
.Location = "Can I have a room pls"
.Duration = 60
.Display
End With
On Error GoTo 0
Set OutMtg = Nothing
Set OutApp = Nothing
End Sub
Any help greatly appreciated.
I am using the following code to create an outlook meeting request.
This works fine apart from the fact that I'd like the meeting request to shift to the 'Invite Attendees' tabs. Any ideas on how I can do this?
Sub Open_InviteTeam()
Dim OutApp As Object
Dim OutMtg As Object
Set OutApp = CreateObject("Outlook.Application")
Set OutMtg = OutApp.CreateItem(1)
On Error Resume Next
With OutMtg
.Recipients.Add ("email@test.com")
.Subject = "Inv Meeeting:"
.Body = "Kind regards" & vbCr & Trim(Mid(Application.username, InStr(Application.username, ",") + 1, 50))
.Location = "Can I have a room pls"
.Duration = 60
.Display
End With
On Error GoTo 0
Set OutMtg = Nothing
Set OutApp = Nothing
End Sub
Any help greatly appreciated.