CONVERSÃO ME AJUDEM!!!

Delphi

10/03/2003

Alguém sabe como converter string para pshar ou pchar para string????
:roll:


Jonny_x

Jonny_x

Curtidas 0

Respostas

Anonymous

Anonymous

10/03/2003

Tente o seguinte:

Var S:string;
C:PChar;
begin
s:=´Teste´;
c:=pchar(s);
end;


GOSTEI 0
POSTAR