gary_getter1
Registered User.
- Local time
- Today, 09:03
- Joined
- Jan 20, 2006
- Messages
- 17
I want to invisible some subform in tab, and there have some check box in the main form to controls which form is visible.
----------------------------------------------------------------------
Private Sub StudentInfo_Click()
If Not IsNull(Me.StudentInfo) Then
Me.tabStudentInfo.visible = "Yes"
Else Me.tabStudentInfo.visible = "No"
End If
End Sub
----------------------------------------------------------------------
Did my code have anything wrong?
Thank
----------------------------------------------------------------------
Private Sub StudentInfo_Click()
If Not IsNull(Me.StudentInfo) Then
Me.tabStudentInfo.visible = "Yes"
Else Me.tabStudentInfo.visible = "No"
End If
End Sub
----------------------------------------------------------------------
Did my code have anything wrong?
Thank