摘要: 标签描述定义注释。定义文档类型。定义锚。定义缩写。定义只取首字母的缩写。定义文档作者或拥有者的联系信息。不赞成使用。定义嵌入的 applet。定义图像映射内部的区域。定义文章。定义页面内容之外的内容。定义声音内容。定义粗体字。定义页面中所有链接的默认地址或默认目标。不赞成使用。定义页面中文本的默认字... 阅读全文
posted @ 2014-08-18 10:14 lypzxy 阅读(187) 评论(0) 推荐(0)
摘要: XE6 自带的HTML编辑器很好用 File>New>Other>Web Documents>HTML Page 自动有code和Design,在Design标签可以拖放控件 phpstorm 选择标签 Ctrl+W 快捷键 多次按下,选择一个标签内的内容。 阅读全文
posted @ 2014-08-18 10:00 lypzxy 阅读(236) 评论(0) 推荐(0)
摘要: DELPHI解析HTML 阅读全文
posted @ 2014-08-17 20:32 lypzxy 阅读(4796) 评论(0) 推荐(0)
摘要: Font Size GetPropInfo SetOrdProp 阅读全文
posted @ 2014-08-14 15:31 lypzxy 阅读(436) 评论(0) 推荐(0)
摘要: 设置font size,遍历所有控件,有的控件没有font属性,所以要用GetPropInfo判断 if (GetPropInfo(cmp, "font")) function GetObjectProperty( const AObject : TObject; const APropName : 阅读全文
posted @ 2014-08-14 14:54 lypzxy 阅读(548) 评论(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 阅读(736) 评论(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 阅读(253) 评论(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 阅读(1066) 评论(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 阅读(440) 评论(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 阅读(1705) 评论(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 阅读(2013) 评论(0) 推荐(0)
摘要: XE6 控件太强了CameraComponent就可以了 Image1.Bitmap.Assign(Image2.Bitmap); ImageViewer1.Bitmap.LoadFromStream(stream) 阅读全文
posted @ 2014-08-07 17:49 lypzxy 阅读(415) 评论(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 阅读(412) 评论(0) 推荐(0)
摘要: Microsoft Virtual WiFi Miniport Adapter 一、看网络网卡 有多出的这一项“Microsoft Virtual WiFi Miniport Adapter”,那么说明你前边的设置是真确的。 二、设置Internet连接共享 在“网络连接”窗口中,右键单击已连接到I 阅读全文
posted @ 2014-08-05 22:39 lypzxy 阅读(540) 评论(0) 推荐(0)
摘要: procedure TPhoneDialerForm.btnMakeCallClick(Sender: TObject);var PhoneDialerService: IFMXPhoneDialerService;begin { test whether the PhoneDialer servi... 阅读全文
posted @ 2014-08-05 15:31 lypzxy 阅读(284) 评论(0) 推荐(0)