Prevent more than one check box select

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I have a price sheet that is using check boxes from the forms toolbar, is there any way using code that I can
prevent a user to select more than one check box?

Thanks,

Bill
 
Bill,

If you put a Group Box control around them, that will only allow one to be
checked at a time.

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

Bill said:
Hi,

I have a price sheet that is using check boxes from the forms toolbar, is
there any way using code that I can
 
Checkboxes don't have this type of behavior (even if placed in a groupbox).
You would have to use code to unselect any selected checkbox.

Optionbuttons are designed to operate this way. If you put option buttons
on the sheet and put a groupbox around them, then only one can be selected.
If you just put many optionbuttons on a single sheet, then they will also
behave this way without using a groupbox.

--
Regards,
Tom Ogilvy

Bill said:
Hi,

I have a price sheet that is using check boxes from the forms toolbar, is
there any way using code that I can
 
Back
Top