Ver Mensaje Individual
  #6  
Antiguo 09-03-2008
fidel fidel is offline
Miembro
 
Registrado: mar 2005
Posts: 381
Reputación: 20
fidel Va por buen camino
Otra manera de evitar el error es .... StrToInt( '0' + Edit.text )

Código Delphi [-]
EditResultado.Text = IntToStr(StrToInt('0'+Edit1.Text) + StrToInt('0'+Edit2.Text) + StrToInt('0'+Edit3.Text) + StrToInt('0'+Edit4.Text) + StrToInt('0'+Edit5.Text) );
Responder Con Cita