View previous topic :: View next topic |
Author |
Message |
mercury KiXforms Regular

Joined: 10 Aug 2005 Posts: 50
|
Posted: Fri May 12, 2006 9:24 pm Post subject: Subitem colour |
|
|
Is this the correct syntax?
Code: | $ListViewLogOutput.Items.Item(0).Subitems.Item(3).ForeColor = $system.Color.Blue |
There isn't an error but neither does the colour change on the subitem. I also noticed that it doesn't work in KFD so is this simply not implemented yet? |
|
Back to top |
|
 |
Shawn KiXforms Developer


Joined: 22 Feb 2003 Posts: 1983 Location: Canada
|
|
Back to top |
|
 |
mercury KiXforms Regular

Joined: 10 Aug 2005 Posts: 50
|
Posted: Sat May 13, 2006 3:48 pm Post subject: |
|
|
Ahh, Tricky!
This now works
Code: | $ListViewLogOutput.Items.Item($ActualRow).UseItemStyleForSubItems = 0
$ListViewLogOutput.Items.Item($ActualRow).Subitems.Item($ActualSubitem).ForeColor = $system.Color.Blue |
Many thanks. |
|
Back to top |
|
 |
|