for search form, i have textbox as a user input, n list box to filter the record..
what i really want is to double click the highlighted record to display full record which in other form.. here is the code
Code:
Dim stDocName As String Dim stLinkCriteria As String
stDocName = "USER"
stLinkCriteria = "[Service Tag]=" & Me![search]
DoCmd.OpenForm stDocName, , , stLinkCriteria
however, the code run to be error at stLinkCriteria..
i dont know how to configure the problem since i just copied the code from my research.
or do i have another way so i can display the selected record from listbox.. anyone pls help me.