Posted 2 December 2020, 10:46 am EST
I have an odd issue. I have a VB Winforms App using a number of FlexGrids. I have noticed that if I have for example, three rows. If the user selected the first row and hits the Delete key, I successfully capture the row number being deleted (e.row) and execute the code to delete that row from my database. The problem is that it also removes from the Flexgrid the next row although that row is not deleted from the database by my code. if I refresh the data, that second row re-appears. If a user attempts to delete the last row, my code properly identifies the row, executes the delete method and then the Flexgrid returns an out of bounds error when it tries to also delete the next non-existent row. If adding rows is enabled, there is no error when deleting the last row.