COLOR_BY_POS for entire column/row (OpenInsight Specific)
At 13 APR 1999 01:38:34PM Brian Wick wrote:
Example:
1.)All cells in the edittable default to the white color
2.)A single cell color has been changed using the command
x=send_message(control,"color_by_pos",2,3,green$)3.)then i try to change to globally color of column 2 to blue$
x=send_message(control,"color_by_pos",2,0,blue$)4.)every row in column 2 changes to blue except row 3 which is still
green.5.)how do i reset the color attribute in cell (2,3)so that
step#3 works for every row.Nulling the table with set_property(control,"array","") and then
rebuilding works…but my tables are usually larger than
64K and that method is just not practicle as it takes too much
time to rebuild.
The key is to reset the color attribute in the cell so
that it works with the global color change calls for
the entire row or entire column. TX FOR ANY IDEAS….BRIAN