OLE Word.Application (OpenInsight 32-bit)
At 04 AUG 2011 12:34:42AM Barry Stevens wrote:
I am using OleCreateInstance("Word.Application") and associated olegets puts and methods
How do I get msword to request a printer selection
have found this but cant work out how to convert it.
prntDlg :=
wrdApp.Dialogs.item(wdDialogFilePrint);
printDlg.Show;
At 04 AUG 2011 08:22AM Hank Huizinga wrote:
Try this:
wdDialogFilePrint = 88 ;* &H58
objDialogs = OleGetProperty(oWrd, "DIALOGS")
objPrint = OleCallMethod(objDialogs, "ITEM", wdDialogFilePrint)
x= OleCallMethod(objPrint, "SHOW")
At 04 AUG 2011 06:07PM Barry Stevens wrote:
Thank you very very much, I shall try this and also analyze how this is translated and hopefully file where I can find it again<s>. I am sure Bob had something somewhere!