Ok, so I downloaded this grid from vbaccelerator.com and I'm using it and it's ok so far... problem is this:
Everytime i do an "addrow", it blanks out the previous rows and the values are only showing in the new row that I added?!
VB Code:
With flxSP .AddRow .Rows .CellText(.Rows, 1) = .Rows .CellText(.Rows, 2) = txtSpeed.Text .CellText(.Rows, 3) = txtTorque.Text .CellText(.Rows, 4) = txttime.Text End With
Anyone?


Reply With Quote
I'm stupid. I kept overwriting the old row and dumping the new values in the old row. Just take out the .Rows after the .Addrow.
