Example #1
0
 def OnBotonFicha1(self, event):
     self.Hide()
     import wxFrame3
     self.ficha = wxFrame3.create(None)
     self.ficha.padre = self
     self.ficha.datos = self.padre.a.datos
     self.ficha.mostrar_elementos()
     titulo = self.GetTitle()
     titulo = 'Personal Infor. of ' + titulo
     self.ficha.SetTitle( titulo)
     self.ficha.Show()
Example #2
0
 def OnButton2Button(self, event):
     """ Example of a dynamic unreferenced frame """
     import wxFrame3
     wxFrame3.create(self).Show(True)
 def OnButton2Button(self, event):
     """ Example of a dynamic unreferenced frame """
     import wxFrame3
     wxFrame3.create(self).Show(True)