Disappearing Grid lines on Grid Tables (OpenInsight Specific)
At 27 MAY 1998 06:51:49AM Simon Kent - C.S.S.P wrote:
When using Grid Tables and setting a column width that lies between two others to 0 to hide it causes the vertical grid line separator to sometimes disappear. Does anyone know why this is?
At 27 MAY 1998 12:18PM Alex Eloquent wrote:
Simon,
Try setting the column width to 1 (one) instead.
Hope this helps,
At 13 JUN 1998 09:50AM Aaron Kaplan wrote:
I don't know why is does, have a guess based on repainting and things, but that's not really all that important. Assuming you're setting the size through code, and not using the mouse, you could always make the column hidden.
Equ HiddenStyle$ to 32Style=Send_Message(EditTableControl, "COLSTYLE", ColumnNbr, "")]
Style=bitor(Style,HiddenStyle$)Style=Send_Message(EditTableControl, "COLSTYLE", ColumnNbr, Style)Just a thought….