When I change the selected value of a list box, the QChangeEvent continues to fire. How does one remove this event from the control? I have removed all add actions from the control and it's still firing. For example, I have the following:
class UserInformationPanel extends QPanel {
public function lstDateFormat_Create()
{
$this->lstDateFormat = new QListBox( $this );
$this->lstDateFormat->AddItem( 'mm/dd/yyyy', 'm/d/Y' );
$this->lstDateFormat->AddItem( 'dd/mm/yyyy', 'd/m/Y' );
$this->lstDateFormat->AddItem( 'dd.mm.yyyy', 'd.m.Y' );
}
...
}
-Conrad