Oppure

Loading
21/04/10 4:55
camaleonteplus
var
Attuale: TMemoryStream;
begin
Attuale := TMemoryStream.Create;
try
CPU.Lines.SaveToStream(Attuale);
Attuale.Seek(0,soFromBeginning);
Label15.Lines.LoadFromStream(Attuale);
finally
if Assigned(Attuale) then Attuale.Free;
end;
end;
end;

lo ho sempre usato per il RTF ma come posso variallo per questa mia esigenza?
Categoria

Computer e Internet > Programmazione e Design
aaa
22/04/10 3:11
camaleonteplus
soluzione trovata Grazie

TLabel.Caption := TEdit.Text
aaa