jgyhzjlxfxmx.pas
来自「ProviceSystem-公积金监管系统中心端」· PAS 代码 · 共 50 行
PAS
50 行
unit JGYhZjLxFxMx;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ComCtrls, ImgList, ToolWin, Grids, DBGrids;
type
TFormJGYhZjLxFxMx = class(TForm)
CoolBar1: TCoolBar;
ToolBar1: TToolBar;
ImageList1: TImageList;
ImageList2: TImageList;
ToolButton1: TToolButton;
ToolButton2: TToolButton;
ToolButton3: TToolButton;
ToolButton4: TToolButton;
DBGrid1: TDBGrid;
procedure ToolButton4Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
procedure LoadInfo(const sCommDB,sCity,sDpt: String;
const dtBDate,dtEDate: TDate);
end;
var
FormJGYhZjLxFxMx: TFormJGYhZjLxFxMx;
implementation
{$R *.dfm}
//Uses DataModule;
uses uDMFunc;
procedure TFormJGYhZjLxFxMx.LoadInfo(const sCommDB, sCity, sDpt: String;
const dtBDate, dtEDate: TDate);
begin
BankroolFlowDetail(sCommDB,sCity,sDpt,dtBDate,dtEDate,DBGrid1);
end;
procedure TFormJGYhZjLxFxMx.ToolButton4Click(Sender: TObject);
begin
close;
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?