Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
Dim myOLApp As Object, myInspector As Object, Dim Faellig As Object
Set myOLApp = CreateObject("Outlook.Application")
Set myInspector = myOLApp.ActiveInspector
Faellig = 'Datum in US-Schreibweise
myInspector.CurrentItem.? = Faellig
myInspector.CurrentItem.Save
myInspector.CurrentItem.Close
Set myInspector = Nothing
Set myOLApp = Nothing
Dim myOLApp As Object, myInspector As Object
Set myOLApp = CreateObject("Outlook.Application")
Set myInspector = myOLApp.ActiveInspector
a = myInspector.CurrentItem.DueDate
myInspector.CurrentItem.DueDate = "21.02.2005"
Set myOLApp = CreateObject("Outlook.Application")
Set myOLApp = CreateObject("Outlook")
myInspector.CurrentItem.Open
myInspector.CurrentItem.DueDate = "21.02.2005"
myInspector.CurrentItem.Save
myInspector.CurrentItem.Close
Hat man nämlich ein Outlookelement geöffnet, man also ein "Eingabeformular" sieht, spricht man das akt. Objekt mit "ActiveInspector" usw. an.Das funktioniert dann wenn ich die Aufgabe doppelgeklickt habe, die Aufgabe ist geöffnet.
Hierzu gibt es in Outlook das sog. "Explorer"-Objekt, also die Übersicht.Was ich benötige ist aber das, dass das ganze funtioniert sobald ich eine Aufgabe in der Aufgabenliste markiert habe (nur der Focus darauf liegt, oder wie man dazu sagt).
Public Sub faellig()
Set aufgabe = ActiveExplorer.Selection.Item(1) 'Bei mehrfach Selektion wird das 1. Element genommen
aufgabe.DueDate = "01.10.05"
aufgabe.Save
End Sub