historyfile.pas

来自「pasa人力资源考勤管理系统」· PAS 代码 · 共 49 行

PAS
49
字号
unit historyfile;

interface

uses
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  Grids, DBGrids, ExtCtrls, StdCtrls, ComCtrls, DBCtrls;

type
  TFormhistoryfile = class(TForm)
    Panel1: TPanel;
    DBGrid1: TDBGrid;
    exit: TButton;
    ComboBox1: TComboBox;
    StatusBar1: TStatusBar;
    DBMemo1: TDBMemo;
    Splitter1: TSplitter;
    procedure exitClick(Sender: TObject);
    procedure FormClose(Sender: TObject; var Action: TCloseAction);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Formhistoryfile: TFormhistoryfile;

implementation

uses main,datamol;

{$R *.DFM}

procedure TFormhistoryfile.exitClick(Sender: TObject);
begin
       formmain.outlook1.visible:=true;
       close;
end;

procedure TFormhistoryfile.FormClose(Sender: TObject;
  var Action: TCloseAction);
begin
    formhistoryfile:=nil;
    action:=cafree;
end;

end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?