G
Gulf Coast Electric
I have an unbound drop down search that after update it searches for the
record and then goes to it.
Code is below:
Set rs = Me.Recordset.Clone
rs.FindFirst "[TimeID] = " & Str(Me![Combo202])
Me.Bookmark = rs.Bookmark
Me![Combo202] = Null
I also want to show on top of this drop down list a label that says Search
The label is named LabelSearch , I want this label to be visible until after
you click on the drop down list and then be invisible.
Where would I put the code to do this?
I have the code that i believe will work for this:
Forms![TimeCards]![Labelsearch].Visible -1
Would also like very much for a message box to popup that says this record
has been archived if no result.
record and then goes to it.
Code is below:
Set rs = Me.Recordset.Clone
rs.FindFirst "[TimeID] = " & Str(Me![Combo202])
Me.Bookmark = rs.Bookmark
Me![Combo202] = Null
I also want to show on top of this drop down list a label that says Search
The label is named LabelSearch , I want this label to be visible until after
you click on the drop down list and then be invisible.
Where would I put the code to do this?
I have the code that i believe will work for this:
Forms![TimeCards]![Labelsearch].Visible -1
Would also like very much for a message box to popup that says this record
has been archived if no result.