Outlook: Prefira tempo para o assunto da consulta

1
  1. Eu quero que o título / assunto de cada compromisso seja adicionado ao seu tempo.
  2. Eu quero que o título seja atualizado automaticamente para corresponder ao horário do evento (se eu alterar a data, o mesmo acontece com a data do título).

Exemplo:

10:00-12:00 Meeting with Joe
  1. Tentar encontrar um método integrado não foi um sucesso. Nada nas opções, configurações, regras, eu praticamente arrastei toda a interface.
  2. Uma macro é provavelmente o caminho a percorrer. Meu VB é inexistente, embora eu não tenha medo de aprender se alguém postar alguns links diretos.
  3. Não encontrei nenhum compromisso de "pós-conferência" para salvar o evento no calendário por meio da pesquisa do Google. Existe uma que eu possa usar para ativar uma macro depois?

Isso é possível?

    
por Cat Boss 02.04.2014 / 17:52

2 respostas

2

O trecho a seguir faz o trabalho bem, escreveu em cerca de 3-4 horas e foi muito difícil escrever;)

Quaisquer comentários sobre como tornar o código mais sucinto e melhor estruturado são muito bem-vindos.

Deixei comentários sobre as partes que achei que não estavam claras para os futuros cantores. Se você ler isto e não entender nada, deixe um comentário! :)

Dim WithEvents curCal As Items ' set var as the holder of Item events
Public lastSavedAppointmentStart As Date ' variable so we won't infinitely loop when saving Items
Public lastSavedAppointmentEnd As Date
Public justSaved As Boolean

' Some initial Startup Code from slipstick.com
' F5 while the cursor is in this sub (in the vba editor)
' will reload the so called "project"
Private Sub Application_Startup()
   Dim NS As Outlook.NameSpace
   Set NS = Application.GetNamespace("MAPI")
   Set curCal = NS.GetDefaultFolder(olFolderCalendar).Items
   Set NS = Nothing
   lastSavedAppointmentStart = Now()
   lastSavedAppointmentEnd = Now()

End Sub


Private Sub checkPrependtime(ByVal Item As Object)
    Dim isntLastAppt As Boolean
    isntLastAppt = isntLastSavedAppointment(Item)
    If justSaved = False And isntLastAppt Then
        If Not isTimePrepended(Item) Then
            Call saveLastAppointment(Item)
            Call prependTime(Item)
        Else
            Call removePrependedTime(Item)
        End If
    Else
        justSaved = False
    End If
End Sub

Function isntLastSavedAppointment(ByVal Item As Outlook.AppointmentItem) As Boolean
    isntLastSavedAppointment = lastSavedAppointmentStart <> Item.start Or lastSavedAppointmentEnd <> Item.End
End Function

Private Sub saveLastAppointment(ByVal Item As Outlook.AppointmentItem)
    justSaved = True
    lastSavedAppointmentStart = Item.start
    lastSavedAppointmentEnd = Item.End
End Sub

Private Sub removePrependedTime(ByVal Item As Outlook.AppointmentItem)
    Set lastSavedAppointment = Nothing
    Dim oldSubject As String
    ' Cut out the time part of the subject (e.g. 13:00-15:00 Meeting with Joe)
    ' returns Meeting with Joe
    oldSubject = Mid(Item.Subject, 13, Len(Item.Subject))
    Item.Subject = oldSubject
    Item.Save
End Sub

Private Sub prependTime(ByVal appt As Outlook.AppointmentItem)
    Dim newSubject As String, apptStart As Date, apptEnd As Date
    Set lastSavedAppointment = appt
    newSubject = Format(appt.start, "hh:mm") & "-" & Format(appt.End, "hh:mm") & " " & appt.Subject
    appt.Subject = newSubject
    appt.Save
End Sub

' Check whether the third char is :
' If time is prepended (e.g. Item.subject is something like
' "12:00-13:00 Meeting with joe" Then third char is always :)
Function isTimePrepended(ByVal Item As Outlook.AppointmentItem) As Boolean
    isTimePrepended = InStr(3, Item.Subject, ":")
End Function


' BEGIN event handlers
Private Sub curCal_ItemAdd(ByVal Item As Object)
    If TypeOf Item Is Outlook.AppointmentItem Then
        Call prependTime(Item)
    End If
End Sub

Private Sub curCal_ItemChange(ByVal Item As Object)
    If TypeOf Item Is Outlook.AppointmentItem Then
        Call checkPrependtime(Item)
    End If
End Sub

' END event handlers
    
por 26.04.2014 / 10:55
0

É possível, pelo menos no OWA e Outlook 2013, possivelmente no Outlook 2010. Acabamos de começar a brincar com o desenvolvimento de aplicativos do Outlook no escritório recentemente, por isso infelizmente não posso fornecer nenhum código para você começar.

Dê uma lida: link

    
por 02.04.2014 / 18:45