S
Sunflower
I have a form called "frmWOEDIT"
in the form DETAIL I have a combo box "cboWOID"
in the form footer I have a text box "WOID"
How do I have the form footer only show/visible when the the combo box
and text box values match?
Here is the code I have on the combo box:
Private Sub cboWOID_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[WOID] = " & Str(Me![cboWOID])
Me.Bookmark = rs.Bookmark
End Sub
Here is my attempt to get the formfooter to be visible
Me.FormFooter.Visible Then
Me.FormFooter.Visible = True
Any and all help appreciated
in the form DETAIL I have a combo box "cboWOID"
in the form footer I have a text box "WOID"
How do I have the form footer only show/visible when the the combo box
and text box values match?
Here is the code I have on the combo box:
Private Sub cboWOID_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[WOID] = " & Str(Me![cboWOID])
Me.Bookmark = rs.Bookmark
End Sub
Here is my attempt to get the formfooter to be visible
Me.FormFooter.Visible Then
Me.FormFooter.Visible = True
Any and all help appreciated