I have Visual Studio Express for Desktop 2012.

I am trying to make an accouunt search feature. Similair to this: http://tinypic.com/r/4r2cer/5

Anyways, the Account Holder Name and Balance fields are read-only. How do I type in the Account Number and auto-populate those two fields based on the acct. number. If no existance, pop up message. Any info? Which db should i use? Tutorial link?

Thanks

Recommended Answers

All 2 Replies

Use Select Statement.
e.g : "Select Holder_name, Balance from Account where Account_Number = '" & Textbox1.Text & "'"

commented: Thank You very much +0

you can use MySql Server

and as Jx Man has said , the query goes like

"Select Holder_name, Balance from Account where Account_Number = '" & Textbox1.Text & "'"
commented: I don't know why you copied what he said and expect to get credit. Shame on you. +0
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.