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;
Try this:
wdDialogFilePrint = 88 ;* &H58
objDialogs = OleGetProperty(oWrd, "DIALOGS")
objPrint = OleCallMethod(objDialogs, "ITEM", wdDialogFilePrint)
x= OleCallMethod(objPrint, "SHOW")
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!