|
-
June 15th, 2001, 01:25 PM
#1
Outlook Help - Please
Can anyone tell me how to open the "New Meeting Request" form in Outlook 2000 from VB?
From Outlook you access it by going to the calendar and right clicking and selecting
"New Meeting Request" I need to do this from VB. I'm sure it can be done with API's or the
Outlook object library but I don't know how.
Thanks for any help!!!
Kris
Software Engineer
Phoenix,AZ
Kris
Software Engineer
Phoenix, AZ USA
-
June 15th, 2001, 02:27 PM
#2
Re: Outlook Help - Please
I figured it out.
private Sub Command1_Click()
Dim olAPP as Outlook.Application
Dim olMeetReq as Outlook.AppointmentItem
set olAPP = new Outlook.Application
set olMeetReq = olAPP.CreateItem(olAppointmentItem)
olMeetReq.MeetingStatus = olMeeting
olMeetReq.Display
DoEvents
End Sub
Kris
Software Engineer
Phoenix,AZ
Kris
Software Engineer
Phoenix, AZ USA
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|