TonyScarpelli
Programmer
I have a search routine to get a row from a table:
gnReqID = txtSearchData.Text
Dim rowFoundRow As DataRow
Dim lnRow As Integer
rowFoundRow = objPurHeadingDS.pur_head.Rows.Find(gnReqID)
I can see a rowID column, but can't access it:
lnRow = rowFoundRow.Item("rowID"
doesn't work, nor does
lnRow = rowFoundRow("rowID"
nor does
lnRow = rowFoundRow(rowID)
Does anyone know how to get that rowID"
Thanks.
Tony Scarpelli
Clinical Engineering Dept.
Maine Medical Center
Portland, Maine 04102
gnReqID = txtSearchData.Text
Dim rowFoundRow As DataRow
Dim lnRow As Integer
rowFoundRow = objPurHeadingDS.pur_head.Rows.Find(gnReqID)
I can see a rowID column, but can't access it:
lnRow = rowFoundRow.Item("rowID"
lnRow = rowFoundRow("rowID"
lnRow = rowFoundRow(rowID)
Does anyone know how to get that rowID"
Thanks.
Tony Scarpelli
Clinical Engineering Dept.
Maine Medical Center
Portland, Maine 04102