I'm trying to create new outlook 2003 calendar entry from VFP.
Following code works fine:
However, when running same code through terminal server, calendar doesn't get updated until I physically log in to server and start outlook (even then takes 20 seconds for entry to show up)
Any clue?
Following code works fine:
Code:
myOlApp = CREATEOBJECT("outlook.application")
myItem = myOlApp.CreateItem(1)
myItem.Subject=mySubject
myItem.Body=myBody
myItem.Start=mySTart
myItem.Duration = 30
myItem.Save
However, when running same code through terminal server, calendar doesn't get updated until I physically log in to server and start outlook (even then takes 20 seconds for entry to show up)
Any clue?