[QUOTE=razpeitia;3904264]
Código Python:
Ver originalself.Bind(wx.EVT_BUTTON,self.onboton)
def onboton(self,event):
x=self.textocodigo.GetValue()
conexion=sqlite3.connect("MOTOS.S3DB")
cursor=conexion.cursor()
t=(x, )
cursor.execute("SELECT CODIGO,PRECIO FROM MOTOS WHERE DETALLE=?",t)
for row in cursor:
self.textocodigo2.SetValue(row[0])
dat1=self.textocodigo3.SetValue(row[1])
dat=self.textocodigo5.GetValue()
dattotal=float(dat)*dat1
print dattotal
lo hice como me dijiste asi y me da el error este
dattotal=float(dat)*dat1
TypeError: unsupported operand type(s) for *: 'float' and 'NoneType'
QUOTE]