A A|ex Registered User. Local time Today, 20:52 Joined Jul 11, 2004 Messages 90 Jul 26, 2004 #1 How do i reset tick boxes on forms when you go to the next record? Also in VBA whats the code to checking if a tic box has been ticked or not? can i use the If tickbox is Null ? Or do i use tickbox = true (or false?)
How do i reset tick boxes on forms when you go to the next record? Also in VBA whats the code to checking if a tic box has been ticked or not? can i use the If tickbox is Null ? Or do i use tickbox = true (or false?)
W WayneRyan AWF VIP Local time Today, 20:52 Joined Nov 19, 2002 Messages 7,120 Jul 27, 2004 #2 Alex, Are the CheckBoxes bound? If not, use the OnCurrent event of the form, to: Me.MyCheckBox = False If they're bound, don't reset them. Wayne
Alex, Are the CheckBoxes bound? If not, use the OnCurrent event of the form, to: Me.MyCheckBox = False If they're bound, don't reset them. Wayne
A A|ex Registered User. Local time Today, 20:52 Joined Jul 11, 2004 Messages 90 Jul 27, 2004 #3 what do you mean bound? all ive got atm are tick boxes on a form. Depending on which tick box they check i want it to take a value from a textfield and copy it to another. Whats the code to clear a tickbox and set it to empty? Also how do i group together say 6 tick boxes so only 1 of them can be ticked at any one time?
what do you mean bound? all ive got atm are tick boxes on a form. Depending on which tick box they check i want it to take a value from a textfield and copy it to another. Whats the code to clear a tickbox and set it to empty? Also how do i group together say 6 tick boxes so only 1 of them can be ticked at any one time?
W WayneRyan AWF VIP Local time Today, 20:52 Joined Nov 19, 2002 Messages 7,120 Jul 27, 2004 #4 Alex, You need an Option Group. The single-value can be mapped (bound) to a table if you want to. Wayne
Alex, You need an Option Group. The single-value can be mapped (bound) to a table if you want to. Wayne
A A|ex Registered User. Local time Today, 20:52 Joined Jul 11, 2004 Messages 90 Jul 27, 2004 #5 i forgot about the option group! cheers m8 it worked fine