New Name Dialog parameters

B

Brent Rogers

I would like to programatically call the "New Name Dialog" box for a given
name.

Microsoft.Office.Interop.Excel.Dialog D =
ExcelApp.Dialogs[Microsoft.Office.Interop.Excel.XlBuiltInDialog.xlDialogNewName];

D.Show(System.Reflection.Missing.Value, System.Reflection.Missing.Value
,System.Reflection.Missing.Value, System.Reflection.Missing.Value
,System.Reflection.Missing.Value, System.Reflection.Missing.Value
,System.Reflection.Missing.Value, System.Reflection.Missing.Value
,System.Reflection.Missing.Value, System.Reflection.Missing.Value
.... );

Which of the many parameters to the Show() method corresponds to the [New]
range name?
Is there any thing I should do before passing the data in.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top