E
ed
Couldnt find the needed info so far.
I have a custom form presenting options to tweak,
one of them is a text box displaying a cell's NumberFormat string and a
"CHANGE" button.
I want the button_click() to open the Format>Cell>Number pane dialog and
wait for the user interaction and validation that dialog and come back to my
Options custom form.
Any way to achieve this ?
Thanx in advance for the help.
PS:
Best i could come up with so far is
Private Sub OptionButton_Click()
Unload ConfigurationOptions
ThisWorkbook.Sheets("config").Range("signif1_format").Select
Application.SendKeys "%tc", True
End Sub
Works, but i lose the Options form
and if i add "ConfigurationOptions.Show", or anything after the .Sendkeys
line, the dialog doesn't stay open
I have a custom form presenting options to tweak,
one of them is a text box displaying a cell's NumberFormat string and a
"CHANGE" button.
I want the button_click() to open the Format>Cell>Number pane dialog and
wait for the user interaction and validation that dialog and come back to my
Options custom form.
Any way to achieve this ?
Thanx in advance for the help.
PS:
Best i could come up with so far is
Private Sub OptionButton_Click()
Unload ConfigurationOptions
ThisWorkbook.Sheets("config").Range("signif1_format").Select
Application.SendKeys "%tc", True
End Sub
Works, but i lose the Options form
and if i add "ConfigurationOptions.Show", or anything after the .Sendkeys
line, the dialog doesn't stay open