游子日月长

笑渐不闻声渐悄,多情却被无情恼!

导航

上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 27 下一页

2017年2月10日 #

Open Tools API :IDE Main Menus

摘要: http://www.davidghoyle.co.uk/WordPress/?p=777 http://www.davidghoyle.co.uk/WordPress/?page_id=1110 http://www.davidghoyle.co.uk/WordPress/?page_id=111 阅读全文

posted @ 2017-02-10 14:34 游子日月长 阅读(392) 评论(0) 推荐(0) 编辑

Delphi笔记-自定义提示窗口

摘要: unit pbHint; interface uses Windows, Controls, Forms, Graphics; type TPBHint=class(THintWindow) //要自定义提示窗口类,必须从THintWindow类继承 private FRegion:THandle; //保存当前提示窗口的区域句柄,用来设置窗口的形状 proc... 阅读全文

posted @ 2017-02-10 13:53 游子日月长 阅读(522) 评论(0) 推荐(0) 编辑

2017年2月9日 #

How to read very large text files fast

摘要: Question Does anyone know the fastest way to read large text files (10Mb) into a string.Readln is just too slow. Answer 1 You may try this: function R 阅读全文

posted @ 2017-02-09 15:44 游子日月长 阅读(196) 评论(0) 推荐(0) 编辑

2017年2月8日 #

封面图片任意旋转 任意旋转图像 处理速度快 自动中心位置寻找

摘要: unit UnitMain; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, Math, StdCtrls, jpeg, ExtCtrls, ComCtrls; type TForm1 = class(TForm... 阅读全文

posted @ 2017-02-08 17:12 游子日月长 阅读(206) 评论(0) 推荐(0) 编辑

使图片任意转动的编程例子

摘要: unit unitImage; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ExtCtrls, math; type TForm1 = class(TForm) Image1: TImage; ... 阅读全文

posted @ 2017-02-08 17:10 游子日月长 阅读(283) 评论(0) 推荐(0) 编辑

有3D效果的进度条

摘要: // The Unofficial Newsletter of Delphi Users - Issue #12 - February 23rd, 1996 unit Percnt3d; (* TPercnt3D by Lars Posthuma; December 26, 1995. Copyright 1995, Lars Posthuma. ... 阅读全文

posted @ 2017-02-08 17:06 游子日月长 阅读(313) 评论(0) 推荐(0) 编辑

2017年2月7日 #

注册COM

摘要: 可以用代码在程序中实现COM的注册. 举例如下: (假设需要注册的文件为test.ocx)uses OLEctl,....varOCXHand: THandle;RegFunc: TDllRegisterServer;beginOCXHand:= LoadLibrary('c:\windows\sy 阅读全文

posted @ 2017-02-07 16:55 游子日月长 阅读(297) 评论(0) 推荐(0) 编辑

文件和Variant的转换

摘要: function FileToVariant(FileName: String): OleVariant; var AStream: TFileStream; MyBuffer: Pointer; begin AStream:=TFileStream.create(FileName,fmOpenRe 阅读全文

posted @ 2017-02-07 16:54 游子日月长 阅读(169) 评论(0) 推荐(0) 编辑

流和Variant的转换

摘要: procedure TForm2.VariantToStream (const v : olevariant; Stream : TMemoryStream); var p : pointer; begin Stream.Position := 0; Stream.Size := VarArrayH 阅读全文

posted @ 2017-02-07 16:53 游子日月长 阅读(159) 评论(0) 推荐(0) 编辑

bmp和Variant的转换

摘要: procedure TForm2.VariantToBMP(aValue : OleVariant;var aBmp:TBitmap); var Stream : TMemoryStream; begin try Stream := TMemoryStream.Create; VariantToSt 阅读全文

posted @ 2017-02-07 16:52 游子日月长 阅读(171) 评论(0) 推荐(0) 编辑

上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 27 下一页