<?xml version='1.0' encoding='gb2312'?>
<rss version='2.0'>
<channel>
<title>DelphiBox</title>
<description>Delphi Box Articles</description>
<link>http://www.2ccc.com/</link>
<language>zh-cn</language>
<copyright>Copyright 2004, www.2ccc.com</copyright>
<webMaster>root@2ccc.com</webMaster>
<docs>http://www.2ccc.com/rss.asp</docs>
<generator>Rss Generator By www.2ccc.com</generator>
<item>
<title><![CDATA[AutoUpgrader Pro v5.0.2 (官方试用版)]]></title>
<link>http://www.2ccc.com/article.asp?articleid=4741</link>
<author>yangzh </author>
<description><![CDATA[Advanced AutoUpgrader 组件允许建立一个自动更新程序的软件只需写入一行代码，它包含一个升级向导可以使用本机语言。
当前版本可翻译25种语言：
English, Spanish, German, French, Russian, Portuguese, Italian,Dutch, Danish, Finnish, Chinese 等。
如果你想自定义向导，可以用组件提供的众多的事件来完成。

这里提供下载的是官方试用版。]]></description>
<comments>下载:313 浏览:1681</comments>
<pubDate>Fri, 25 Apr 2008 16:04:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[DelForExp单文件版]]></title>
<link>http://www.2ccc.com/article.asp?articleid=4740</link>
<author>ruowo </author>
<description><![CDATA[此文件只是 DelForExp的单文件版本 稍作改动只为使用着更方便而言，
其实 DelForExp 应该包含单文件版的，只不过我没有找到，所以就根据其代码自己DIY了一份。
----------
Delphi源代码格式化单文件版
使用 DelForDLL 核心
支持批量格式化，文件中只实现了拖放增加文件,支持文件和文件夹
制作：若我 QQ：86287344]]></description>
<comments>下载:379 浏览:1265</comments>
<pubDate>Fri, 25 Apr 2008 16:04:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[DBGridEh和dbgrid导出]]></title>
<link>http://www.2ccc.com/article.asp?articleid=4738</link>
<author>xiongrubin </author>
<description><![CDATA[uses  ComObj
如果你用DBGrid把数据显示出来，不管你用什么数据库，都可以导出到Excel表里！   
    
  uses   ComObj;   
    
  procedure   TSearchinforfrm.Button11Click(Sender:   TObject);   
  var   
      eclApp,WorkBook:olevariant;   
      xlsFileName:string;   
      i,j:integer;   
  begin   
    
      if   SaveDialog1.Execute   then   
          xlsFileName:=SaveDialog1.FileName;   
    
          try   
          eclApp:=CreateOleObject('Excel.Application');   
          WorkBook:=CreateOleObject('Excel.Sheet');   
          except   
          Application.MessageBox('系统没有安装Microsoft   Excel','Microsoft   Excel',MB_OK+MB_ICONWarning);   
          Exit;   
          end;   
    
          try   
          WorkBook:=eclApp.workbooks.Add;   
          for   i:=0   to   DBGrid1.Columns.Count-1   do   
          begin   
          //这里可以更改列名，用if   ...   then进行判断和指定列名   
          eclApp.Cells(1,i+1):=DBGrid1.Columns[i].FieldName;   
          end;   
    
          DBGrid1.DataSource.DataSet.First;   
          j:=2;   
          while   not   DBGrid1.DataSource.DataSet.Eof   do   
          begin   
          for   i:=0   to   DBGrid1.DataSource.DataSet.FieldCount-1   do   
          begin   
          eclApp.Cells(j,i+1):=DBGrid1.DataSource.DataSet.Fields[i].Value;   
          end;   
          DBGrid1.DataSource.DataSet.Next;   
          inc(j);   
          end;   
    
          WorkBook.SaveAS(xlsFileName);   
          WorkBook.close;   
          except   
          ShowMessage('文件导出失败！');   
          Exit;   
          end;   
          Application.MessageBox('保存成功!','恭喜',MB_OK   +   MB_ICONINFORMATION);   
  end;]]></description>
<comments>下载:336 浏览:2592</comments>
<pubDate>Wed, 23 Apr 2008 16:04:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[DevExpress VCL Auto-Installer v1.0]]></title>
<link>http://www.2ccc.com/article.asp?articleid=4737</link>
<author>netrobo </author>
<description><![CDATA[DevExpress VCL 是一套用于 Delphi 和 C++ Builder 的组件包，其包含大约 29 种子组件，功能丰富。但因组件众多，并且从网上获得的安装包一般都是一个压缩文件，需要进行层层解压并安装其中的若干 DPK/BPK 文件才能安装成功，非常之麻烦。

一直想写一个工具使这一切自动化，最近终于搞定： DevExpress VCL Auto-Installer 的第一个版本发布了，他可以实现如下功能：

    * 自动解压 DevExpress 压缩包，并安装其中组件到选定的 IDE 中；
    * 安装前可自动删除已安装组件；
    * 自动添加库搜索路径，卸载时自动删除；
    * 随时可卸载已安装的 DevExpress 组件。

通俗点的解释就是“一键安装，一键卸载”，呵呵~~

本程序支持 Delphi 5/6/7/2005/2006/2007 和 C++ Builder，但因个人开发环境有限，目前只在 Delphi 7 和 Delphi 2007 及 Windows XP 平台下做过完全测试，如在其它环境下出现问题，烦请告之。

关于本程序的其它信息可查看 Readme 文件。
如要获取该程序的最新版本或报告 Bug 请访问以下地址：

http://www.faceker.com]]></description>
<comments>下载:952 浏览:1555</comments>
<pubDate>Wed, 23 Apr 2008 16:04:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[TDBF控件，本地数据访问组件]]></title>
<link>http://www.2ccc.com/article.asp?articleid=4736</link>
<author>killwolf </author>
<description><![CDATA[TDBF是一个用于Delphi，BCB，Kylix和FreePascal的本地数据访问组件。它允许你创建非常精简的数据库程序，而不需要任何专门的安装程序。DB引擎代码直接编译进你的可执行程序。http://sourceforge.net/projects/tdbf/


TDBF is a native data access component for Delphi, BCB, Kylix, FreePascal. It allows you to create very compact database programs which don't need any special installer programs. The DB engine code is compiled right into your executable./////tDBF component for Delphi and BCB-

目标用户：Developers
开源协议：GNU Library or Lesser General Public License (LGPL)
操作系统： 32-bit MS Windows (95/98), 32-bit MS Windows (NT/2000/XP), All 32-bit MS Windows (95/98/NT/2000/XP), All BSD Platforms (FreeBSD/NetBSD/OpenBSD/Apple Mac OS X), All POSIX (Linux/BSD/UNIX-like OSes), Linux, Win2K, WinXP
编程语言：Delphi/Kylix, Pascal
主题：Database Engines/Servers
Translations: English
用户接口：Win32 (MS Windows), X Window System (X11) 
新的版本到这里下载：
http://tdbf.sourceforge.net/
最新的是693，由于我安装失败，就暂不上传。]]></description>
<comments>下载:201 浏览:845</comments>
<pubDate>Wed, 23 Apr 2008 16:04:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[Delphi 7 Lite v2.02 集成D2007RTL]]></title>
<link>http://www.2ccc.com/article.asp?articleid=4735</link>
<author>dejoy </author>
<description><![CDATA[盒子上还没有这个d7的经典之一的版本，就发上来了

速度极快的D7Lite,IDE 运行速度快,编译后的程序速度也比原来的快多了(它用了D2007的RTL)!爽呆了!强烈推荐!

DELPHI 7 LITE v2.02 [SP1.1 Integrated]

Delphi 7 Lite is a standard installation of Delphi 7 Enterprise in which:

可选安装:
- [Optional] 安装 delphi IDE 
- [Optional] 安装 command-line compiler(dcc32, brcc32, convert)
- [Optional] install the Source files.
- [Optional] 替换成 D11(D2007) RTL(FastMM and FastCode Core) and With MMX for FastMM core. 
- [Optional] install DUnit 9.30b Test Frame (VCL\DUnit)
- [Optional] install FastMM 4.78 (VCL\FastMM)
- [Optional] install Want builder tool instead of the Make
- [Optional] install the GExperts 1.31.
- [Optional] install the DelphiSpeedUp Experts 2.51 to speed up IDE.
- [Optional] The help system only includes the reference materials. These are:
　- Developing Database Applications
　- Delphi Object and Component Reference
　- Delphi Language Guide
　- Delphi Compiler Messages and Warnings
　- Delphi Compiler Options and Directives
　- Microsoft Win32 Programmer's Reference
　- Glossary
- Update 1.1 has been installed (version of the IDE is 7.0.8.1), these patches are applied:
　Update ActionBar to 7.01
　mssqlupdate.zip
- Unneeded files have been removed.
Delphi 7 Lite includes the following designtime packages:

IDE 
- Borland ActionBar Components
- Borland Standard Components
- Borland Module Diagram Editview
- Borland Editor Script Enhancements

IDE\Components\Standard
- Delphi 1.0 Compatibility Components

IDE\Components\Database
- Borland Database Components

IDE\Components\Database\ADO
- Borland ADO DB Components

IDE\Components\Database\BDE (NOTE: No BDE engine installed!)
- Borland BDE DB Components

IDE\Components\Database\DBX (NOTE: install the interbase, mssql, mysql driver only)
- Borland dbExpress Components
TIPS: delphi32.exe -rYourName hould your own packages.

v2.02 
　* [Bug] Can not convert the dfm to txt.
　* Update the DelphiSpeedUp to 2.51
　* Update the DUnit to 9.30b
　+ webappdbg.exe for web application debug.
　+ FastMM 4.78
　+ Replace the D7 RTL to D11 RTL and With MMX for FastMM core
　- delphient70.bpl: for more speedup.]]></description>
<comments>下载:1445 浏览:2636</comments>
<pubDate>Tue, 22 Apr 2008 16:04:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[用Delphi制作内存补丁]]></title>
<link>http://www.2ccc.com/article.asp?articleid=4734</link>
<author>hellour </author>
<description><![CDATA[外挂制作含源代码及程序]]></description>
<comments>下载:782 浏览:2317</comments>
<pubDate>Tue, 22 Apr 2008 16:04:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[VCLSkin v4.94 完整源码]]></title>
<link>http://www.2ccc.com/article.asp?articleid=4733</link>
<author>freez </author>
<description><![CDATA[著名的换肤组件VCLSkin，完整源码版！VCLSkin是可为C++Builder和Delphi应用扩展用户界面换肤功能的VCL库，与其他皮肤控件不同的是，它能使用VCL组件为现有应用程序换肤而无需修改源代码。]]></description>
<comments>下载:2503 浏览:3050</comments>
<pubDate>Mon, 21 Apr 2008 16:04:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[DELPHI笔记及代码]]></title>
<link>http://www.2ccc.com/article.asp?articleid=4731</link>
<author>ruiki </author>
<description><![CDATA[帮同学上传;但愿对想学习DELPHI的人有所帮助;
同时在计算机岗位上"奉献出一切"的同仁表示致敬!

内有一个OutLookBtn的按钮控件;
同时一个刷屏投票代码,在去年的网络投名状投票中,刷到第一名的成绩;(后来);.
多年来,这位同学的DELPHI学习笔记及代码收录;但愿有知...]]></description>
<comments>下载:2109 浏览:2628</comments>
<pubDate>Sat, 19 Apr 2008 16:04:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[DELPHI 10 LITE V4.0 SP2 便携版]]></title>
<link>http://www.2ccc.com/article.asp?articleid=4730</link>
<author>wwwlover </author>
<description><![CDATA[ DELPHI 10 LITE V4.0 SP2 便携版 
下载地址：http://www.oyksoft.com/downinfo/3508.html
绝对可以下。

安装后版本为:10.0.2558.35231

不过发现一个问题：这个版本中在调试状态下不支持鼠标移上去会显示变量的结果。不知道为什么？]]></description>
<comments>下载:627 浏览:1901</comments>
<pubDate>Fri, 18 Apr 2008 16:04:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[TMS Component Pack v4.6.0.7 (完整源码)]]></title>
<link>http://www.2ccc.com/article.asp?articleid=4728</link>
<author>dejoy </author>
<description><![CDATA[TMS Component Pack是超过275种用于Delphi和C++Builder组件的组件包，可以帮助你提高生产效率，节省投资和时间。]]></description>
<comments>下载:931 浏览:1095</comments>
<pubDate>Thu, 17 Apr 2008 16:04:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[DevExpress v*.34 FullSource]]></title>
<link>http://www.2ccc.com/article.asp?articleid=4727</link>
<author>dejoy </author>
<description><![CDATA[DevExpress v*.34 完整源码版.

不用多介绍,用Delphi/BCB的人几乎无人不晓.转自窑洞
原汁原味,未做修改,多层压缩包,只是解压时有些麻烦.

如果站长需要添加文件并重新压缩的话,请压缩为7Z格式吧,经测试可以从RAR的157MB缩小到7z的99MB,减肥效果明显.我把RAR和7Z格式都上传了,请选择使用.上传花了我2个多小时,呵呵~~]]></description>
<comments>下载:1343 浏览:1808</comments>
<pubDate>Thu, 17 Apr 2008 16:04:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[jcl-2008-04-18(1.102) + JVCL3-2008-04-18(3.33) 超级开源控件包]]></title>
<link>http://www.2ccc.com/article.asp?articleid=4726</link>
<author>dejoy </author>
<description><![CDATA[jcl-2008-04-18 + JVCL3-2008-04-18 SVN当日构建版本.
超级开源控件包,超过600个各种控件包,几乎包括所有方面的,其中有好些重量级的控件是中国人写的哦~.
具体版本是jcl 1.102 R2363,jvcl 3.33
需要每日构建版本的也可到官网jvcl.sourceforge.net下载.]]></description>
<comments>下载:1310 浏览:1949</comments>
<pubDate>Thu, 17 Apr 2008 16:04:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[ CVS 服务器程序 CVSNT 2.0.58d + CVS 客户端工具 TortoiseCVS 1.8.14(支持多语言)]]></title>
<link>http://www.2ccc.com/article.asp?articleid=4725</link>
<author>dejoy </author>
<description><![CDATA[ CVS 服务器程序 CVSNT 2.0.58d + CVS 客户端工具 TortoiseCVS 1.8.14
 源代码版本管理工具,经典稳定的版本组合.相关使用教程和说明网上一大堆,自己找吧,没有一起发了.
 
 CVS 服务器程序 CVSNT 2.0.58d
 CVS WindowsNT 服务器端程序，提供基于 TCP/IP 协议的 CVS 服务。
官方网站：http://www.cvsnt.org
该软件为自由软件！
 
 CVS 客户端工具 TortoiseCVS 1.8.14
最好用的 CVS 客户端工具，所有功能全部集成在资源管理器中，支持 SSH 访问，使用方便，推荐使用！
官方网站：http://www.tortoisecvs.org/
该软件为自由软件！

 虽然两者都有更新的版本,但这个版本小巧而且功能已经足够用了,两者加起来才有7.7MB,而站上似乎也没有就发上来了(查了下有个2004年发的,两个分开).
 最新的版本cvsnt-2.5.03.2382有4.2MB,TortoiseCVS-1.10.6有15.5MB,都太大了,加起来近20MB,追新的朋友可以自己上官网下载.]]></description>
<comments>下载:452 浏览:557</comments>
<pubDate>Thu, 17 Apr 2008 16:04:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[CnWizards_0.8.3.377_Unstable(IDE专家包)]]></title>
<link>http://www.2ccc.com/article.asp?articleid=4724</link>
<author>dejoy </author>
<description><![CDATA[CnWizards 0.8.3.377 Unstable (IDE专家包) 

非常不错的东西！今天看到有新版本顺便放上来了,原版地址http://www.cnpack.org

==========
一、什么是 CnWizards？
==========
CnWizards 是 CnPack 项目组的主力产品之一，中文全称是 CnPack IDE 专家包，
英文全称是 CnPack IDE Wizards，简称 CnWizards。CnWizards 是一组集成在 
Delphi/C++Builder/BDS 的 IDE 中，用于增强 IDE 功能、提高 IDE 的可用性及
开发效率的免费、开放源码工具。

==========
二、CnWizards 主要面对哪类用户群？
==========

CnWizards 产品主要面对使用 Delphi 5 6 7 8、C++Builder 5 6 与 BDS 2005 
2006、RAD Studio 2007的开发者。
CnWizards 目前的发布版本包括简体中文、繁体中文、英语三种语言。

==========
三、CnWizards 主要有哪些功能？
==========

CnWizards 在 Delphi / C++Builder / BDS 的 IDE 中提供了十多个可独立设置的
子专家，数十种功能，主要包括：

  * 代码输入助手
  * 增强的单元窗体列表功能
  * TabOrder 设置专家
  * 窗体设计器的浮动工具栏
  * MSDN 帮助集成功能
  * 代码编辑器工具栏与功能扩展
  * 工程相关的扩展功能
  * 组件面板多行显示支持
  * 窗体置顶与折叠功能
  * 源代码统计功能
  * 引用单元清理
  * 其他大量增强与改进

关于界面截图可参考：http://www.cnpack.org/images/cnwizards.gif
此外，CnWizards 还附带下列独立运行的小工具：

  * CnWizards 设置导入导出工具
  * DFM 窗体转换工具
  * IDE 配置备份/恢复和清除打开文件历史工具
  * 调试信息输出单元 CnDebug 与调试信息查看器 CnDebugViewer
  * ASCII 字符表
  * IDE 外部专家管理工具
  * 源码模块关系分析工具

CnWizards 以与开源协议兼容的 CnPack 协议发布，因而是开源、免费的。
任何个人或商业团体可以免费使用 CnWizards，无需支付任何费用。

与一般的组件包不同，CnPack 开发包除了有大量的组件外，还包括 IDE 专家包、属性编辑器、组件编辑器、公共窗体库、版本控制及其它辅助工具等，在 CnPack 的设计中，包含以下内容：

不可视工具组件包。 
用户界面控件包。 
符合中国人使用习惯的数据库、报表组件包。 
网络通讯组件包 
本地化、扩展的属性、组件编辑器。 
IDE 专家工具包。 
CnVCS 版本控制系统。 
本地化、功能强大的数据桌面、资源编辑器、组件编写工具等辅助开发工具。 
大量可重用的窗体模板库。]]></description>
<comments>下载:242 浏览:585</comments>
<pubDate>Thu, 17 Apr 2008 16:04:00 GMT</pubDate>
</item>
</channel></rss>