0
votes

How can I search a record from Ms access By only entering the BookID, using vb6? example, I want to search a record, I will just enter the Book_ID and all the records that is inside that BookID will appear.. the command for deleting is : sql = "DELETE FROM c Where Book_ID=" + Text1 but what about in searching?

1
Welcome to Stack Overflow! Please take a moment to review this carefully: How to AskŇɏssa Pøngjǣrdenlarp
Replace DELETE with SELECTjac

1 Answers

0
votes

sql="select * from c where Book_ID=" + Text1.Text