ousoonerjoe
Programmer
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.
--------------------------------------------------
Stubbornness is a virtue -- if you are right. --Chuck Noll
--------------------------------------------------
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
--------------------------------------------------