基于Delphi7&openGauss2.0开发社区信息管理系统的配套程序成品,完全免费,请参考说明书使用,代码可联系本人获取。
2023-01-04 11:16:42 3MB 数据库 delphi
1
Delphi将Stringgrid指定行添加到Memo控件中,选中StringGrid中的行,点击右下角的“添加”按钮,即可将选中的StringGrid行数据添加到下边的Memo控件中显示。部分源代码如下:   procedure TForm1.FormCreate(Sender: TObject);   begin    StringGrid1.Cells[0,0] := '商品编号';    StringGrid1.Cells[0,1] := 'cc10011';    StringGrid1.Cells[0,2] := 'cc10012';    StringGrid1.Cells[0,3] := 'cc10013';    StringGrid1.Cells[0,4] := 'cc10014';    StringGrid1.Cells[1,0] := '商品名称';    StringGrid1.Cells[1,1] := '苹果';    StringGrid1.Cells[1,2] := '香蕉';    StringGrid1.Cells[1,3] := '西红柿';    StringGrid1.Cells[1,4] := '西瓜';    StringGrid1.Cells[2,0] := '商品数量';    StringGrid1.Cells[2,1] := '200';    StringGrid1.Cells[2,2] := '150';    StringGrid1.Cells[2,3] := '300';    StringGrid1.Cells[2,4] := '130';    StringGrid1.Cells[3,0] := '商品金额';    StringGrid1.Cells[3,1] := '$5.00';    StringGrid1.Cells[3,2] := '$4.50';    StringGrid1.Cells[3,3] := '$1.50';    StringGrid1.Cells[3,4] := '$6.00';   end;   procedure TForm1.Button1Click(Sender: TObject);   var    i,col,row: Integer;   begin    row := StringGrid1.Row;    for col := 0 to StringGrid1.ColCount - 1 do    Memo1.Lines.Add(StringGrid1.Cells[col,row]);   end;
2023-01-03 19:53:57 6KB Delphi源码-控件组件
1
原版Chrome(谷歌浏览器) for Mac, macOS, 版本 108.0.5359.124(正式版本) (x86_64)
2023-01-03 18:17:33 202.27MB chrome
1
Delphi通过MSHTML实现一个HTML解析类,delphi7可用,快速解析html代码
2023-01-03 17:17:38 302KB delphi html 解析 GET
1
联上互联网,直接运行即可。
2023-01-03 14:52:38 616B 谷歌浏览器
1
StyleControls是针对开发者打造的一款强大皮肤控件,它包含了独特和高级的可以扩展标准的VCL控件,基于BusinessSkinForm VCL和DynamicSkinForm VCL,可以与Delphi XE以及C++Builder编程软件完美兼容,软件丰富的元素和控件供用户选择,包含一些主题风格、高级按钮以及复选框等,支持64位操作系统。
2023-01-02 21:41:05 1.34MB Delphi
1
大名鼎鼎的delphi c++builder 皮肤控件可以做出非常cool的界面,源代码版本,值得拥有
2023-01-02 19:08:01 3.99MB AlphaControls delphi c++builder source
1
Google Chrome for MacOS. Work well in MacOS 10.12 and plus.
2023-01-02 17:42:33 68.5MB Google Chrome 浏览器 Mac
1
windows系统: 只需以下三步解决idea中的Translation翻译无法使用: 下载->解压->双击
2023-01-02 17:03:49 4.45MB 在线翻译
1
Delphi获取CPU、硬盘等硬件温度信息,类似CPU-Z的一个软件,检测硬件信息的,主要是检测获取硬件温度,包括CPU和硬盘、内存等,运行界面如上所示。
2023-01-02 12:56:33 717KB Delphi源码-系统相关
1