Programar una Reunion mediante Excel-VBA y Outlook

yeye

New Member
Joined
Jul 18, 2002
Messages
32
Necesito su colaboracion para Programar una reunion(convocatoria de Reunion) de una lista de personas que tengo en excel y reflejarla en Outlook
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
En realidad necesito crear la COnvocatorio a reunion, en estos momentos tengo la creacion de una cita, con el siguiente codigo

Dim olApp As Outlook.Application
Dim objapp As Outlook.AppointmentItem
Set olApp = New Outlook.Application
Set objapp = olApp.CreateItem(olAppointmentItem)

With objapp
.Subject = LAgenSubj '"Visita"
.Body = LAgenBody '"Programacion"
.BusyStatus = LAgenTTiempo ' olBusy olOutOfOffice
.Start = LAgenStart
.Duration = LAgendur '30
.ReminderSet = False
If LAgenAlarm <> "" Then
.ReminderMinutesBeforeStart = LAgenAlarm
.ReminderSet = True
End If
'.Display (True)
.Save
End With

Set objapp = Nothing
Set olApp = Nothing

Entonces necesito crear una Convocatoria ?

GRacias por su colaboracion!!!
 
Upvote 0
Este código lo encontré en la Ayuda de Outlook.

Code:
Set myItem = myOlApp.CreateItem(olAppointmentItem)
myItem.MeetingStatus = olMeeting
myItem.Subject = "Strategy Meeting"
myItem.Location = "Conference Room B"
myItem.Start = #9/24/97 1:30:00 PM#
myItem.Duration = 90
Set myRequiredAttendee = myItem.Recipients.Add("Nate _
    Sun")
myRequiredAttendee.Type = olRequired
Set myOptionalAttendee = myItem.Recipients.Add("Kevin _
    Kennedy")
myOptionalAttendee.Type = olOptional
Set myResourceAttendee = _
    myItem.Recipients.Add("Conference Room B")
myResourceAttendee.Type = olResource
myItem.Send
 
Upvote 0

Forum statistics

Threads
1,217,446
Messages
6,136,676
Members
450,024
Latest member
Beagle263

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top