Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
Discussion GroupsFormsForms ProgrammingQueriesModules / DAO / VBAReports / PrintingMacrosDatabase DesignSecurityConversionImporting / LinkingSQL Server / ADPMultiuser / NetworkingReplicationSetup / ConfigurationDeveloper ToolkitsActiveX ControlsNew UsersGeneral 1General 2
Access DirectoryToolsTutorialsUser Groups
Related Topics
SQL ServerOther DB ProductsMS OfficeMore Topics ...

MS Access Forum / Forms Programming / February 2007

Tip: Looking for answers? Try searching our database.

Rest Toggle Control

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
SHC - 01 Feb 2007 08:57 GMT
I have two toggle controls that each reveal seperate hidden subforms.
Each toggle when pressed will also hide the subform revealed by the
other toggle control. However, this results in both toggles appearing
selected.

Is there any code I can add to the 2nd toggle that will reset the 1st
toggle to its original state, and visa versa?
Svetlana - 01 Feb 2007 09:13 GMT
Private Sub Choice1_AfterUpdate()
If Me.Choice1=-1 Then
 Me.Choice2 = 0
End If
End Sub

Private Sub Choice2_AfterUpdate()
If Me.Choice2=-1 Then
 Me.Choice1 = 0
End If
End Sub
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.