Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
oOut = CREATEOBJECT("outlook.application")
oNS = oOut.GetNamespace("MAPI")
oAgenda = oNS.GetDefaultFolder(9)
oItem = oAgenda.Items(1) && Get first agenda item
? oItem.Subject
? oItem.Start
? oItem.End
? oItem.Importance
? oItem.Body
? oItem.Duration
? oItem.Location
question 1 : how can I import agenda of different users ?
question 2 : how can i know how much items ther are ?
? oAgenda.Items.Count
FOR EACH loItem IN oAgenda.Items
* Do something here with loItem
ENDFOR
question 1 : how can I import agenda of different users ?