I have tried this code to search a record.

Dim aa As String
aa = InputBox("Enter a Employee No.", "Find Employee No.")
DataSet11.Tables("Employee").Rows.Find("empno='" & aa & "'")

But this code doesnt work! In my records, there are Employee No. which is 001.
I typed 001 into the InputBox but it doesn't work.
Any solution do you have. Or Is there another way to Search records in Database using Dataset?