Ver Mensaje Individual
  #6 (permalink)  
Antiguo 21/01/2009, 06:45
AlvaroG
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: WxPython TextCtrl alinear texto dinamicamente

Código:
TypeError: 'int' object is not callable
Más bien me suena a que hay un parámetro mal pasado.
Lo de "not callable" me suena a que probablemente no sea
Código python:
Ver original
  1. self.myTextCtrl.Alignment(wx.TEXT_ALIGNMENT_RIGHT)

sino

Código python:
Ver original
  1. self.myTextCtrl.Alignment = wx.TEXT_ALIGNMENT_RIGHT


Con probar no se pierde nada


Saludos.