2009年12月29日 星期二
Lazarus实战开发
幸福苹果| 幸福苹果-delphi |16:02:00
http://tech.ddvip.com/2009-09/1252726641132366.htmlLazarus实战开发之串口通信(WINCE/WIN32)Lazarus实战开发之数据库SQLite(WIN32/WINCE)WINCE上的RAD开发(二)-----KOL的平台搭建Lazarus实战开发之网络版(WIN32/WINCE)WINCE上的RAD开发(一)-----Lazarus的平台...
如何获取窗口的图标
幸福苹果| 幸福苹果-delphi |15:57:00
http://www.codesky.net/article/doc/200308/2003081937344771.htm经常有人问到如何获取窗口的图标,这里给出一个简单的方法:function MyGetWindowIcon(H:Hwnd):Hicon;begin result:=GetClassLong(H,GCL_HICON); //第一种方法取图标 if ico=0...
Delphi ListView基本用法大全
幸福苹果| 幸福苹果-delphi |15:57:00
http://www.cnblogs.com/y232995558/archive/2009/04/10/1432812.html//增加项或列(字段)ListView1.Clear;ListView1.Columns.Clear;ListView1.Columns.Add;ListView1.Columns.Add;ListView1.Columns.Add;ListView1.Columns.Items[0].Caption:='id'...
让弹出窗口,弹窗,弹出式广告就地正法
幸福苹果| 幸福苹果-delphi |15:56:00
每当我浏览网站的时候,那扑面而来的广告窗口总是弄得我心烦意乱.我下定决心要自己编一个查杀广告的程序.经过我的观察,发现了广告窗口和正常IE窗口的区别主要在于广告窗口没有标题栏和状态栏(其实它们也有,如果你不明白,请继续往下看!) &nbs...
用Delphi响应WMI事件(响应网线断开)
幸福苹果| 幸福苹果-delphi |15:55:00
需要在程序中响应网线断开的信息,用Delphi实现了一下。uses WbemScripting_TLB, ActiveX, ComObj;typeTForm1 = class(TForm) Button2: TButton; procedure Button2Click(Sender: TObject); proce...
Delphi 2010 Friday Afternoon Workshops
Bob Swart| Dr.Bob’s Delphi Notes |12:20:54
Starting in January 2010, I'll be organising a number of Dutch Delphi 2010 Friday Afternoon hands-on Workshops in my office in Helmond Brandevoort (NL).
GdiPlus[53]: 图像(五) 图像的属性(图像元数据)
万一| 万一的 Delphi 博客 |12:03:00
阅读: 37 评论: 0 作者:万一发表于 2009-12-29 12:03原文链接相关方法和属性:IGPImage.GetPropertyItem(); { 获取属性项 } IGPImage.SetPropertyItem(); { 设置属性项 } IGPImage.RemovePropertyItem(); { 删除属性项 } IGPImage.PropertyIdList; { 获取?..
Delphi Programming Almanacs: 1998. - 2009. Something for Every Delphi Developer: Beginner or a Guru!
About.com| About.com Delphi Programming |02:00:30
inDelphi Almanacs:: According to Wikipedia, an almanac is anannual publication containing tabular information in a particular field or fields often arranged according to the calendar.ADelphi Programming Almanacwould then be an annual reference e-b...
2009年12月28日 星期一
GdiPlus[52]: 图像(四) 图像信息
万一| 万一的 Delphi 博客 |21:14:00
阅读: 65 评论: 0 作者:万一发表于 2009-12-28 21:14原文链接相关属性、方法、函数:IGPImage.Width; { 宽度(单位是像素) } IGPImage.Height; { 高度(单位是像素) } IGPImage.HorizontalResolution; { 获取水平分辨率(以"像素/英寸"...
GdiPlus[51]: 图像(三) 关于呈现
万一| 万一的 Delphi 博客 |19:57:00
阅读: 6 评论: 0 作者:万一发表于 2009-12-28 19:57原文链接相关方法:IGPGraphics.DrawImage(); IGPImage.GetThumbnailImage(); IGPImage.RotateFlip();用 DrawImage 呈现图像时, 是否指定 Width 和 Height 的区别://如果图像的分辨率与 Graphics 的分辨率不一致...
Delphi 取最前窗口标题(不重复)
幸福苹果| 幸福苹果-delphi |14:26:00
memo1.Align:=alClient;procedure TForm1.Timer1Timer(Sender: TObject);varp:pchar;itemp:integer;beginp:=allocmem(255);itemp:=GetForegroundWindow;GetWindowText(itemp,p,255);if (p<>'') thenbeginif Pos(p,Memo1.Text)=0 then //不重复,则添加,已有重...
美萍记账通所用rzPanel所属控件:Raize Components
幸福苹果| 幸福苹果-delphi |14:19:00
http://sunnymovie.blog.hexun.com/19815971_d.htmlRaize Components v4.3.2http://www.2ccc.com/article.asp?articleid=497Raize Components (delphi控件) v5.0英文特别版http://www.52z.com/soft/16115.htmlRaizer是一个超过120个通用VCL组件的用户界面开发包,用?..
GdiPlus[50]: 图像(二) 关于 Create
万一| 万一的 Delphi 博客 |12:21:00
阅读: 24 评论: 0 作者:万一发表于 2009-12-28 12:21原文链接IGPImage 类提供的 Create 方法:Image := TGPImage.Create(文件(或流), Boolean); //其中的布尔值默认 False; 如果为 True 则使用文件(或流)中的已嵌入颜色管理信息来进行颜色校正. { 示例1: 从文件?..
Save Touch Keyboard Layout
CodeGear| CodeGear-CodeCentral Delphi |10:29:58
Example application to save a touch keyboard layout to an XML file.
Implementing MultiCast Events for Win32 Delphi’s TDataset and TField descendants
About.com| About.com Delphi Programming |02:00:32
in Delphi DB::When creating database applications in Win32 Delphi you might find the multicast idea useful - to have more than one procedure execute when the OnAfterScroll event fires for the TDataset descendant, for example. The "TMultiDsEvent" c...





冀公网安备 13098202000212号