▍1. delphi scene 中 heightfield 的使用例子
delphi scene 中 heightfield 的使用例子-delphi scene in the use of examples heightfield
delphi scene 中 heightfield 的使用例子-delphi scene in the use of examples heightfield
把IP地址转化成电脑名称 在D7 中 windows xp下通过-IP address of the computer name into
示范复制、排序、输出、过滤、查询、打印、压缩重整 ( Pack )、取得字段及索引信息的范例程序-demonstration copy, sort, export, filtering, query, print, compressed restructuring (Pack), to get field and index information model procedures
一个用delphi+delphiX写的贪吃蛇程序,支持存储进度,欢迎下载,修改。-A used delphi+ DelphiX Snake written procedures, to support the storage progress are welcome to download, modify.
Universal Data Access Components is a powerful tool for developing cross-database client/server applications on Borland Delphi and C++Builder. UniDAC provides a unified inferface to access popular database servers such as Oracle, Microsoft SQL Server, MySQL, PostgreSQL, SQLite, InterBase, Firebird, DB2, Microsoft Access, Advantage Database Server, Adaptive Server Enterprise, and other databases.
第1章 Delphi的基础知识第2章 Delphi的语法基础....第12章 图形图像与多媒体技术第13章 Delphi数据库编程-Chapter 1 of the basic knowledge of Delphi Chapter 2 Delphi syntax basis .... Chapter 12 graphics and multimedia technology Chapter 13 Delphi database programming
经典书籍《C++Builder核心编程》。麻烦管理员帮我开通下载功能,我急需要本网站上的labwindows/CVI方面的数据库教程,谢谢!-Classic books
Source Format_for_Delplhi delphi 代码格式化工具-Source Format_for_Delplhi delphi code format tool
Create modern-looking & feature-rich Windows applications faster with over 300 components in one money and time saving bundle
有玻璃效果的按钮控件.rar-effect of a glass button controls. Rar
可以拨打网络电话网络电话源码网络电话源码-网络电话源码网络电话源码网络电话源码网络电话源码
内存管理程序,功能与FASTMM相似,PLEASE NOTE: There are two ways to install BigBrain. You may use the memory manager code natively compiled into your EXE or you can use an included external DLL which will allow you to share memory across multiple DLLs with one central place for memory management. Using the DLL allows your application to share strings, and serves the same purpose as the ShareMem unit included with Delphi. BigBrainShareMem.dll should be 100% compatible with the DelphiMM.dll and could even simply be renamed to DelphiMM.dll to simplify deployment.-Memory management procedures, functions and FASTMM similar, PLEASE NOTE: There are two ways to install BigBrain. You may use the memory manager code natively compiled into your EXE or you can use an included external DLL which will allow you to share memory acrossmultiple DLLs with one central place for memory management. Using the DLLallows your application to share strings, and serves the same purposeas the ShareMem unit inc
DELPHI 菜单功能 DELPHI 菜单功能 -DelphiPaletteMenu.zip
IOCP完成端口详解 IOCP完成端口详解 -IOCP completion port IOCP completion port Xiang Jie Xiang Jie IOCP completion port IOCP completion port Xiang Jie Xiang Jie
Delphi 打印图形,把图片打印出来,通过这个例子,你可以学习到: strect:Trect;//定义打印输出矩形框的大小 temhi,temwd:integer; begin if DIGPrint.execute then begin temhi:=imgpic.picture.height; temwd:=imgpic.picture.width; while (temhi = printer.pageheight div 2)and //将图形放大到打印页面的1/2大小 (temwd = printer.pagewidth div 2) do begin temhi:=temhi+temhi; temwd:=temwd+temwd; end; with strect do //定义图形在页面上的中心位置输出 begin left := (printer.pagewidth -temwd) div 2; top := (printer.pageheight-temhi) div 2; right := left+temwd; bottom := top+temhi; end; with printer do begin begindoc; canvas.stretchdraw(strect,imgpic.picture.graphic); enddoc; end; end;