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
Freeze pane on Excel 2007 pivot table
relationship type in Access
Table Connected via ODBC not showing newly added fields
SQLNCLI for linked server returned message "Invalid authorization specification"
Move Sharepoint List From One Server To Another
migrating SQL databases to another server and get some weird error messages
Cannot have aggregate function in WHERE clause
Import multi delimeted Txt to excel
"The driver disabled the write cache on device"
excel range.find is taking 10 seconds