Foros Club Delphi

Foros Club Delphi (https://www.clubdelphi.com/foros/index.php)
-   Varios (https://www.clubdelphi.com/foros/forumdisplay.php?f=11)
-   -   convertir de boolean a string ??? (https://www.clubdelphi.com/foros/showthread.php?t=11292)

chele 10-06-2004 11:37:18

convertir de boolean a string ???
 
Como seria ????

Gracias anticipadas :)

Novás 10-06-2004 12:17:45

Puedes generar tu propia función que lo haga

Código Delphi [-]
function booltostr(A: string):string;
begin
  if A=True then Result:='Verdadero'
  else Result:='Falso';
end;

Novás 10-06-2004 12:18:35

perdón sería
Código Delphi [-]
function booltostr(A: boolean): string;


La franja horaria es GMT +2. Ahora son las 19:14:56.

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Traducción al castellano por el equipo de moderadores del Club Delphi