This is what i do to set the author name for schedule -
/////////////////////
MSProject.Application Appobj = new MSProject.Application()
bool flag = Appobj.FileOpen(@"<MSP_Diamond>\AAA",false,MSProject.PjMergeType.pjDoNotMerge,false,"",""
false,"msp_user","msp","MSProject.odbc",""
MSProject.PjPoolOpen.pjPoolReadWrite,"","",true)
string sAuthor = "VIDYAR"
Appobj.ActiveProject.Author = (object)sAuthor
Appobj.FileSave()
//////////////////////
Is this the correct way of setting the author name? Is there some other way of setting the name of the schedule creator
Thanks.
Vidy