Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
945 B

  1. BUG #1 (Word95): IPersistFile::Load disables open-in-place
  2. Bug: When you bind to a WordDocument via file moniker, activating it
  3. as a DocObject will open it in the Word application window. This
  4. is caused by an internal flag, which is set by IPersistFile::Load.
  5. Work-around: Call SetHostName() after IPersistFile::Load, which will
  6. reset this internal flag.
  7. BUG #2 (Word 95): Word does not call IPersistStorage::Save when saving.
  8. Bug: Word95 does not call IPersistStorage::Save when I insert a new shell
  9. embedding and select File->Save(). Here is the calling sequence.
  10. [Excel] GetData, GetClassID, Save, HandsOffStorage, SaveComplated
  11. [PowerPoint] Update, GetClassID, Save, SaveComplated
  12. [WordPad] GetClassID, Save, SaveComplated
  13. [Word] Update, GetData, HandsOffStorage, SetHostNames, SaveComplated
  14. Work-around: Unknown