When I use this code:
Dim dtsDataSet As DataSet = New DataSet("Dados" )
Dim dttUsuarios As DataTable = dtsDataSet.Tabl es.Add("Usuario s")
Dim dtvUsuarios As DataView = New DataView(dtsDat aSet.Tables("Us uarios"),
"", "UsuaNome", DataViewRowStat e.CurrentRows)
The compiler say that the column "UsuaNome" cannot be find, but it exists in
the database... Why it happens?????
Thank's...
Dim dtsDataSet As DataSet = New DataSet("Dados" )
Dim dttUsuarios As DataTable = dtsDataSet.Tabl es.Add("Usuario s")
Dim dtvUsuarios As DataView = New DataView(dtsDat aSet.Tables("Us uarios"),
"", "UsuaNome", DataViewRowStat e.CurrentRows)
The compiler say that the column "UsuaNome" cannot be find, but it exists in
the database... Why it happens?????
Thank's...
Comment