radio buttons

Chrisopia

Registered User.
Local time
Today, 11:45
Joined
Jul 18, 2008
Messages
279
maybe I'm not looking hard enough to find the answer...

4 fields,

Phone, Email, Website or Shop visit,

each I have created as a yes/no field type and imported them into a field using radio buttons...


How do I group the radio buttons so they behave as radio buttons, i.e you can only select one option.
 
Put them in an Option Group (Symbol look like a square with 'XYZ' on the top). Should be in your toolbox.
 
if phone = true then
me.email = false
me.wesite= false
me.shop = false

if email = true then
me.phone =false
me.website=false
me.shop = false

if website = true then

etc

end if
end if
end if end if
will do it (messy but works)
 
You can look at an example that is on the Northwind.mdb, which should be on your computer.

Go to C:\Program Files\Microsoft Office\Office\Samples

Open up Northwind.mdb and go to the Sales Reports Dialog form.
 

Users who are viewing this thread

Back
Top Bottom