2009年12月21日 星期一
GdiPlus[41]: IGPRegion 区域
万一| 万一的 Delphi 博客 |12:00:00
阅读: 69 评论: 3 作者:万一发表于 2009-12-21 12:00原文链接// 区域建立: TGPRegion.Create(); { 参数可以是矩形、路径、HRGN、区域数据, 或无参} TGPRegion.FromHRGN(); { 从 HRGN 初始化 } // 区域运算(矩形、路径、或另一个区域): IGPRegion.Intersect();...
How to Override Delphi Form’s Restore Operation?
About.com| About.com Delphi Programming |02:00:09
in Delphi TIPS:: The WM_SYSCOMAND can be used to trap the restore window operation. When the form is maximized the "Maximize" button changes its look and operation. Clicking the restore button restores the window to its previous (normal, before it...
BusinessSkinForm v. 8.11
CodeGear| CodeGear-CodeCentral Delphi |00:35:15
BusinessSkinForm VCL library help you to create applications with skins support for forms, menus, hints, many standard and DB controls. You can create your skins with special editor. Develop your business applications with BusinessSkinForm VCL!Fea...
DynamicSkinForm v.11.01
CodeGear| CodeGear-CodeCentral Delphi |00:29:07
DynamicSkinForm VCL library help you to create applications with skins. Skins support for forms, menus, hints, many standard and non-standard original controls. Skins with many objects, effects help you to create standard and non-standard cool ap...
2009年12月20日 星期日
GdiPlus[40]: 不该忽略的一些基础结构
万一| 万一的 Delphi 博客 |21:57:00
阅读: 87 评论: 0 作者:万一发表于 2009-12-20 21:57原文链接这些基础结构有: TGPSize、TGPSizeF、TGPPoint、TGPPointF、TGPRect、TGPRectF.它们自身提供了一些方便的功能, 如果早看看的话前面的很多代码能更精简些.TGPPoint 或 TGPPointF 方便的功能:1、因为已?..
Delphi 2010 Feature Highlight - Debugger Visualizers
CodeGear| CodeGear-CDN Delphi |17:00:00
2009年12月19日 星期六
GdiPlus[39]: IGPGraphicsPath (六) - 路径的辅助工具 IGPGraphicsPathIterator
万一| 万一的 Delphi 博客 |22:42:00
阅读: 49 评论: 0 作者:万一发表于 2009-12-19 22:42原文链接IGPGraphicsPathIterator 能遍历路径中的子路径和路径标记.IGPGraphicsPathIterator.Count; { 点总数 } IGPGraphicsPathIterator.SubpathCount; { 子路径数 } IGPGraphicsPathIterator.Has...
Android 小助手 1.02 发布
rarnu| 橙子的Delphi技术专区-delphi |15:55:00
上一版本地址:点击进入这一版去掉了手机型号的设置,改为自动识别,用户的操作更方便。可以支持多个设备同时连上电脑,软件将跟据用户当前的选择,对指定的一个设备进行操作,而不需将其他设备拨下。增加了查看手机参数的功能。优化Linux文件夹获取的算法,现在获取...
X 的 Y 次方
万一| 万一的 Delphi 博客 |09:54:00
阅读: 58 评论: 0 作者:万一发表于 2009-12-19 09:54原文链接var x,y,z: Real; begin x := 2; y := 3; { 使用 Math.Power } z := Math.Power(x, y); ShowMessage(FloatToStr(z)); //8 { 不想 uses Math, 就用 System.Exp、System.Ln } z := Ex...
Delphi 2010 Twitter Plug-in
CodeGear| CodeGear-CodeCentral Delphi |03:41:39
This simple application shows how to create a plug-in to Delphi 2010 IDE using OTA (Open Tools API). In this example, the plug-in post a tweet in your twitter blog saying the name of the project / unit that you are currently working in the IDE, so...
2009年12月18日 星期五
GdiPlus[38]: IGPGraphicsPath (五) 路径标记
万一| 万一的 Delphi 博客 |21:45:00
阅读: 59 评论: 0 作者:万一发表于 2009-12-18 21:45原文链接IGPGraphicsPath.SetMarker //建立一个标记 IGPGraphicsPath.ClearMarkers //取消全部标记在路径中每建立一个图形都可以同时做个 Marker,真正使用这些个标记时, 主要通过 IGPGraphicsPathIterator ...
详解 EnumWindows 与 EnumWindowsProc - 回复 "SplendourChiang" 的问题
万一| 万一的 Delphi 博客 |13:22:00
阅读: 64 评论: 0 作者:万一发表于 2009-12-18 13:22原文链接问题来源:http://www.cnblogs.com/del/archive/2009/10/16/1584488.html#1727205// EnumWindows 的功能是遍历所有顶层窗口 function EnumWindows( lpEnumFunc: TFNWndEnumProc; {回调函数指针} lP...
How to Declare Constant Records in Delphi
About.com| About.com Delphi Programming |02:00:43
in Delphi TIPS:: Record data types in Delphi represent a mixed set of elements. Each element is called a field; the declaration of a record type specifies a name and type for each fieldAs with any data type in Delphi, you can create a record type ...
2009年12月17日 星期四
获取硬盘、CPU序列号
小城太阳| 网络天空vistra-Delphi |22:34:00
获取CPU序列号:调用方式如:edit1.Text := GetCPUIDStr;type TCPUID = array[1..4] of Longint;FUNCTION GetCPUID : TCPUID; assembler; register;asm PUSH EBX &nbs...
GdiPlus[37]: IGPGraphicsPath (四) 路径变换
万一| 万一的 Delphi 博客 |20:46:00
阅读: 83 评论: 0 作者:万一发表于 2009-12-17 20:46原文链接IGPGraphicsPath.Flatten(); //把路径中的曲线转换为近似直线段(路径中只有 Bezier 线和直线). IGPGraphicsPath.Outline(); //同 Flatten(); IGPGraphicsPath.Warp(); //四边形或平行四边形?..





冀公网安备 13098202000212号