Uwe Grauer wrote: > Which event is best to use if a Form gets called (shown)? > Is it onActivate or is there something better? > I asking to find a better place to initialize my called form with the > parameters which got set from the parentform.
onActivate will get called whenever the form (re)takes the focus. So if you use that you should set a flag so that you don't call the same init code over and over again. You can also try overriding afterInit() or afterInitAll(), which are hook methods that get called rather late in the init cycle. -- pkm ~ http://paulmcnett.com _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev
