Delete selected row from MSHFlexGrid

I have MSHFlexGrid to display data from access database. I want to delete certain unwated data from MSHFlexGrid before saving it into another table in my database. Please help me how to do that?
[195 byte] By [sansann] at [2007-11-20 9:08:10]
# 1 Re: Delete selected row from MSHFlexGrid
Well, to delete a row, you could just use :
MSHFlexGrid1.RemoveItem(RowIndex)

But, How much unwanted data are you talking about
If it's a lot of unwanted rows, surely it will be quite a tedious task in deleting one row at a time.
HanneSThEGreaT at 2007-11-9 19:37:19 >
# 2 Re: Delete selected row from MSHFlexGrid
Usually every field in a cell in the flxgrid, and each field is also numbered that matches to an ARRAY() that holds the actual field before it gets displayed in the grid.

Easy to read and write back the data. Your display could add the needed fields that don't go in the db.
dglienna at 2007-11-9 19:38:19 >