VB Find Statement - TechRepublic
General discussion
August 10, 2001 at 05:49 AM
msdelaine

VB Find Statement

by msdelaine . Updated 24 years, 9 months ago

Here is my find statement to an access database from VB 6. I want the find to be case insensitive.
Help?

‘Search the file until the user is found
rsWork.MoveFirst
rsWork.Find “Project = ‘” & cboSelection & “‘” If Not rsWork.EOF Then
If rsWork!Project = cboSelection.Text Then
‘When found, retreive information

This discussion is locked

All Comments