indy为优秀的网络组件,此为Delphi7直接安装版
2021-10-17 21:13:17 3.76MB Indy 10 for Delphi7
1
使用Delphi7的拟合曲线demo程序,在Delphi7下可编译使用,其他版本未测试。。。
2021-10-16 20:38:20 1.09MB delphi 拟合 Delphi7
1
VCLZipPro451_1安装包,含delphi调用案例源代码,已经在delphi7下编译测试通过。
2021-10-15 23:16:59 1.18MB VCLZipPro delphi 压缩解压缩
1
利用Delphi7.0存取配置文件实现Oracle数据库的远程连接.pdf
2021-10-14 16:12:27 161KB Oracle 数据库 关系型数据库 参考文献
适合delphi7使用的第三方控件pngimage,带源码的.pas文件。
2021-10-12 11:35:49 216KB pngimage delphi7 透明 图片
1
Delphi7-10_DirectUI 支持Unicode
2021-10-11 14:02:26 1.62MB Delphi7 DirectUI Delphi2010
1
很好很经典的Delphi入门级别的材料书,是高清版的pdf。适合初学人员用
2021-10-11 08:51:27 34.06MB delphi
1
TMS全套控件,支持delphi7~XE2
2021-10-09 17:54:51 20.27MB TMS delphi7 delphi xe2
1
delphi7通过调用外部dll实现HMACSHA(用VC基于openssl写了个dll)
2021-10-08 14:00:08 1.39MB delphi hmac dll
1
Delphi7.0 向XML中添加RTTI信息,这个例子挺简单,希望大家喜欢,面向Delphi新手的,高手请绕道哦,下面是本例Delphi向XML中添加RTTI信息的关键性代码:   procedure TForm1.ComponentToDOM(iNode: IXmlNode; Comp: TPersistent);   var    nProps, i: Integer;    PropList: PPropList;    Value: Variant;    newNode: IXmlNode;   begin    nProps := GetTypeData (Comp.ClassInfo)^.PropCount;    GetMem (PropList, nProps * SizeOf(Pointer));    try    GetPropInfos (Comp.ClassInfo, PropList);    for i := 0 to nProps - 1 do    begin    Value := GetPropValue (Comp, PropList [i].Name);    NewNode := iNode.AddChild(PropList [i].Name);    NewNode.Text := Value;    if (PropList [i].PropType^.Kind = tkClass) and (Value 0) then    if TObject (Integer(Value)) is TComponent then    NewNode.Text := TComponent (Integer(Value)).Name    else    ComponentToDOM (newNode, TObject (Integer(Value)) as TPersistent);    end;    finally    FreeMem (PropList);    end;   end;
2021-10-05 07:50:02 8KB Delphi源码-文件操作
1