vote up 0 vote down star

Hey All!

I'm trying to print a word doc from my C# code. I used the 12.0.0.0 Word Interop and what i'm trying to do is to get a Print Dialogue pop up before the document prints. I'm not 100% sure of the syntax of all of this as I can't get my code to work :( Any ideas?

Thanks in advance!

flag

1 Answer

vote up 0 vote down check

It should be something along the lines of:

            object nullobj = Missing.Value;
            doc = wordApp.Documents.Open(ref file,
                                        ref nullobj, ref nullobj, ref nullobj,
                                        ref nullobj, ref nullobj, ref nullobj,
                                        ref nullobj, ref nullobj, ref nullobj,
                                        ref nullobj, ref nullobj, ref nullobj,
                                        ref nullobj, ref nullobj, ref nullobj);

            doc.Activate();
            doc.Visible = true;
            int dialogResult = wordApp.Dialogs[Microsoft.Office.Interop.Word.WdWordDialog.wdDialogFilePrint].Show(ref nullobj);
            if (dialogResult == 1)
            {
                doc.PrintOut(ref nullobj, ref nullobj, ref nullobj, ref nullobj, 
                             ref nullobj, ref nullobj, ref nullobj, ref nullobj, 
                             ref nullobj, ref nullobj, ref nullobj, ref nullobj, 
                             ref nullobj, ref nullobj, ref nullobj, ref nullobj, 
                             ref nullobj, ref nullobj);
            }
link|flag
for some reason this is not working...can you show me all your syntax? Even a simple print won't work for me!!! – yeahumok May 18 at 15:59
Are you saying it won't print, or that the dialog won't show up? – McAden May 18 at 16:30

Your Answer

Get an OpenID
or

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