Kbase P120959: How to display the Print dialog before printing a Microsoft Word document
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  12/6/2006 |
|
Status: Unverified
GOAL:
How to display the Print dialog before printing a Microsoft Word document
GOAL:
How to display the Print dialog for Microsoft Word
GOAL:
How to display the Print dialog for Microsoft Word Automation
FIX:
DEFINE VARIABLE chWord AS COM-HANDLE NO-UNDO.
CREATE "Word.Application" chWord.
chWord:Documents:Open("C:\Temp\RB.doc").
chWord:Visible = TRUE.
chWord:dialogs:ITEM(88):Show.
chWord:QUIT().
RELEASE OBJECT chWord.