[perl-win32-gui-users] How to clean a window from previous dinamic labels ?

2002-05-07 Thread Guillem Cunillera Wefers
I'm using a window which displays some information with labels, these are 
created inside a "while", but when i reuse the same window the labels are still 
there. I'm sure there is an easy way to delete a part of a window, but I don't 
know how to do it know.

Thanks,

Regards from Catalonia,
Guillem Cunillera i Wefers


Re: [perl-win32-gui-users] How to clean a window from previous dinamic labels ?

2002-05-07 Thread Alex Lee
hi, not sure what you mean, but you can use the show function to hide/show 
certain controls in a
window. 

for example: 

$Win->labelOne->Show('SW_HIDE');

when you want to use it again, simply use Show();

Now if you use a while loop are some derivative of that nature to deriver your 
controls, you would
probably want to use similiar conditions to hide the labels. 

while(similiar conditions)
{$Win->$_->Show('SW_HIDE');}

This way you can reuse a window with certain objects of your choice. 

Alex ;)

__
Do You Yahoo!?
Yahoo! Health - your guide to health and wellness
http://health.yahoo.com



[perl-win32-gui-users] listview columns

2002-05-07 Thread markd
hi. is there any way to stop a column from being resized? or alternatively
is there something like a column_resize event or something like that?

thanx in advance