I need to know when the mxd was saved for last time to added to the legend.I am using these interfaces and objects.
IMxDocument pMxDoc = myApp.Document as IMxDocument;
IDocumentInfo3 pinfo = pMxDoc as IDocumentInfo3;
object date = pinfo.datesaved
is there any way to convert this value 45112.565854 (it is just an example) to this format 'mm/dd/yyyy'
the value 45112.565854 is the one that I am getting back from this property. Thanks a lot.