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
Delphi通过MSHTML实现一个HTML解析类,delphi7可用,快速解析html代码
2023-01-03 17:17:38 302KB delphi html 解析 GET
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
Delphi获取CPU、硬盘等硬件温度信息,类似CPU-Z的一个软件,检测硬件信息的,主要是检测获取硬件温度,包括CPU和硬盘、内存等,运行界面如上所示。
2023-01-02 12:56:33 717KB Delphi源码-系统相关
1
支持delphi2010 c++build 的串口控件,4.11f版,有例子,方便使用
2023-01-01 23:20:37 557KB delphi 2010 串口
1
delphi程序员必备工具,xe6,cnwizards xe6 delphi
2022-12-30 21:21:58 2.07MB cnwizards xe6 delphi
1
cnpack CnWizards delphi XE6
2022-12-30 21:04:29 9.61MB cnpack CnWizards delphi
1
CodeGear.Delphi.2007.RTM.Inc.Update4.v11.0.2902.10471.Lite.v1.4.exe
2022-12-30 13:18:46 83.76MB Delphi
1
一款使用Delphi模拟的LED电子屏滚动程序,输入文字即可实现仿LED屏的滚动效果,支持调整字体、字体颜色、滚动速度和滚动效果(左移、右移、打字)
2022-12-30 08:09:58 174KB Delphi源码-图形处理
1