On 10/13/10 2:52 AM, Henning Hraban Ramm wrote: > Here's a minimal example: > http://dabo.codepad.org/2uDYsOis > > - a custom event > - two panels > - first Panel sends custom event > - second Panel can't receive it > > What's wrong?
The event gets raised but doesn't propagate up (by design), so the textbox never hears it. Change the lines to self.Form.raiseEvent(...) and self.Form.bindEvent(...). Here's your example with the changed lines: http://codepad.org/N0ELrBCs Paul _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/[email protected]
