Hello!
I try to add next/previous menu to my application(with a CSV database), it works only if I select a row or a cell, (it advances only a row).
There exists the way of which it continues with the next row without having to select again a cell?
Thanks!
I try to add next/previous menu to my application(with a CSV database), it works only if I select a row or a cell, (it advances only a row).
Sub mnuNext_Click
row1 = (Table1.SelectedRow+1) Mod table1.RowCount
ShowRow
End Sub
There exists the way of which it continues with the next row without having to select again a cell?
Thanks!