Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Loading DataGridViewComboBoxColumn

Status
Not open for further replies.

ousoonerjoe

Programmer
Jun 12, 2007
925
US
Using Vb.Net 2010.

I've run into an issue while loading a DataGridViewComboBoxColumnin a DataGridView control. All columns are created via the designer. Everything works, but only when using String data types for the ValueMember. When assigning the Integer (Int32) data type (to use the look up Id), the error message DataGridViewComboBoxCell value is not valid is returned. The combo box is loaded, but any actions involving the column raise the error. Is this a limitation of the DataGridViewComboBoxColumn or is there something else I'm missing? I have been able to make this work in the past, but looking over those implementations, they used String reference values with a String display value.

I welcome any advice or suggestions on how to make this work with an Integer ValueType and a String DisplayMember.

Thank you.
Code:
[COLOR=green]'called from command button. Too big to post all the extra here.

'dc1099 = DataGridViewColumn
'InqDs = DataSet[/color]
					dgDetail.AutoGenerateColumns = False
					dgDetail.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.None
					PopCode1099(dc1099)
					dgDetail.DataSource = InqDs.Tables(1)
[COLOR=green]'End Command Button.[/color]

	Private Sub PopCode1099(ByVal Colm As DataGridViewComboBoxColumn)
		Dim Cnn As SqlClient.SqlConnection = Nothing
		Dim Cmd As SqlClient.SqlCommand = Nothing
		Dim Rst As SqlClient.SqlDataAdapter = Nothing
		Dim CmdType As CommandType = CommandType.StoredProcedure
		Dim dSet As DataSet = Nothing
		Dim dTable As DataTable = Nothing
		Try
			Cnn = New SqlClient.SqlConnection(ConnString)
			If Cmd Is Nothing Then Cmd = New SqlClient.SqlCommand
			Cmd.Connection = Cnn
			Cmd.CommandType = CmdType
			Cmd.CommandText = "cst_1099_Lookup"
			If Cnn.State <> ConnectionState.Open Then Cnn.Open()
			Rst = New SqlClient.SqlDataAdapter(Cmd)
			dSet = New DataSet
			Rst.Fill(dSet, "dt1099")
			dTable = New DataTable
			dTable = dSet.Tables("dt1099")
			Colm.DataSource = dTable
			Colm.DisplayMember = "Display"	[COLOR=green]'"Code1099"[/color]	
			Colm.ValueType = GetType(System.Decimal)
			Colm.ValueMember = "Code1099" [COLOR=green]'"Display"[/color] 
		Catch Ex As Exception
			Ex.Source = System.Reflection.MethodBase.GetCurrentMethod.Name
			ErrorLog(Err.Number, Err.Description, Me.Name, Ex.Source, Err.Erl)
		Finally
			dSet = Nothing
			dTable = Nothing
			CmdType = Nothing
			Rst = Nothing
			Cmd = Nothing
			If Cnn.State <> ConnectionState.Closed Then Cnn.Close()
			Cnn = Nothing
		End Try
	End Sub

--------------------------------------------------
Stubbornness is a virtue -- if you are right. --Chuck Noll
--------------------------------------------------
 
Either I'm doing something wrong, or the DataGridViewComboBoxColumn does not support the use of non-String data types for the ValueMember. After several different tests, a String is the only data type that functions properly with the DataGridViewComboBoxColumn.

Can anyone conform or correct this?

--------------------------------------------------
Stubbornness is a virtue -- if you are right. --Chuck Noll
--------------------------------------------------
 
I was doing something wrong ???

By shear accident I stumbled upon the problem. Maybe someone can explain what the difference is.

Using the PopCode1099 function above for the explanation, the problem was the stored procedure as shown below. When defining the field alias with equal (=) versus using the AS keyword, it failed. As soon as I changed it to use the AS keyword (or no alias at all) everything worked as expected.

Why? What is it about the [AliasName] = FieldName that caused the failure?


Code:
ALTER PROCEDURE cst_1099_Lookup(
	@Active		BIT = NULL)
AS

SELECT 
	[COLOR=red]--[Code1099] = Req1099Id,[/color] [COLOR=green]'caused the error.[/color]
	[COLOR=blue]Req1099Id AS Code1099,[/color] [COLOR=green]'no error.[/color]
	[Description] = Descr,
	[Display] = CONVERT(VARCHAR(4), Req1099Id) + ' - ' + Descr,
	[ValidYear] = ValidYear,
	[Active] = AllowUse 
FROM Req1099
WHERE ((@Active IS NULL) OR (AllowUse = @Active))

--------------------------------------------------
“Crash programs fail because they are based on the theory that, with nine women pregnant, you can get a baby a month.” --Wernher von Braun
--------------------------------------------------
 
Well....

After further digging and an unexpected puking of the app, it had nothing to do with aliases. The data type of the DataGridViewComboBoxColumn.ValueMember MUST be the EXACT same data type as the DataTable.Column that is populating the grid.

Appearently, it is not smart enough to allow a TINYINT (Byte) to populate a SMALLINT (Short, Int16).

Lesson Learned.

--------------------------------------------------
“Crash programs fail because they are based on the theory that, with nine women pregnant, you can get a baby a month.” --Wernher von Braun
--------------------------------------------------
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top