Databinding works only one way
da.Fill(data, "SubClass")
SubClassDescription.DataBindings.Clear()
SubClassDescription.DataBindings.Add("text", data.Tables(0) ,
"SubClassDescription")
Putting the edits back into the data source doesn't work!
Dim manager As BindingManagerBase
manager = Me.Bi...
more >>
Hi to all,
I have problem with detecting null values in datagrid cell
here is the example code i get i get runtime error when i'm trying to
convert datagrid cell to string if it have null value and i want to
make check if cell have null value i want to skip operation.
Here is the example code
...
more >>
I'm using business objects (as opposed to DataSets/DataTables) to
contain all my data and I'm passing these to forms to populate them.
They get sent to the form's constructors and populate all the controls
onLoad, and when someone hits save, I validate all the values, then
write them back to...
more >>