johnf wrote: > Is there a method available that will fire when a tab is selected? Sort like > VFP activate
dPageFrame has 2 interesting events: PageChanging and PageChanged. http://paul.dabodev.com/doc/api/dabodoc/dabo.ui.uiwx.dPageFrame.dPageFrame.html#Events_PageChanged dPage has PageEnter and PageLeave: http://paul.dabodev.com/doc/api/dabodoc/dabo.ui.uiwx.dPage.dPage.html#Events_PageEnter These are events that you can bind to, eg: pf.bind(dabo.dEvents.PageChanging, myOnPageChangingMethod) 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]
