Welcome![Sign In][Sign Up]
Location:
Search - delphi m

Search list

[Other resourceDelphi快捷键

Description: DELPHI basicCtrl+NUM 直接将光标跳到NUM处,NUM是用Ctrl+Shift+NUM设置的标号。 NUM不能用小键盘。 Ctrl+Home 将光标移至文件头。 Ctrl+End 将光标移至文件尾。 Ctrl+B Buffer List窗口。 Ctrl+I 同Tab键。 Ctrl+M 同Enter键。 Ctrl+N 同Enter键,但光标位置保持不变。 Ctrl+T 删除光标右边的一个单词。 Ctrl+Y 删除光标所在行。 Ctrl+Shift+↑ 光标在函数体内时,将光标快速移至当前函数声明处。 Ctrl+Shift+↓ 光标在函数声明行时,将光标快速移至函数定义处。 Ctrl+Shift+C 声明一个过程或函数后,直接生成过程或函数的名称、begin、end Ctrl+Shift+E 光标在Edit窗口和Explorer窗口间切换。 Ctrl+Shift+G 插入GUID。 Ctrl+Shift+J 弹出Delphi语句提示窗口,选择所需语句将自动完成一条语句。 Ctrl+Shift+T 在光标行加入To-Do注释。 Ctrl+Shift+Y 删除光标之后至本行末尾之间的文本。 Ctrl+F3 Call Stack窗口。 Ctrl+F4 等于File菜单中的Close项。
Platform: | Size: 2516 | Author: 小强 | Hits:

[Documents如何使用Delphi打Package

Description: 相信許多人和我一樣,在使用Delphi開發應用系統的時候,一定會想到如何的切割整個應用系統。是把所有的子系統撰寫成一個很大(可能會有數M.Bytes的大小)的EXE檔呢?還是應該把每一個模組撰寫在不同的EXE檔案之中的好。 事實上這兩種方法都有它們自己的問題。
Platform: | Size: 315882 | Author: jicybb | Hits:

[PropertySheetPakToBmp

Description: 算法VC调用matlab中定义的.m文件中的函数的实例-VC algorithm called defined in Matlab. M document examples of the function
Platform: | Size: 2048 | Author: 王府井 | Hits:

[Crack Hackdll_test_MD5

Description: MD5 加密算法 Delphi 源码。 编译为dll文件,方便其他语言的系统调用-MD5 encryption algorithm Delphi source. Dll file to compile and facilitate language system calls
Platform: | Size: 269312 | Author: 周锋华 | Hits:

[Other256色液晶取模软件

Description: 256色液晶取模软件 适用于S3C44b0X A R M处理器的 L C D 256色 字模提取程序,适用于新手使用.也适合于其他支持 256色 l c d,色位为 R(3) G(2) B(2)的 Lcd 控制器,最大支持640*480的液晶屏.-256 color LCD module from the application software in S3C44b0X R A L M processor 256 C D Color Abstraction procedures applicable to the use of newcomers. Also suitable for other support 256-color l c, d, color-R (3) G (2) B (2) Lcd controller supports 640 x 480 LCD screen.
Platform: | Size: 602112 | Author: 郑家福 | Hits:

[Delphi/CppBuilderDelphi快捷键

Description: DELPHI basicCtrl+NUM 直接将光标跳到NUM处,NUM是用Ctrl+Shift+NUM设置的标号。 NUM不能用小键盘。 Ctrl+Home 将光标移至文件头。 Ctrl+End 将光标移至文件尾。 Ctrl+B Buffer List窗口。 Ctrl+I 同Tab键。 Ctrl+M 同Enter键。 Ctrl+N 同Enter键,但光标位置保持不变。 Ctrl+T 删除光标右边的一个单词。 Ctrl+Y 删除光标所在行。 Ctrl+Shift+↑ 光标在函数体内时,将光标快速移至当前函数声明处。 Ctrl+Shift+↓ 光标在函数声明行时,将光标快速移至函数定义处。 Ctrl+Shift+C 声明一个过程或函数后,直接生成过程或函数的名称、begin、end Ctrl+Shift+E 光标在Edit窗口和Explorer窗口间切换。 Ctrl+Shift+G 插入GUID。 Ctrl+Shift+J 弹出Delphi语句提示窗口,选择所需语句将自动完成一条语句。 Ctrl+Shift+T 在光标行加入To-Do注释。 Ctrl+Shift+Y 删除光标之后至本行末尾之间的文本。 Ctrl+F3 Call Stack窗口。 Ctrl+F4 等于File菜单中的Close项。-Delphi shortcuts
Platform: | Size: 2048 | Author: 小强 | Hits:

[GIS programmapxcn

Description: Map+Delphi开发 不包含数据库-Map does not include Delphi database
Platform: | Size: 1120256 | Author: 李鹏 | Hits:

[GUI DevelopDelphi_MDI

Description: 自己编写的一个MDI,开发环境Delphi7.0。供大家使用和交流!-themselves prepared an MDI, Delphi7.0 development environment. We use and for the exchange!
Platform: | Size: 507904 | Author: 任全 | Hits:

[Data structsProjectjohu123006

Description: crc任意位生成多项式 任意位运算 自适应算法 循环冗余校验码(CRC,Cyclic Redundancy Code)是采用多项式的 编码方式,这种方法把要发送的数据看成是一个多项式的系数 ,数据为bn-1bn-2…b1b0 (其中为0或1),则其对应的多项式为: bn-1Xn-1+bn-2Xn-2+…+b1X+b0 例如:数据“10010101”可以写为多项式 X7+X4+X2+1。 循环冗余校验CRC 循环冗余校验方法的原理如下: (1) 设要发送的数据对应的多项式为P(x)。 (2) 发送方和接收方约定一个生成多项式G(x),设该生成多项式 的最高次幂为r。 (3) 在数据块的末尾添加r个0,则其相对应的多项式为M(x)=XrP(x) 。(左移r位) (4) 用M(x)除以G(x),获得商Q(x)和余式R(x),则 M(x)=Q(x) ×G(x)+R(x)。 (5) 令T(x)=M(x)+R(x),采用模2运算,T(x)所对应的数据是在原数 据块的末尾加上余式所对应的数据得到的。 (6) 发送T(x)所对应的数据。 (7) 设接收端接收到的数据对应的多项式为T’(x),将T’(x)除以G(x) ,若余式为0,则认为没有错误,否则认为有错。-crc-generating polynomial arbitrary Operators adaptive algorithm Cyclic Redundancy Check (CRC. Cyclic Redundancy Code) is the polynomial coder, This way the data to be sent as a polynomial coefficient data bn- 1bn-2 ... b1b0 (0 or 1), corresponding to the polynomial : bn- 1Xn-1 bn- 2Xn-2 ... b1X belts such as : data "10010101" polynomial can be written as a X7 X4 X2. Cyclic Redundancy Check Cyclic Redundancy Check method of principle as follows : (1) The data to be sent to the corresponding polynomial p (x). (2) the sender and the receiver agreed on a generator polynomial G (x), set up the generator polynomial of the highest power of r. (3) In the data block Add to the end of r-0, then the polynomial corresponding to M (x) = XrP (x). (R-bits) (4) M (x) divided by G (
Platform: | Size: 459776 | Author: johu | Hits:

[Delphi/CppBuilderemailgroup2007

Description: 邮件群发! 邮件群发! -mail listserv! M ail listserv! M ail listserv! M ail listserv! Mail listserv!
Platform: | Size: 1668096 | Author: lin | Hits:

[Delphi/CppBuilderdelphiHelp

Description: 含此文档只表示此压缩包来自于DELPHI盒子网站 ------------------------------------------------------------------------- DELPHI盒子 二零零三新版 http://www.2ccc.com http://www.delphibox.com Email:root@2ccc.com DELPHI相关源码下载,作品发布,个性论坛,支持WEB/FTP文件上传,会员WEB空间,VIP会员***@2ccc.com邮箱。 2ccc技术论坛 http://bbs.2ccc.com 2ccc个人网络空间,免费8M永久使用web空间,可以上传任何文件,上传进度显示,送个人留言板,VIP会员可申请100M空间。 http://my.2ccc.com 2003-9-25 第9次改版正式开通,每日更新。 -------------------------------------------------------------------------- DELPHIBOX New Version @ 2003 http://www.2ccc.com http://www.delphibox.com Email:root@2ccc.com DELPHI Code,App,Simple to Publish,forum,WEB/FTP uploads Support,member WEB Space or email addr. 2ccc Tech Forum. http://bbs.2ccc.com 2ccc Web Space,Free 8M Space,Upload any file-type. http://my.2ccc.com 2003-9-25 New Version WebSite ninthly,Update everyday.-with this document only said that the package of compressed from the box DELPHI website---------------------------------------------------- DELPHI box--------------------- 2003 New http :// www.2ccc.com http :// www.delphibox.com Email : root@2ccc.com DELPHI relevant source download, works published, personality Forum support Web/FTP file uploads, Member Web space, VIP Member*** @ 2ccc.com mail. 2ccc Technical Forum http://bbs.2ccc.com 2ccc personal network space, 8 M permanent free use of web space, can upload any document upload progress indicates that sent personal message board, VIP members can apply for 100 M space. Http://my.2ccc.com 2003-9-25 9th revision opened updated daily.-------------------------------------------------------------------------- DELPHI New Version @
Platform: | Size: 1494016 | Author: | Hits:

[ICQ-IM-ChatCX.NetChat.

Description: 含此文档只表示此压缩包来自于DELPHI盒子网站 ------------------------------------------------------------------------- DELPHI盒子 二零零三新版 http://www.2ccc.com http://www.delphibox.com Email:root@2ccc.com DELPHI相关源码下载,作品发布,个性论坛,支持WEB/FTP文件上传,会员WEB空间,VIP会员***@2ccc.com邮箱。 2ccc技术论坛 http://bbs.2ccc.com 2ccc个人网络空间,免费8M永久使用web空间,可以上传任何文件,上传进度显示,送个人留言板,VIP会员可申请100M空间。 http://my.2ccc.com 2003-9-25 第9次改版正式开通,每日更新。 -------------------------------------------------------------------------- DELPHIBOX New Version @ 2003 http://www.2ccc.com http://www.delphibox.com Email:root@2ccc.com DELPHI Code,App,Simple to Publish,forum,WEB/FTP uploads Support,member WEB Space or email addr. 2ccc Tech Forum. http://bbs.2ccc.com 2ccc Web Space,Free 8M Space,Upload any file-type. http://my.2ccc.com 2003-9-25 New Version WebSite ninthly,Update everyday.-with this document only said that the package of compressed from the box DELPHI website---------------------------------------------------- DELPHI box--------------------- 2003 New http :// www.2ccc.com http :// www.delphibox.com Email : root@2ccc.com DELPHI relevant source download, works published, personality Forum support Web/FTP file uploads, Member Web space, VIP Member*** @ 2ccc.com mail. 2ccc Technical Forum http://bbs.2ccc.com 2ccc personal network space, 8 M permanent free use of web space, can upload any document upload progress indicates that sent personal message board, VIP members can apply for 100 M space. Http://my.2ccc.com 2003-9-25 9th revision opened updated daily.-------------------------------------------------------------------------- DELPHI New Version @
Platform: | Size: 81920 | Author: RockZhou | Hits:

[Software EngineeringMSComm

Description: MSComm 控件通过串行端口传输和接收数据,为应用程序提供串行通讯功能。MSComm控件在串口编程时非常方便,程序员不必去花时间去了解较为复杂的API函数,而且在VC、VB、Delphi等语言中均可使用。 Microsoft Communications Control(以下简称MSComm)是Microsoft公司提供的简化Windows下串行通信编程的ActiveX控件,它为应用程序提供了通过串行接口收发数据的简便方法。具体的来说,它提供了两种处理通信问题的方法:一是事件驱动(Event-driven)方法,一是查询法。-MSComm through serial port transmission and reception of data and application procedures for serial communications capabilities. MSComm in serial programming extremely convenient programmer does not have to spend time to understand the more complex API function, but also in VC, VB, Delphi, and other languages may be used. Microsoft Communications Control (hereinafter referred to MSCom m) is provided by Microsoft to simplify Windows programming of serial communication Active X-Control, which provides for the application procedures for the adoption of Serial Data Interface Transceiver simple method. Specifically, it provides a communication problem handled in two ways : First, the event-driven (Event-driven), First Act inquiries.
Platform: | Size: 9216 | Author: steven | Hits:

[Streaming Mpeg4DXShowPlay

Description: Delphi利用DirectShow开发的多媒体播放系统-Delphi use DirectShow multimedia player development system
Platform: | Size: 33792 | Author: KEN | Hits:

[Delphi VCLhttpdownload

Description: 这两个函数 function app_path1:string function socket_rec_line1(socket1:TCustomWinSocket timeout1:integer crlf1:string=#13#10):string 实际上是我的一个公用单元中的函数,大家应该养成建立自己的公用单元的习惯。 socket_rec_line1函数中用了唐晓峰大侠的coolmail中的办法:只是简单的一个一个字节收取,找到结束 标志后就算收完一行了,大家实际应用时可能应该找更好的办法。 这个程序的目的是:flashget在下载象51.net系列[如我的clq.51.net]中的程序时,会因为这些网站上的 自定义错误页面而导致下载的文件出错,具体见“大富翁”上的 “http://www.delphibbs.com/delphibbs/dispq.asp?lid=1170159” 虽然这是一个演示程序,不能下载地址转向的东东。但对于固定地址文件的下载已经很不错了,我的公司 不能装多线程的东东我一直用这个下载我要的大文件,“大富翁”200多M的离线数据这是用它下载的。
Platform: | Size: 242688 | Author: lbo | Hits:

[Delphi VCLgetMAc

Description: 这个是Delphi 2007下写的,需要Indy的ICMP控件 (Delphi2006应该也能编译,因为都带的是Indy10) 原理就是多线程Ping一个网关下的所有主机,然后导出ARP缓存。 因为Ping前会发出ARP请求获取每个IP的MAC地址,所以在Ping完后用 arp -a 取得本机ARP缓存。 最后就是读入arp -a 的返回,并存起来备查。-This is written under Delphi 2007 and need to Indy the ICMP control (Delphi2006 should be able to compile, because both bands are Indy10) principle is a multi-threaded gateway Ping all hosts, and then export the ARP cache. Ping will be issued because the previous ARP request to obtain the MAC address for each IP, so after Ping using arp-a to obtain the local ARP cache. Finally is read into the arp-a return, both up for future reference.
Platform: | Size: 207872 | Author: ybo | Hits:

[Delphi VCLMD5

Description: DELPHI MD5加密 1、 MD5String、MD5File、MD5Print、MD5Match这四个函数是供调用的。其他是用来辅助这几个函数的子函数。 2、MD5String为加密字符串。 3、MD5File为加密这个文件。 4、MD5Print是将加密后的密文转换成字符串。 5、MD5Match是用来比较密文是否一致。-DELPHI MD5 encryption 1, MD5String, MD5File, MD5Print, MD5Match the four function is called for. The other is used to these auxiliary function Functions. 2, MD5String for the encrypted string. 3, MD5File encrypted the document. 4, MD5Print is encrypted ciphertext converted into a string. 5, MD5Match ciphertext is used to compare whether they are consistent.
Platform: | Size: 9216 | Author: 韩夜 | Hits:

[Delphi VCLSocket-Msg

Description: delphi中的SOCKET使用的简单程序-delphi in SOCKET easy to use program
Platform: | Size: 445440 | Author: yyh | Hits:

[Delphi/CppBuilderMRP

Description: 生产系统MRP源代码 主要教导大家如何运用Delphi语言设计MRP基本的功能-MRP production system source code to teach you how to use the main language of the design of Delphi basic MRP functionality
Platform: | Size: 1445888 | Author: 方晋伟 | Hits:

[SMSSMSAPI

Description: 找不到的移动MAS平台API接口源文件,有JAVA版、有DELPHI版,欢迎使用。-The mobile MAS platform API interface, the source document, JAVA version, with DELPHI version, Welcome.
Platform: | Size: 5457920 | Author: jackLU | Hits:
« 12 3 4 5 »

CodeBus www.codebus.net