I'm trying to write code for a form that would toggle the .visible property of several controls (textboxes/labels/memo), based on whether the user chooses toggle "yes" or toggle "no."<br><br>In the frame_click, the toggle_mousedown (and up) I've tried this sort of approach:<br><br>If framexx.value = 1 (yes) then<br> thisbox.visible = true<br>Else<br> thisbox.visible = false<br>End if<br><br>I've tried using "if" without the "else"; and a nested "if..then" within that substitutes for the "else."<br><br>This would work in VB6 but I don't yet know the quirks of <br>Access VBA. Any suggestions would be appreciated!!<br><br><br>