I have a search tool, which I have developped through previous threads on here, and it worked perfectly until I decided to upgrade my computer to windows 7. Now nothing happens...
I was wandering if there is a patch or add on or some setup I may have missed to avoid this problem.
I only know its the new laptop settings as none of the backups behave either....
I was wandering if there is a patch or add on or some setup I may have missed to avoid this problem.
I only know its the new laptop settings as none of the backups behave either....
Code:
Private Sub Form_Load()
Me.SearchBox.Value = Me.SearchBox.ItemData(1)
Me.Requery
End Sub
Private Sub Form_Open (Cancel As Integer)
Me.SearchBox.Value = Me.SearchBox.ItemData(1)
Me.Requery
End Sub
Private Sub Search_Change()
Dim vSearchString As String
Me.SearchHidden = Me.Search.Text
Me.SearchBox.Requery
End Sub
Private Sub SearchBox_AfterUpdate()
Me.Requery
End Sub