摘要: DELPHI解析HTML 阅读全文
posted @ 2014-08-17 20:32 lypzxy 阅读(4703) 评论(0) 推荐(0) 编辑
摘要: Font Size GetPropInfo SetOrdProp 阅读全文
posted @ 2014-08-14 15:31 lypzxy 阅读(416) 评论(0) 推荐(0) 编辑
摘要: 设置font size,遍历所有控件,有的控件没有font属性,所以要用GetPropInfo判断 if (GetPropInfo(cmp, "font")) function GetObjectProperty( const AObject : TObject; const APropName : 阅读全文
posted @ 2014-08-14 14:54 lypzxy 阅读(538) 评论(0) 推荐(0) 编辑
摘要: TTreeNode *node; node = this->TreeView1->Items->Add(0, "AAAA"); TreeView1->Items->AddChild(node, "aaa1"); TreeView1->Items->AddChild(node... 阅读全文
posted @ 2014-08-13 15:43 lypzxy 阅读(694) 评论(0) 推荐(0) 编辑
摘要: //注意引用:vcl.themes, vcl.styles, IOutilsprocedure TForm1.FormCreate(Sender: TObject);var stylename: string;begin TStyleManager.LoadFromFile('F:\My\Sty... 阅读全文
posted @ 2014-08-13 10:02 lypzxy 阅读(243) 评论(0) 推荐(0) 编辑
摘要: From http://www.delphigeist.com/2009/09/text-encryption-with-xor.htmlText encryption with XOREver wanted to encrypt a text message?In order to do that... 阅读全文
posted @ 2014-08-12 14:26 lypzxy 阅读(1034) 评论(0) 推荐(0) 编辑
摘要: procedure Memo3_OnBeforePrint(Sender: TObject);begin Memo3.Text := inttostr(Footer1.Top); Memo4.Text := inttostr(MasterData1.datasetName); Diagonal1... 阅读全文
posted @ 2014-08-11 14:03 lypzxy 阅读(417) 评论(0) 推荐(0) 编辑
摘要: XE安装完C盘可以清理的垃圾缓存文件 C:\ProgramData\{0DE47792-19BD-4AF4-B9CF-6378FBA44825} XE6 9个G,xe7 18G XE6如此,XE7安装完这个垃圾目录貌似只有20M,这样的话就好多了 C:\Users\Administrator\Doc 阅读全文
posted @ 2014-08-10 09:12 lypzxy 阅读(1663) 评论(0) 推荐(0) 编辑
摘要: English ver down https://www.mozilla.org/en-US/firefox/new/ add ons https://addons.mozilla.org/en-US/firefox/search-engines/ 1、缓存400M,C盘可惜了,调整到D盘 abou 阅读全文
posted @ 2014-08-10 08:16 lypzxy 阅读(1875) 评论(0) 推荐(0) 编辑
摘要: XE6 控件太强了CameraComponent就可以了 Image1.Bitmap.Assign(Image2.Bitmap); ImageViewer1.Bitmap.LoadFromStream(stream) 阅读全文
posted @ 2014-08-07 17:49 lypzxy 阅读(409) 评论(0) 推荐(0) 编辑
摘要: 1、服务端建立webservice,增加方法gettime和sum。测试正常8080端口,关闭防火墙。Start启动服务,并且OpenBrowser,XE6真是方便啊http://localhost:8080/wsdl/IsoapTest 保存wsdl文件。2、客户端android使用,只能建立fi... 阅读全文
posted @ 2014-08-05 23:40 lypzxy 阅读(397) 评论(0) 推荐(0) 编辑
摘要: Microsoft Virtual WiFi Miniport Adapter 一、看网络网卡 有多出的这一项“Microsoft Virtual WiFi Miniport Adapter”,那么说明你前边的设置是真确的。 二、设置Internet连接共享 在“网络连接”窗口中,右键单击已连接到I 阅读全文
posted @ 2014-08-05 22:39 lypzxy 阅读(498) 评论(0) 推荐(0) 编辑
摘要: procedure TPhoneDialerForm.btnMakeCallClick(Sender: TObject);var PhoneDialerService: IFMXPhoneDialerService;begin { test whether the PhoneDialer servi... 阅读全文
posted @ 2014-08-05 15:31 lypzxy 阅读(279) 评论(0) 推荐(0) 编辑
摘要: XMLTransformProvider1 XMLTransformProvider1.TransformRead.SourceXmlDocument := XMLDoc.GetDOMDocument; ClientDataset1.Active := TRUE 方法一在Cb6是好的,RAD10.3 阅读全文
posted @ 2014-08-05 13:03 lypzxy 阅读(266) 评论(0) 推荐(0) 编辑
摘要: 1、用组件HTTPRIO,支持VCL WIN32和FIRE MONKEY跨平台Android手机HTTPRIO1.URL := 'http://127.0.0.1:8080/soap/IsoapTest'; Caption := (HTTPRIO1 as IsoapTest).GetTime;2、S... 阅读全文
posted @ 2014-08-05 12:59 lypzxy 阅读(204) 评论(0) 推荐(0) 编辑