码迷,mamicode.com
首页 >  
搜索关键字:unit1    ( 284个结果
Delphi7如何实现让Tedit显示文字垂直居中(上下居中)
通过下面的组件,可以在输入文字的时候自动垂直居中 直接把下面代码保存到Unit1.pas即可 当这个保存成unit1.pas 后,然后通过delphi组件安装功能来安装组件,具体安装方法可以到网上查方法 ...
分类:Windows程序   时间:2017-11-18 14:52:48    阅读次数:715
Delphi TXLSReadWriteII2 带的demo中直接编辑XLS文件的例子
unit Unit1; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Grids, Tabs, Cell2, {$ifdef ver140} Var... ...
分类:Windows程序   时间:2017-10-16 13:53:59    阅读次数:300
TXLSReadWriteII 公式计算
unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, XLSReadWriteII2, StdCtrls, XLSUtils2; t... ...
分类:其他好文   时间:2017-10-16 13:46:08    阅读次数:108
delphi ftp上传下载
由于delphi本身自带了indy控件,因此用这些控件实现网络编程即快又容易。尽管如此,我还是极大地鼓励自己查看FTP底层是如何实现的,但就目前而言,indy控件还是一个非常不错的选择。 针对indy的强大,我还是决定将这段代码帖出来,主要是方便自己日后复习、查询。 Unit1; interface ...
分类:Windows程序   时间:2017-10-15 21:18:17    阅读次数:304
delphi通过TADOConnection组件直接连接MSSQL数据库并读写数据。
unit Unit1; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, V... ...
分类:数据库   时间:2017-10-11 12:50:48    阅读次数:860
Delphi10.2 DPR文件
通过选择【Project | View Source】,可以看到DPR文件的基本面貌,操作如下:默认的 Delphi 项目文件的内容如下:program Project1; {关键字 program}uses {uses 单元引用} Vcl.Forms, //新的单元名称VCL限定 Unit1 in... ...
分类:Windows程序   时间:2017-10-03 00:52:44    阅读次数:480
C语言for循环的一些注意细节
在使用for循环接收处理数组的时候,有时候要回到数组的首位置。以前没有注意这个问题,以为循环变量置0就可以,实际不是这样的。先来看一下for循环的反汇编代码,如下:Unit1.cpp.595:for(inti=0;i<3;i++) 0040293833C0xoreax,eax 0040293A8945F4mov[ebp-0x0c],eax Unit1.cp..
分类:编程语言   时间:2017-09-20 16:24:24    阅读次数:121
delphi 多线程之 TEvent 和 TLightweightEvent
unit Unit1; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, V... ...
分类:编程语言   时间:2017-09-09 00:42:40    阅读次数:412
用SendNotifyMessage代替PostMessage避免消息丢失(WIN7下消息队列的默认长度是10000,队列满后消息将被丢弃)
大家都知道PostMessage会丢消息,但是消息队列的大小是多少呢,下面做了一个测试。 代码: 1 unit Unit1; 2 3 interface 4 5 uses 6 Windows, Messages, SysUtils, Variants, Classes, Graphics, Cont ...
分类:Windows程序   时间:2017-09-06 18:16:09    阅读次数:869
delphi 多线程之System.TMonitor (续一)
unit Unit1; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, V... ...
分类:编程语言   时间:2017-09-02 23:21:27    阅读次数:197
284条   上一页 1 ... 5 6 7 8 9 ... 29 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!