P
Patrick Sullivan
I have the following snippets, the 1st displays the count of records, the
second uses the count to go to the newest record. But it only selects the
first column, I want the entire row to be selected. Anyone know how to do
that? TIA
'display number of records
count = appsCMDda.Fill(appsViewData, "appsvw")
Labelcount.Text = CType(count, String) + " records"
'after loading table into datagrid dgappsview, go to the newest record
Dim s As String
Dim x As Int32
s = Labelcount.Text.Replace("records", " ")
x = CType(s, Integer)
dgAppsView.CurrentCell = New DataGridCell(x - 1, 0)
dgappsview.select()
second uses the count to go to the newest record. But it only selects the
first column, I want the entire row to be selected. Anyone know how to do
that? TIA
'display number of records
count = appsCMDda.Fill(appsViewData, "appsvw")
Labelcount.Text = CType(count, String) + " records"
'after loading table into datagrid dgappsview, go to the newest record
Dim s As String
Dim x As Int32
s = Labelcount.Text.Replace("records", " ")
x = CType(s, Integer)
dgAppsView.CurrentCell = New DataGridCell(x - 1, 0)
dgappsview.select()