More VB.NET Answers
Question Library
Ask a question about VB.NET
Volunteer
Experts of the Month
Expert Login
Awards
About Us
Tell friends
Link to Us
Disclaimer
|
| |
|
|
| |
| | | |
About Syed Adeel Rizvi
Expertise I can answers questions regarding web based and desktop based programming in VB.Net. Which can include XML, Custom Controls + Computer Hardware and Windows Turboshooting...etc.
More Skills :
1 . PHP - > All Type Of CMS e.g. (Joomla,Drupul,PHPNuke...etc)
2 . ASP
3 . ASP.Net
4 . CMS
5 . MySql
6 . SQl Server 2000 & 2005
7 . Ms Access
8 . Web Designing
9 . Networking Turboshooting
10 . Windows Turboshooting
11 . Hardware Turboshooting
All Type Of Work Related To IT
I also Do Work as a Freelance as Application & Web Developer & Designer
Experience i have 3 years work experience in software house and 4 years work experience for computer hardware and Networking..
Organizations 110 Solutions
Education/Credentials Bsc (Honors)
| | |
| |
You are here: Experts > Computing/Technology > Basic > VB.NET > textbox
Expert: Syed Adeel Rizvi
Date: 4/17/2008
Subject: textbox
Question how do retrieve a field from your database and put it in a textbox?
Answer Hello,
thats so simple :
Dim myconn as new oledb.connection
Dim cmd as oledb.command
myconn.connectionstring= "ur connectionstring"
myconn.open
cmd = myconn.createcommand
cmd.commandtext = "Select * from table_name"
dim ds as new dataset
ds.load(cmd.excutereader,loadoption.overwritechanges,"MyTable")
if ds.table(0).rows.count >0 then
textbox1.text = ds.table(0).rows(0)("Name") '<- its a columnu name
end if
thank you
Add to this Answer
Ask a Question
|
|