예제 #1
0
 def talloDeHoja(self):  #Llamo a un widget
     try:
         if self.n != 0:
             tallo.CreaTallo(self, self.lista, self.n)
         elif self.n == 0:
             dialogo1.errorDatos(self)
     except Exception as e:
         dialogo1.errorDatos(self)
         print(e)
예제 #2
0
 def generarF(self):
     try:
         randomFlotantes.generar_datos(self)
     except Exception as e:
         dialogo1.errorDatos(self)
예제 #3
0
 def generarE(self):
     try:
         randomEnteros.generar_datos(self)
     except Exception as e:
         dialogo1.errorDatos(self)
예제 #4
0
 def agregar(self):
     try:
         add.agregar_datos(self)
     except Exception as e:
         dialogo1.errorDatos(self)
예제 #5
0
 def addporcentaje(self):
     try:
         porcentajes.tanto_porciento(self)
     except Exception as e:
         dialogo1.errorDatos(self)
예제 #6
0
 def calcular(self):
     try:
         calculos.realizar_calculos(self)
     except Exception as e:
         dialogo1.errorDatos(self)