D
Dave Londeck
I am using ver 1.1 of the Framework and progamming in VB.NET.
I am going after a stored procedure which returns 3 rows. Zero rows appear
in the combo box.
I need to bind 2 columns. One for the value member and the other for the
display member.
I am positive that this proceduee returns rows because I see it while
stepping through the code.
Dim SQLDBObjects As New SQLObjects(DBConnection)
Dim dsProcedures As New DataSet
'Returns a dataset containing stored procedures for this database
dsProcedures = SQLDBObjects.ProcedureList
cboDBObject.Items.Clear()
cboDBObject.DataSource = dsProcedures.Tables("ProcedureList")
cboDBObject.DisplayMember = "ObjectName"
cboDBObject.ValueMember = "ObjectID"
Any Ideas....
I am going after a stored procedure which returns 3 rows. Zero rows appear
in the combo box.
I need to bind 2 columns. One for the value member and the other for the
display member.
I am positive that this proceduee returns rows because I see it while
stepping through the code.
Dim SQLDBObjects As New SQLObjects(DBConnection)
Dim dsProcedures As New DataSet
'Returns a dataset containing stored procedures for this database
dsProcedures = SQLDBObjects.ProcedureList
cboDBObject.Items.Clear()
cboDBObject.DataSource = dsProcedures.Tables("ProcedureList")
cboDBObject.DisplayMember = "ObjectName"
cboDBObject.ValueMember = "ObjectID"
Any Ideas....