Any of the following VBA commands should bring up an options dialog. the one at the end should bring the overall options dialog box you would expect to see.
Application.Dialogs(xlDialogOptionsCalculation).Show
Application.Dialogs(xlDialogOptionsGeneral).Show
Application.Dialogs(xlDialogOptionsChart).Show
Application.Dialogs(xlDialogOptionsEdit).Show
Application.Dialogs(xlDialogOptionsListsAdd).Show
Application.Dialogs(xlDialogOptionsME).Show
Application.Dialogs(xlDialogOptionsTransition).Show
Application.Dialogs(xlDialogOptionsView).Show
Application.Dialogs(xlDialogConditionalFormatting).Show
Overall command to bring up entire box
Application.CommandBars.FindControl(, 522).Execute
You don't say which version of Excel you are using but if it is any of the following:-
Microsoft Excel for Windows 5.0
Microsoft Excel for Windows 5.0c
Microsoft Excel for the Macintosh 5.0
Microsoft Excel for Windows 95 7.0
then the following link may help:-
XL: Error or Options Dialog Box Does Not Appear
Regards
Ken............