select row in edit table (OpenInsight Specific)
At 22 JUN 1998 04:09:58PM Anders Lindholt wrote:
When I select a row in an edit table oi mark the row blue.
How can I change the blue color to an other color ?
Anders
At 22 JUN 1998 04:42PM Blaise(Revelation) wrote:
Anders,
With the assumption you are using Win95 or possibly Win98, right click on your desktop and select properties. From this screen select the "Appearance" tab at the top. On the left hand side of this page you will see 3 drop down combo boxes, the middle one is labeled "Item". Drop it down and select "Selected Items". To the right of that you will see the Color drop down palet, from this, select the color you want to see in the edit table.
Good luckā¦
Blaise
At 23 JUN 1998 12:02AM Don Bakke wrote:
Anders,
Assuming you don't want to change the look of your entire desktop, you can use the undocumented COLOR_BY_POS message instead. It works similar to the FONT_BY_POS message, but can't be used concurrently or your system will crash:
rv=Send_Message(EditTable, "COLOR_BY_POS", Col, Row, ColorArray)
Where ColorArray is an @FM delimited array -
Background ColorForeground ColorBackground Color (when Selected)Foreground Color (when Selected)
At 23 JUN 1998 01:41PM Anders Lindholt wrote:
Thank's a lot, Don and Blaise
Anders