Oh here is another vb to c# conversion problem that I am having.
in vb I can do this:
now in c# i need a little assitance. I though it should be like this:VB Code:
myStr = DataSet.Tables("MyTable").Rows(0).Item("CollumnName") 'or something close to that
Does anyone know how to read a row of data out of a dataset in c#?PHP Code:myStr = DataSet.Tables["MyTable"].Rows[0].Item["CollumnName"]
//the problem is there is not ITEM
Jeremy


Reply With Quote