new calendar window "always on top"

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello VBA Community,

I am looking for a long time already for a VBA code that opens a new
calendar window in outlook after outlook start in a particular size
and position with property "always on top". Unfortunately, I was not
able up to now to find something similar.


All I have so far is


Set myOlApp = CreateObject("Outlook.Application")
Set myNameSpace = myOlApp.GetNamespace("MAPI")
Set myFolder = myNameSpace.GetDefaultFolder(olFolderCalendar)
myFolder.Display


Any help to position the new calendar window in a particular area
"always on top" is much appreciated.


Thank you in advance very much and best regards, Patric
 
Answered in the other group in which you posted. Please do not multi-post.
 
Back
Top