View.GoToDate-Methode (Outlook)
Ändert das von der aktuellen Ansicht zum Anzeigen von Informationen verwendete Datum.
Syntax
Ausdruck. GoToDate
( _Date_
)
Ausdruck Eine Variable, die ein View-Objekt darstellt.
Parameter
Name | Erforderlich/Optional | Datentyp | Beschreibung |
---|---|---|---|
Date | Erforderlich | Date | Das Datum, in das die Ansicht geändert werden soll. |
HinwBemerkungeneise
Um ein Datum anzugeben, zu dem in einer aktuellen Ansicht, z. B. einem CalendarView-Objekt , wechseln soll, sollten Sie zunächst ein View-Objekt für die aktuelle Ansicht abrufen, indem Sie Explorer.CurrentView anstelle von Folder.CurrentView verwenden. Im folgenden Codebeispiel wird das Ausführen dieser Aktion veranschaulicht.
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
Siehe auch
Support und Feedback
Haben Sie Fragen oder Feedback zu Office VBA oder zu dieser Dokumentation? Unter Office VBA-Support und Feedback finden Sie Hilfestellung zu den Möglichkeiten, wie Sie Support erhalten und Feedback abgeben können.