Ver Mensaje Individual
  #10  
Antiguo 12-10-2012
Avatar de Casimiro Notevi
Casimiro Notevi Casimiro Notevi is offline
Moderador
 
Registrado: sep 2004
Ubicación: En algún lugar.
Posts: 32.039
Reputación: 10
Casimiro Notevi Tiene un aura espectacularCasimiro Notevi Tiene un aura espectacular
En el enlace que te ha puesto Román está explicada cada función y además con un ejemplo

Cita:
IntToStr

Prototype procedure IntToStr(input : integer; var output : array[6] of char);
Returns Nothing.
Description Converts input integer number to a string. The output string is right justified and the remaining positions on the left (if any) are filled with blanks.
Parameters :
  • input: integer number to be converted
  • output: destination string
Requires Nothing.

Example
var input : integer;
txt : string[6];
//...
input := -4220;
IntToStr(input, txt); // txt is ' -4220'
Responder Con Cita