Delphi7下使用FastMM4】的更多相关文章

1> 将文件Replacement BorlndMM DLL/Precompiled/for Delphi IDE/Performance/BorlndMM.dll,替换掉Delphi/Bin下的相应文件,完成对IDE的提速:2> 设置路径:Enviroment->Library->Directories-> Library Path 添加FassMM路径(在Delphi安装目录下建立FastMM文件夹,“C:\Program Files\Borland\Delphi7\Fa…
可能 delphi7 下稳定的最后一版本 GDIPLUS 万一的 blog 说"终于, Delphi XE2 携带 GDI+ 库了 使用了较早的 http://www.progdigy.com"但这个网址已经下不了了,而 http://www.bilsen.com/gdiplus 的又要 delphi2009 以后版本,另外 IGDIPlus 又有比较严重的 bug,得了放一个当前用的上来吧,不知道有没有 bug grp.DrawPath(pen,path); //这里有个 gdi+…
Delphi7下实现HTTP的Post操作 unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, IdBaseComponent, IdComponent, IdTCPConnection, IdTCPClient, IdHTTP, StdCtrls, Buttons, OverbyteIcsWndControl, Overbyt…
DELPHI7下SUPPEROBJECT遍历子对象的name和value var ite: TSuperAvlIterator; while ite.MoveNext do begin if ite.Current.Name = 'table' then begin tablename := ite.Current.Value.AsString; // 取表名 end else begin if lname = '' then lname := ite.Current.Name else lna…
1.启动delphi7.2.File-->Open Project ...打开TMS component 源目录下的“tmsd7.bpg”. 3.在打开的窗口列表中,依次在各选项上点击鼠标右键,选择“Install”. 4.将源目录下所有的pas文件.dfm文件及“tmsdefs.inc”文件拷贝到“c:\program files\borland\delphi7\lib”下. 5.将源目录下的advgrid.res asgres.res asgspin.res的文件拷贝到“c:\program…
uses superobject; procedure TForm1.FormCreate(Sender: TObject); var aJson: ISuperObject; aSuperArray: TSuperArray; i:Integer; begin {1.赋初值} aJson:=SO('{"zoo":"涂磊动物园","animals":[{"name":"猴子","year"…
http://blog.sina.com.cn/s/blog_4dbbf76f01000anz.html delphi编写DLL 下面在delphi中编写一个简单的dll,在该dll中只有一个max函数,返回2个数中的大数(Delphi 5.0) .New->DLL;取名为DLL_,编写代码: ; uses SysUtils, Classes; {$R *.RES} function max(x,y:integer):integer;stdcall; begin if(x>y) then ma…
http://www.cnblogs.com/kongchao/archive/2009/10/27/1590479.html 核心提示:内存泄漏经常出现在本地代码中,特别是多线程和发生异常的情况下,这时候在delphi环境下,FastMM4就特别有用....FastMM4是非常高效可靠的内存管理器,用来替代久久不更新的borland内存管理器是最好的.地址:http://sourceforge.net/projects/fastmm/ 调试过程如下: 1.打开FastMM4的调试功能,首先在自…
http://bbs.csdn.net/topics/380045353 用DelphiXE在WIN2008下编写一个访问WebServices的DLL ws.dll,只有一个输出函数,如下: function Login(URL:PAnsiChar; UserName: PAnsiChar; UserPass: PAnsiChar; LocalLogin: Boolean):PAnsiChar;var   tStr:String;begin try            Result := P…
基于Delphi7 WebService 在Apache 发布及Apache 使用说明 qq:394251165 前段时间,需要将基于Delphi7 WebService 发布在Apache, 很是苦脑, 通过研究以及在Google 上搜索到的资料终于解决了问题. 希望能对你有帮助 开发环境: Delphi 开发环境是 Delphi7 Apache 版本是 apache_2.2.8 Delphi 7  以及Delphi6 支持的 WebService 中Apache 版本是 2.0 的, 生成的…