Método View.GoToDate (Outlook)
Cambia la fecha usada por la vista actual para mostrar información.
Sintaxis
expresión. GoToDate
( _Date_
)
Expresión Variable que representa un objeto View .
Parameters
Nombre | Obligatorio/opcional | Tipo de datos | Descripción |
---|---|---|---|
Date | Obligatorio | Date | Fecha para la que debe cambiarse la vista. |
Comentarios
Para especificar la fecha que figurará en una vista actual, como un objeto CalendarView, primero debe obtener un objeto View de la vista actual usando Explorer.CurrentView en lugar de Folder.CurrentView. En el siguiente ejemplo de código se indica cómo hacerlo.
Sub TestGoToDate()
Dim oCV As Outlook.CalendarView
Dim oExpl As Outlook.Explorer
Dim datGoTo As Date
datGoTo = "11/7/2005"
' Display the contents of the Calendar default folder.
Set oExpl = Application.Explorers.Add( _
Application.Session.GetDefaultFolder(olFolderCalendar), olFolderDisplayFolderOnly)
oExpl.Display
' Retrieve the current view by calling the
' CurrentView property of the Explorer object.
Set oCV = oExpl.CurrentView
' Set the CalendarViewMode property of the
' current view to display items by day.
oCV.CalendarViewMode = olCalendarViewDay
' Call the GoToDate method to set the date
' for which information is displayed in the view.
oCV.GoToDate datGoTo
End Sub
Consulte también
Soporte técnico y comentarios
¿Tiene preguntas o comentarios sobre VBA para Office o esta documentación? Vea Soporte técnico y comentarios sobre VBA para Office para obtener ayuda sobre las formas en las que puede recibir soporte técnico y enviar comentarios.