An Option Group with external commands attached

  • Thread starter Thread starter Dave
  • Start date Start date
D

Dave

I have an option group of 6 outside the frame there are 3 Cmd boxes ie,
print, preview, close.

I simply wish to preselect an option and Then click either say a "Print" or
"Preview", "Send" etc (or for that matter cancel).

I have the option group set up, the Cmd boxes etc, But how do I get say the
"Print" Cmd to print the preselected (report), say option 2 etc.??

Any help will be greatly appreciated
Dave
 
Dave said:
I have an option group of 6 outside the frame there are 3 Cmd boxes
ie, print, preview, close.

I simply wish to preselect an option and Then click either say a
"Print" or "Preview", "Send" etc (or for that matter cancel).

I have the option group set up, the Cmd boxes etc, But how do I get
say the "Print" Cmd to print the preselected (report), say option 2
etc.??
Any help will be greatly appreciated
Dave

In the code of each button...

Select Case Me.OptionGroupName
Case 1
' do one thing
Case 2
' do something else
etc..
End Select
 
This is the same question you asked in tablesdbdesign. Please limit your
questions to a single thread in a single news group.
 
Back
Top