
Delphi
文章平均质量分 77
阿土sap
提供Technology Service...
展开
-
delphi 开发使用的基类D
unit Common;interfaceuses Classes, Windows, Forms, SysUtils, StdCtrls, Grids, Types, Registry, Messages, ShellAPI, Graphics;type TCommon = class(TComponent) public function GetAppPath: str原创 2007-10-25 11:22:00 · 1590 阅读 · 0 评论 -
常用DELPHI实现算法大全
1.数论算法 求两数的最大公约数 function gcd(a,b:integer):integer; begin if b=0 then gcd:=a else gcd:=gcd (b,a mod B); end; 求两数的最小公倍数 function lcm(a,b:integer):integer; begin if alcm:=a; while lcm mod b >0转载 2009-03-15 11:04:00 · 2280 阅读 · 0 评论 -
Delphi编程技巧集锦
Delphi编程技巧集锦 ◇[DELPHI]网络邻居复制文件 uses shellapi; copyfile(pchar(newfile.txt),pchar(//computername/direction/targer.txt),false); ◇[DELPHI]产生鼠标拖动效果 通过MouseMove事件、DragOver事件、EndDrag事件实现,例如在PANEL上的原创 2009-03-15 11:00:00 · 716 阅读 · 0 评论 -
treeview 樹型結構生成
unit Unit1;interfaceuses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, ComCtrls, StdCtrls; type PNodeRec = record Name: STRING; POINT: POINTER; e原创 2009-03-19 12:34:00 · 556 阅读 · 0 评论 -
操作xml的基类
unit WinstarXML;interfaceuses Windows, Variants, SysUtils, Classes, XMLIntf, XMLDoc, ComCtrls, Dialogs, Types,Forms;type TXMLControl = class private XMLParents: array of IXMLNodeList; //XM原创 2009-07-08 15:31:00 · 608 阅读 · 0 评论 -
树型结构的产生和方法
树型结构的产生和方法原创 2010-12-30 11:05:00 · 610 阅读 · 0 评论 -
反监视
反监视原创 2010-12-30 11:02:00 · 689 阅读 · 0 评论 -
shellapi
shellapi转载 2011-06-01 14:44:00 · 779 阅读 · 0 评论 -
定位方法,以及纠偏的调用
定位纠偏、地图简单调用、检测开启系统GPS转载 2016-06-07 15:34:59 · 3405 阅读 · 0 评论 -
网络函数大全 delphi
网络函数大全 {========================================================================= 功 能: 网络函数库 时 间: 2002/10/02 版 本: 1.0 =======================================================================转载 2009-03-15 11:02:00 · 562 阅读 · 0 评论 -
检测USB使用情况
=======================================此方法放在任何地方,都可以正常.=======================================procedure TForm1.usb(var msg: TMessage); const DBT_DEVICEARRIVAL = $8000; DBT_DEVICEREMOVECOMPLETE转载 2009-03-03 10:28:00 · 518 阅读 · 0 评论 -
delphi 开发使用的基类C
unit CommonDB;interfaceuses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, DBGrids, DbClient, Grids, dxDBTL, StdCtrls, ExtCtrls, TeeProcs, TeEngine, Chart,原创 2007-10-25 11:27:00 · 1067 阅读 · 0 评论 -
delphi 开发使用的基类A
unit LibStrs;interfaceuses Classes, Windows;function PadL(const str: String; others: array of integer): String;function PadR(const str: String; others: array of integer): String;function Center(原创 2007-10-25 11:40:00 · 2609 阅读 · 0 评论 -
delphi 开发使用的基类B
unit LibVCLs;interfaceuses Classes, StdCtrls, ComCtrls, Windows, Messages, SysUtils,dbTables, Typinfo, WinProcs, Graphics, Controls, Forms, Db,dbgrids, dbclient;type TableEvent = array[1..10原创 2007-10-25 11:41:00 · 1558 阅读 · 0 评论 -
Delphi编程控制摄像头 //使用DELPHI使用MS的AVICAP32.DLL就可轻松的实现对摄像头编程
const WM_CAP_START = WM_USER;const WM_CAP_STOP = WM_CAP_START + 68;const WM_CAP_DRIVER_CONNECT = WM_CAP_START + 10;const WM_CAP_DRIVER_DISCONNECT = WM_CAP_START + 11;const WM_CAP_SAVEDIB = WM_CAP_STAR原创 2007-10-25 18:30:00 · 3034 阅读 · 1 评论 -
菜单及权限,以及工作流的数据库设计
if exists (select * from dbo.sysobjects where id = object_id(N[dbo].[t_menu]) and OBJECTPROPERTY(id, NIsUserTable) = 1) drop table [dbo].[t_menu] GOCREATE TABLE [dbo].[t_menu] ( [ID] [int] NOT NU原创 2008-07-05 09:33:00 · 3928 阅读 · 3 评论 -
发送邮件
unit Ufsmtp;interfaceuses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, IdBaseComponent, IdComponent, IdTCPConnection, IdTCPClient, IdMessageClient, IdSMTP原创 2008-11-26 22:48:00 · 911 阅读 · 0 评论 -
Delphi 三层结构
应用服务器的编写:(1)新建一个工程(2)点击“File”“New”“Other”,选择Multiter页标签的Remote Data Module(3)设置CoClassName(例:输入TestServer),点击OK就会进入Remote Data Module编辑框(4)在编辑框中可以添加任何与数据库相连的组件,既然你的机器上装了sql server ,你就可以 添加一个AD原创 2008-12-02 12:43:00 · 1044 阅读 · 0 评论 -
通信控件MSComm使用详解
通信控件MSComm使用详解MSComm 控件通过串行端口传输和接收数据,为应用程序提供串行通讯功能。MSComm控件在串口编程时非常方便,程序员不必去花时间去了解较为复杂的API函数,而且在VC、VB、Delphi等语言中均可使用。 Microsoft Communications Control(以下简称MSComm)是Microsoft公司提供的简化Windows下串行通信编程的Active转载 2009-03-03 10:26:00 · 638 阅读 · 0 评论 -
百度地图 API 调用 例子
百度地图 API 调用 例子原创 2016-06-08 15:38:32 · 2004 阅读 · 0 评论