Hi!
I'm creating a Word 2010 add-in coded in C#.
I stumped a bit here. I want to create a new label document and show it on the screen. I have this so far:
Word.Application wordApp = new Word.Application();
wordApp.MailingLabel.CreateNewDocument("L7163", "Name and address here");
wordApp.Visible = true;
In my mind it shouldn't be harder than that, but nothing pops up on the screen. I think it actually creates the doc, since it takes a second or so, but how can display it?
Any help is greatly appreciated...
I'm creating a Word 2010 add-in coded in C#.
I stumped a bit here. I want to create a new label document and show it on the screen. I have this so far:
Word.Application wordApp = new Word.Application();
wordApp.MailingLabel.CreateNewDocument("L7163", "Name and address here");
wordApp.Visible = true;
In my mind it shouldn't be harder than that, but nothing pops up on the screen. I think it actually creates the doc, since it takes a second or so, but how can display it?
Any help is greatly appreciated...