StringGrid控件中实现显示Excel形式的合并单元格效果,也可以用AdvStringGrid,XLGRID等第三方控件,不过要破解比较麻烦。 原理是通过重载 OnDrawCell 事件procedure TForm1.SGDrawCell(Sender: TObject; ACol, ARow: Integer;Rect: TRect; State: TGridDrawState);来实现重新显示改变设计好的格式效果...
2023-10-29 17:27:57 3.06MB Delphi XE10 StringGrid 合并单元格
1
StringGrid内指定列调出Combobox并给Grid赋值
2023-03-23 11:34:03 194KB Delphi StringGrid 动态 ComBoBox
1
delphi7 下已经调试通过,将stringgird数据保存为csv格式,同时将csv格式文件导入stringgird;比保存为excel格式快了很多,而且导入时间也是非常快。
2023-02-23 08:38:21 240KB GridToCsv
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
c++Builder组件StringGrid的使用说明
2022-11-23 16:59:08 246KB builder stringgrid
1
介紹有關 delphi 在 Stringgrid 中使用checkbox 技巧
2022-08-25 20:48:17 234KB delphi checkbox stringgrid
1
计算机软件-商业源码-实例139-使StringGrid中的每一格的颜色隔不相同.zip
2022-05-23 21:04:08 4KB 源码软件
计算机软件-商业源码-37 更改StringGrid控件的颜色.zip
2022-05-21 19:04:24 221KB 源码软件
使用C++ builder6,StringGrid导出到EXcel,导出新的excel文件或者模板。两个程序的代码在文档中
2022-03-16 09:47:28 52KB 导出excel C++builder StringGrid
1
C++ Builder之StringGrid表格简单示例,TStringGrid控件使用实例例子
2022-03-14 19:48:33 223KB C++Builder BCB StringGrid TStringGrid
1