Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 8
Default Add an event / meeting in Outlook via Excel ?

Dear all;

I want to add an event in Outlook by clicking a commandbutton on a UserForm.
I don't know if this is possible, but as many thnings can be done by VBA I
thought that one of you goeroes
might have a solution to this.

Can this be done ?

Mark.


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,272
Default Add an event / meeting in Outlook via Excel ?

Mark,

Here is a simple example

Sub CreateOutlookAppointment()
Dim oItem As Object
Dim oOLApp As Object
Set oOLApp = CreateObject("Outlook.Application")
Set oItem = oOLApp.CreateItem(1) 'olAppointmentItem
With oItem
.Subject = "Test value"
.Location = "My house"
.Start = #7/27/2004 10:00:00 AM#
.Duration = 30 ' minutes
.Body = "The agenda is as follows"
.Save
End With
End Sub


--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"Mark Rosenkrantz" wrote in message
...
Dear all;

I want to add an event in Outlook by clicking a commandbutton on a

UserForm.
I don't know if this is possible, but as many thnings can be done by VBA I
thought that one of you goeroes
might have a solution to this.

Can this be done ?

Mark.




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
how do I set up a repeating meeting in Outlook? MOSTAFA Excel Worksheet Functions 6 February 19th 10 01:26 AM
Meeting Request Outlook XP sending to some Ailish Excel Discussion (Misc queries) 1 May 9th 08 01:08 PM
how do i set up a repeating meeting in outlook? Naomi x Excel Discussion (Misc queries) 2 November 12th 07 04:49 PM
how do i se up a repeating meeting in outlook? m haider Charts and Charting in Excel 1 August 15th 07 08:05 PM
Outlook - Meeting Requst using a Template sawan[_2_] Excel Programming 0 May 19th 04 06:14 PM


All times are GMT +1. The time now is 06:08 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"