Microsoft
Software
Hardware
Network
Question : Data Set Extract
The code below returns 1 row of data every time...
I can output to the grid fine...
But what I really need to do is to set a label to the value from a column named "PeopleID"
example
label1.text = dR("peopleID")
Following code DOES dump all the returned data in the GridView
Dim ds As New DataSet
ds = ServiceRef.wmLogin(strUser
Name, strUserPassword, i, strParam1, strParam2, "", "")
grid1.DataSource = ds
grid1.DataBind()
Answer : Data Set Extract
HI,
Just try the following:
label1.Text = ds.Tables[0].Rows[0]["Peop
leID"].ToS
tring()
Random Solutions
How do I delete .txt files using VBA in Excel 2007?
Hard disk drive Iomega MDHD10T-U2 not running on Windows 7/XP?
.Net v1.1 Website Problem
Access DCount Comparison
Need to hide passwords in ADO connection string
Setting DataFormatString in Gridview programmatically
How do I get the time in HH:MM:SS format into a text file?
Send Emails Via MS Access Form
Exchange 2010 Management Console: Initialization failed
How to Create query from selction made in a drop down list.Acees 2007