How can i search for all records starting with the string A or any other string inputeed by user.
Thanx
Thanx
ADATA.CommandType = adCmdUnknown ADATA.RecordSource = "Select * From info Where Name Like '" & Text1.Text & "*'" ADATA.Refresh
ADATA.CommandType = adCmdUnknown ADATA.RecordSource = "Select * From info Where Name Like '" & Text1.Text & "*'" ADATA.Refresh
Comment