edojanssen
Registered User.
- Local time
- Today, 06:33
- Joined
- Jun 21, 2006
- Messages
- 23
Dim vSearchString As String
vSearchString = Text0.Text
Text5.Value = vSearchString
Me.List2.Requery
'Me.FRM_SrchAllDtlsSubform.Requery
Me.List2 = Me.List2.ItemData(1)
Me.List2.SetFocus
DoCmd.Requery
Me.RecordsetClone.findfirst "[WineID]=" & Me![List2]
If Not Me.RecordsetClone.NoMatch Then
Me.Bookmark = Me.RecordsetClone.Bookmark
Else
MsgBox "Could not locate [" & Me![List2] & "]"
End If
Me.Text0.SetFocus
boblarson(My next post will hit the 1000 mark - FINALLY after almost 10 years on this board - I guess I haven't been too active at times) :D[/QUOTE said:Congrats Bob,
I hope there weren't too many of those posts spent taking me through Access 101![]()
I appreciated everything you have posted that I have read (not just in reply to my questions!) and I'm sure you are appreciated by many others.
Kudos.![]()
SELECT tblMain.EntryNumber, tblMain.DriversLicNumber, tblMain.EmpNumber, tblMain.FName, tblMain.LName, tblMain.MInitial, tblSpouse.LName, tblSpouse.FName, tblSpouse.MInitial, tblSpouse.DriversLicNumber, tblSpouse.EntryNumber, tblVeh.LicPlateNumber, tblVeh.Note, tblVeh.Current, *
FROM (tblMain INNER JOIN tblSpouse ON tblMain.EntryNumber = tblSpouse.EntryNumber) INNER JOIN tblVeh ON tblMain.EntryNumber = tblVeh.EntryNumber
WHERE ((([tblMain]![EntryNumber]) Like "*" & [Forms]![frmSearch]![Search2] & "*")) OR (((tblMain.EmpNumber) Like "*" & [Forms]![frmSearch]![Search2] & "*")) OR (((tblMain.FName) Like "*" & [Forms]![frmSearch]![Search2] & "*")) OR (((tblMain.LName) Like "*" & [Forms]![frmSearch]![Search2] & "*")) OR (((tblMain.MInitial) Like "*" & [Forms]![frmSearch]![Search2] & "*")) OR (((tblSpouse.LName) Like "*" & [Forms]![frmSearch]![Search2] & "*")) OR (((tblSpouse.FName) Like "*" & [Forms]![frmSearch]![Search2] & "*")) OR (((tblSpouse.EntryNumber) Like "*" & [Forms]![frmSearch]![Search2] & "*")) OR (((tblSpouse.DriversLicNumber) Like "*" & [Forms]![frmSearch]![Search2] & "*")) OR (((tblMain.DriversLicNumber) Like "*" & [Forms]![frmSearch]![Search2] & "*")) OR (((tblSpouse.MInitial) Like "*" & [Forms]![frmSearch]![Search2] & "*")) OR (((tblVeh.LicPlateNumber) Like "*" & [Forms]![frmSearch]![Search2] & "*")) OR (((tblVeh.Note) Like "*" & [Forms]![frmSearch]![Search2] & "*")) OR (((tblVeh.Current) Like "*" & [Forms]![frmSearch]![Search2] & "*"))
ORDER BY tblMain.EntryNumber, tblSpouse.EntryNumber;
[tblMain]![EntryNumber] And [tblSpouse]![EntryNumber] And [tblVeh]![EntryNumber]
[tblMain]![EntryNumber] And [tblSpouse]![EntryNumber]
[tblMain]![EntryNumber]
edojanssen said:A while ago I found this Coos Search Tool db on the forum. I like the way it works very much. Trying to make it work for my own db fails. Please, can somebody help me out and make the damn thing work with my own table?
Edo
Private Sub Search3_AfterUpdate()
DoCmd.Requery
Me.RecordsetClone.findfirst "[CIK] = '" & Me![Search3] & "'"
If Not Me.RecordsetClone.NoMatch Then
Me.Bookmark = Me.RecordsetClone.Bookmark
Else
MsgBox "Could not locate [" & Me![Search3] & "]"
End If
End Sub
A while ago I found this Coos Search Tool db on the forum. I like the way it works very much. Trying to make it work for my own db fails. Please, can somebody help me out and make the damn thing work with my own table?
Edo
Like "*" & [Forms]![frmStudentSearch]![Search] & "*"
Like "*" & [Forms]![frmStudentSearch]![Search[B][SIZE="5"]2[/SIZE][/B]] & "*"