vote up 0 vote down star

I'm looking to do the same as in this question here, however I am developing in a .NET class library, referencing the Primary Interop Assemblies.

The item returned from the dialog box collection when I do this

wordApp.Dialogs[WdWordDialog.wdDialogFilePrintSetup]

does not expose properties such as Printer and DoNotSetAsSysDefault. Does anyone know why I can't get at these properties, or is there a better way altogether of switching which printer Word will use?

flag

78% accept rate

1 Answer

vote up 0 vote down

In Delphi I store the returned dialog box in a Variant and then access the properties. Delphi then automatically calls the appropriate methods from the IDispatch interface to access those properties.

So I am using late binding to access the properties of the dialogbox. I'm not familiar with your language, but late binding should be possible I think.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.