Link to home
Start Free TrialLog in
Avatar of Dee
DeeFlag for United States of America

asked on

vb6 update grid

How do update a specific row and column in a grid from vb6?

ie. How do I set row 1, column 3 value to "*"
Avatar of VBClassicGuy
VBClassicGuy
Flag of United States of America image

What kind of grid? DataGrid, MSFlexGrid, etc. If MSFlexGrid or MSHFlexGrid, use:
MyGridName.TextMatrix(1, 3) = "*"
Iimagine a data grid would be similar.
ASKER CERTIFIED SOLUTION
Avatar of Brook Braswell
Brook Braswell
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Dee

ASKER

I am using data grid.  It is bound to a recordset.

I'm trying to add a column to the grid and update it without updating the underlying record set.  Is that possible?  This is what I've tried:

    Me.grdFujiWM.Columns.Add "Late", jgexText
    Me.grdFujiWM.Value(3) = "*"
Avatar of Dee

ASKER

It hads the column, but does not display the asterisk.
Avatar of Dee

ASKER

thanks