S
Semut
Previously Dimitry has pointed out that
by calling
Call Namespace.CreateRecipient, then Recipient.FreeBusy
or in full
Dim myNameSpace As Outlook.NameSpace
Dim myRecipient As Outlook.Recipient
Dim myFBInfo As String
Set myNameSpace = myOlApp.GetNamespace("MAPI")
Set myRecipient = myNameSpace.CreateRecipient("Nate Sun") '<--- Exchange
user?
On Error GoTo ErrorHandler
myFBInfo = myRecipient.FreeBusy(#11/11/2003#, 60 * 24)
MsgBox myFBInfo
ErrorHandler:
MsgBox "Cannot access the information. "
I would be able to get the freebusy.
But, that is provided that I have Ms Exchange installed. Can i throught MAPI
and the default calendar (without communicating with Exchange), get the Free
Busy time of the current profile default Calendar free and busy instead? Do
i have to manually calculate the free and busy time myself?
thank you.
by calling
Call Namespace.CreateRecipient, then Recipient.FreeBusy
or in full
Dim myNameSpace As Outlook.NameSpace
Dim myRecipient As Outlook.Recipient
Dim myFBInfo As String
Set myNameSpace = myOlApp.GetNamespace("MAPI")
Set myRecipient = myNameSpace.CreateRecipient("Nate Sun") '<--- Exchange
user?
On Error GoTo ErrorHandler
myFBInfo = myRecipient.FreeBusy(#11/11/2003#, 60 * 24)
MsgBox myFBInfo
ErrorHandler:
MsgBox "Cannot access the information. "
I would be able to get the freebusy.
But, that is provided that I have Ms Exchange installed. Can i throught MAPI
and the default calendar (without communicating with Exchange), get the Free
Busy time of the current profile default Calendar free and busy instead? Do
i have to manually calculate the free and busy time myself?
thank you.