RE: [perl-win32-gui-users] Problem with updating the color of a t extfield

2001-12-04 Thread Rogers, John
AFAIK, You can use -foreground[r,g,b] and -background[r,g,b] when you create the textfield. (r,g,b is colour values 0 to 255) but they cant be changed. One work around idea would be to make two textfields, then hide and show each to change, you would have to keep the text in sync. JohnR

[perl-win32-gui-users] Problem with updating the color of a textfield

2001-12-04 Thread Dick Vlaanderen
I want to change the foreground color of a textfield. I ran the colors.gpl script from the PerlWin32Samples suite. This script does not change the foreground color of the textfield after selecting a different color. Can anybody help me with this one? Dick

[perl-win32-gui-users] Listview Checkboxes

2001-12-04 Thread Marcus
How do you check a checkbox in a ListView? I can get the state like so: $checked = $list->ItemCheck($i); I have a list of items the user can select with a checkbox, and I need to check the boxes after loading the settings file for these items. In short it's a favourites list. Thanks, Marcus