Jump to content
Fórum Script Brasil
  • 0

Definir Calendario


Ramon Mattos

Question

Boa tarde,

Estou utilizando o código abaixo para incluir compromissos no Outlook pelo VBA, porem tenho 02 calendários (Calendário Pessoal e Calendário Profissional). O compromisso está sendo incluído corretamente, porem somente no calendário Pessoal (default), gostaria que fosse no calendário Profissional (criado). Se alguém puder me ajudar!

Private Sub Inserir_Compromisso_Outlook()

On Error GoTo Add_Err

Dim objOutlook As Outlook.Application

Dim objAppt As Outlook.AppointmentItem

Set objOutlook = CreateObject("Outlook.Application")

Set objAppt = objOutlook.CreateItem(olAppointmentItem)

With objAppt

.Start = #12/26/2011 3:00:00 PM#

.End = #12/27/2011 4:00:00 PM#

.Duration = 30

.Subject = "FLUXO DE BM´s"

.Body = "BM´S EM ATRASO"

.Location = "PCOS - Programação e Controle - Medição"

.ReminderMinutesBeforeStart = 15

.ReminderSet = True

.Save

.Close (olSave)

End With

Set objAppt = Nothing

Set objOutlook = Nothing

Set objRecurPattern = Nothing

Exit Sub

Add_Err:

MsgBox "Error " & Err.Number & vbCrLf & Err.Description

Exit Sub

End Sub

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...