On Friday 09 July 2010 04:47:14 pm Mike Turchenkov wrote: > semi-solved now, it should be self.btn = dabo.ui.dButton(self, > Caption="Click Me"), then this btn is accessed from form my_form_name as > self.btn, but from outer objects > my_form_name.btn still does not work.
Try self.btn = dabo.ui.dButton(self,RegID = 'BtnID', Caption="Click Me") Then "self.Form.BtnID" will allow access to the button obj. Johnf _______________________________________________ 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]
