need some coding help in VB 6

Status
Not open for further replies.

pixel

Solid State Member
Messages
6
Hello! everybody is their anyone who can help me to write a code that will enable the user of the program TO SEARCH for information.Lets say by entering the ISBN number of the book!

Your assistence will be highly appreciated and thanx in advance
 
Well Simply enough you could use If Then Commands such as
This would take place on the event that someone presses Button1 in Form1
If textbox1.text = "12012984762-1245" then
MSGBOX("That book is The Novel Writters, By John Smith")
End If
 
Well, that is a very basic program? Where is the data stored that you need to search? In a file, database, array???

Need more info.
 
Status
Not open for further replies.
Back
Top Bottom