txtAddress.Text = DB.ProfileDataset.Tables("tblCustomers").Rows.Item("Address").toString
The above code generated Option Strict On disallows implicit conversions from ‘String’ to ‘Integer’ error under the Item(“Address”)
I don’t know what i did wrong…
The DataRowCollection.Item property requires an integer for the row index.
I think you are after the following syntax:
EDIT
Something to keep in mind: