Delphi技术
文章平均质量分 69
bgtlw
这个作者很懒,什么都没留下…
展开
-
精确到微秒级的时钟
精确到微秒级的时钟{ A high-precision counter/timer. Retrieves time differences downto microsec. Quick Reference: THPCounter inherits from TComponent. Key-Methods: Start: Starts the counter. Place this call j原创 2006-05-07 15:31:00 · 1768 阅读 · 0 评论 -
SQL语句导入导出大全
SQL语句导入导出大全 SQL语句导入导出大全 /******* 导出到excel EXEC master..xp_cmdshell bcp SettleDB.dbo.shanghu out c:/temp1.xls -c -q -S"GNETDATA/GNETDATA" -U"sa" -P"" /*********** 导入Excel SELECT * FROM OpenDataSo原创 2006-05-07 15:35:00 · 604 阅读 · 0 评论 -
一个简易的FTP客户端软件
一个简易的FTP客户端软件刚学Delphi的菜鸟,参照资料做了一个FTP客户端软件,觉得学到了一点点皮毛,这是源代码。unit Unit1;interfaceusesWindows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,Dialogs, ExtCtrls, ComCtrls, StdCtrls, Bu原创 2006-05-07 15:52:00 · 2439 阅读 · 0 评论 -
图像处理
图像处理Delphi基本图像处理代码//浮雕procedure Emboss(SrcBmp,DestBmp:TBitmap;AzimuthChange:integer);overload;vari, j, Gray, Azimuthvalue, R, G, B: integer;SrcRGB, SrcRGB1, SrcRGB2, DestRGB: pRGBTriple;beginfor i :原创 2006-05-07 15:48:00 · 1946 阅读 · 0 评论 -
一些值得收藏的网址
一些值得收藏的网址名称:快速入门地址:http://chs.gotdotnet.com/quickstart/描述:本站点是微软.NET技术的快速入门网站,我们不必再安装.NET Framework中的快速入门示例程序,直接在网上查看此示例即看。****************************************************名称:微软官方.NET指导站点地址:http:原创 2006-05-07 15:58:00 · 1396 阅读 · 1 评论 -
delphi中的快捷键大收集
delphi中的快捷键大收集 1.SHIFT+鼠标左键 先选中任一控件,按键后可选中窗体(选中控件后按Esc效果一样)2.Shift+F8 调试时弹出CPU窗口。3.Shift+F10 等于鼠标右键(Windows快捷键)。4.Shitf+箭头 选择5.shift +F12 快速查找窗体并打开6.F7 (步进式调试同时追踪进入子过程)7.F8 (步进式调试不进入子过程)8.F9 运行9.F1原创 2006-05-07 16:01:00 · 728 阅读 · 0 评论 -
使用c#创建windows本地用户帐号
使用c#创建windows本地用户帐号Using the Windows net command, it’s easy to create local Windows User Accounts. The syntax for the net command is:net user [username] [password] /ADDThe following C# function take原创 2006-05-07 15:55:00 · 1140 阅读 · 0 评论 -
Delphi取整函数
Delphi取整函数floor 和 ceil 是 math unit 里的函数,使用前要先 Uses Math。trunc 和 round 是 system unit 里的函数,缺省就可以用。floor 直接往小的取,比如 floor(-123.55)=-124,floor(123.55)=123trunc 直接切下整数,比如 trunc(-123.55)=-123, floor(123.55原创 2006-05-07 15:39:00 · 1050 阅读 · 1 评论