Eric Hansen wrote:
> I get an error message when I try to dynamically change the position of
> a combobox widget.  I have successfully used the ChangeItem method for
> ListView controls.  Is this not a valid method for comboboxes?

no, it is not valid.
if you want to change the position of the combobox, use this:
  Combobox->Change(-top => 100, -left => 150);
or this:
  Combobox->Move(100, 150);


cheers,
Aldo

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


Reply via email to