Hey all, bit of a long winded one here
ok created a oledbconnection - fine
created oleDataAdapter - fine
Created dataset11 - fine
everything works fine (this is all done with VS.net built in controls)
HOW THE HELL DO I STUFF A VARIABLE WITH SOMETHING FROM THE DATASET
i need this
m_intBlockId = blah blah blah from binding data
here is some of windows generated code
Me.txtAccId.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.DataSet11, "CustomerDetails.CustomerId"))
i need to fill m_intBlockId with a column titled "BlockId"
????????????????????????


Reply With Quote