码迷,mamicode.com
首页 > Windows程序 > 详细

把窗体读到内存流然后转为text

时间:2017-09-14 10:21:04      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:send   bin   message   pos   text   obj   position   and   procedure   

procedure TfrmBiaoBLBWH.Button1Click(Sender: TObject);
var
ABinary,AText:TMemoryStream;
begin
inherited;
ABinary:=TMemoryStream.Create;
ABinary.WriteComponent(Self);
ABinary.Position:=0;
AText:=TMemoryStream.Create;
ObjectBinaryToText(ABinary,AText);
AText.Position:=0;
ShowMessage(LoadTextW(AText));
FreeAndNil(AText);
FreeAndNil(ABinary);
end;

把窗体读到内存流然后转为text

标签:send   bin   message   pos   text   obj   position   and   procedure   

原文地址:http://www.cnblogs.com/maweiwei/p/7518876.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!