delphi7 怎么让button按钮跟着鼠标点击dbgrideh数据行移动 在 dbgrid的DBGridCellClick 事件中加上: Delphi/Pascal code 1 2 3 4 5 6 7 8 9 10 11 var x, y : integer ; P: TPoint; begi ...
分类:
移动开发 时间:
2017-07-25 22:31:23
阅读次数:
371
点击标题栏实现数据排序 DbGridEh.OptionsEh.dghAutoSortMarking:=true; DbGridEh.OptionsEh.dghMultiSortMarking:=true; DbGridEh.Columns.Title.TitleButton:=true; 以上设置完 ...
分类:
数据库 时间:
2017-06-27 10:53:19
阅读次数:
223
unit UUpdateLeiBie; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.... ...
分类:
其他好文 时间:
2017-06-23 18:27:17
阅读次数:
237
1、将dBGridEh.FooterRowCount := 1 2、将DBGridEh.SumList.Active := True; 3、将Columns[要求和的字段].Footer.ValueType := vtSum;就行了 在FormCloseQuery事件中,将SumList.Activ ...
分类:
数据库 时间:
2017-06-12 21:08:32
阅读次数:
258
什么都不用说了,ERP你懂的。一张报表,不同的客户都可以调死你。直接上图 通过这个设置界面,直接生成参数调整报表所用的DBGridEh。对,是DBGridEh,不是DBGrid,也不是CXGrid。 然后再将这些参数生成一个JSON,保存到数据库。下次打开,直接取这个JSON就可以了。这样,客户可以
1、说明最近加入了一个项目组,使用的开发工具是delphi6,想想又要开始搞这个工具有点小忧伤,但没办法谁让咱就是个打杂的尼。。。的需求是显示一个类似于Word/excel的那种表格,可以合并列等。。本来想用DBGridEh去解决,只是试了半天发现不能合并列,我了个去。。然后想到了网页来处理,但是尝...
一、点击标题自动排序1.在optioneh中设置:AutosortMarking:=True2.设置DbGridEh的属性:(不一定总要设置,与使用的数据连接有关)sortlocal:=True;3.uses 单元Ado------ehlibADoTclientData------ehlibCDSB...
分类:
数据库 时间:
2015-09-20 01:45:49
阅读次数:
272
procedure TForm1.N1Click(Sender: TObject);varGridtoExcel: TDBGridEhToExcel;begintryGridtoExcel := TDBGridEhToExcel.Create(nil);GridtoExcel.DBGridEh :=...
分类:
其他好文 时间:
2015-06-24 20:31:53
阅读次数:
113
uses
Windows,Messages,SysUtils,Variants,Classes,Graphics,Controls,Forms,
Dialogs,ExtCtrls,StdCtrls,Registry,Des,DB,ADODB,RzTabs,AdvGlowButton,
DBGridEhGrouping,GridsEh,DBGridEh,RzPanel,DBGridEhImpExp,ExtDlgs,Mask,
RzEdit,RzButton,Diskid;
//-----------------..
分类:
其他好文 时间:
2015-04-24 16:33:40
阅读次数:
176
DbgridEh 对应数据集ADOTable1,其中有个字段 部门编码,另外增加查找字段比如 部门名称ADOTable2对应查找数据集,包含 部门编码和 部门名称字段。ADOTable1 打开后,再运行ADOTable2.Close;ADOTable2.Open;后记录不是在第一个,需要再ADOTa...
分类:
数据库 时间:
2015-03-02 12:52:30
阅读次数:
219