M
mjcast
I am trying to open up a saveas dialog box in word using c#. I can open the dialog box fine, but i need to change the filename that is shown programatically so the user doesnt save with the wrong name, c# does not expose the .name property.
Word.Dialog dialog = wordApp.Dialogs[Word.WdWordDialog.wdDialogFileSaveAs];
dialog.Show(ref oMissing);
how can i change the file name?
Word.Dialog dialog = wordApp.Dialogs[Word.WdWordDialog.wdDialogFileSaveAs];
dialog.Show(ref oMissing);
how can i change the file name?