Ver Mensaje Individual
  #2  
Antiguo 10-09-2011
Avatar de newtron
[newtron] newtron is offline
Membrillo Premium
 
Registrado: abr 2007
Ubicación: Motril, Granada
Posts: 3.464
Reputación: 21
newtron Va camino a la fama
Hola.

Lo que se me ocurre es que pongas esto en el evento click del UpDown

Código Delphi [-]
  try
    case Button of
      btNext: begin
        EditEtiquetas.Text := CurrToStr(StrToCurr(EditEtiquetas.Text) + 0.1);
      end;
      btPrev: begin
        EditEtiquetas.Text := CurrToStr(StrToCurr(EditEtiquetas.Text) - 0.1);
      end;
    end;

  except
    EditEtiquetas.Text := '0';
  end;

Saludos
__________________
Be water my friend.
Responder Con Cita