Jonathan Southwick wrote:
> Is there any way to change the properties of a label later in
> the program after the label has been defined?  When I
> create the label I do not want to use the -notify => 1 option
> but after a specific event I want that option enabled.
>
> Can this be done?

changes can be done using the Change() method. but the
effectiveness of changes depend from what Win32 decides :-)
the Platform SDK docs mention here and there things
that can't be changed after control creation; in this
case, the docs don't say anything, so I presume that
this will work for you:

    $MyWindow->MyLabel->Change( -notify => 1 );
    

cheers,
Aldo

__END__
$_=q,just perl,,s, , another ,,s,$, hacker,,print;



Reply via email to