自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 收藏
  • 关注

转载 ASCII、Unicode、GBK和UTF-8字符编码的区别联系

Unicode is a character set - not an encoding. The list of Unicode characters contains characters from ASCII to Egyptian Hieroglyphs - over a million characters each with at unique number referred...

2016-02-29 10:46:00 125

转载 [Delphi]过程Procedure动态调用

过程也可以像通用变量一样声明、调用 procedure HelloWorld; begin ShowMessage('HI'); end; procedure HelloWorld2(a:String); begin ShowMessage('HI'); end; procedure TFormSplash.F...

2016-02-02 15:22:00 574

转载 【转载】Understanding and using FireMonkey Layouts

http://delphi.org/2015/12/skill-sprint-using-firemonkey-layouts/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+DelphiDotOrg+%28Delphi.org%29 Skill Sprint: Using FireMonkey L...

2016-02-02 14:31:00 159

转载 [FireMonkey]用IdHTTP发送Rest API

procedure TForm1.Button1Click(Sender: TObject); var response : string; JSONToSend: TStringStream; begin JSONToSend := TStringStream.Create('{}'); IdHTTP1.Request.Connection := 'Keep...

2016-02-02 14:26:00 146

转载 [FireMonkey]获取设备(平台)类型

uses System.Devices; case TDeviceInfo.ThisDevice.DeviceClass of TDeviceInfo.TDeviceClass.Desktop: ... T...

2016-02-02 13:56:00 248

转载 [Delphi]函数与过程注释

当一个项目非常复杂且项目生命周期长,代码的注释就显得非常必要。 /// <summary>将指定索引的子结点移除</summary> /// <param name="AItemIndex">要移除的子结点索引</param> /// <returns>返回被移除的子结点,如果指定的索引不存在,...

2016-02-02 11:47:00 199

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除