An Option Group with external commands attached

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
 
R

Rick Brandt

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
 
D

Duane Hookom

This is the same question you asked in tablesdbdesign. Please limit your
questions to a single thread in a single news group.
 

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