2016年2月29日
摘要: Unicode is a character set - not an encoding. The list of Unicode characters contains characters from ASCII to Egyptian Hieroglyphs - over a million c 阅读全文
posted @ 2016-02-29 10:46 蓝懒虫 阅读(210) 评论(0) 推荐(0) 编辑
  2016年2月2日
摘要: 过程也可以像通用变量一样声明、调用 procedure HelloWorld; begin ShowMessage('HI'); end; procedure HelloWorld2(a:String); begin ShowMessage('HI'); end; procedure TFormSp 阅读全文
posted @ 2016-02-02 15:22 蓝懒虫 阅读(1716) 评论(0) 推荐(0) 编辑
摘要: http://delphi.org/2015/12/skill-sprint-using-firemonkey-layouts/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+DelphiDotOrg+%28Delphi.org 阅读全文
posted @ 2016-02-02 14:31 蓝懒虫 阅读(328) 评论(0) 推荐(0) 编辑
摘要: procedure TForm1.Button1Click(Sender: TObject); var response : string; JSONToSend: TStringStream; begin JSONToSend := TStringStream.Create('{}'); IdHT 阅读全文
posted @ 2016-02-02 14:26 蓝懒虫 阅读(261) 评论(0) 推荐(0) 编辑
摘要: uses System.Devices; case TDeviceInfo.ThisDevice.DeviceClass of TDeviceInfo.TDeviceClass.Desktop: ... TDeviceInfo.TDeviceClass.Phone: ... TDeviceInfo. 阅读全文
posted @ 2016-02-02 13:56 蓝懒虫 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 当一个项目非常复杂且项目生命周期长,代码的注释就显得非常必要。 /// <summary>将指定索引的子结点移除</summary> /// <param name="AItemIndex">要移除的子结点索引</param> /// <returns>返回被移除的子结点,如果指定的索引不存在,返回 阅读全文
posted @ 2016-02-02 11:47 蓝懒虫 阅读(427) 评论(0) 推荐(0) 编辑