unit14.~pas

来自「数字电路故障诊断系统」· ~PAS 代码 · 共 45 行

~PAS
45
字号
unit Unit14;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, DB, DBTables, Grids, DBGrids, StdCtrls;

type
  Tlibview = class(TForm)
    DataSource1: TDataSource;
    DBGrid1: TDBGrid;
    Table1: TTable;
    Label1: TLabel;
    Button1: TButton;
    Button2: TButton;
    Button3: TButton;
    procedure Button1Click(Sender: TObject);
    procedure Button2Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  libview: Tlibview;

implementation

{$R *.dfm}

procedure Tlibview.Button1Click(Sender: TObject);
begin
    close;
end;

procedure Tlibview.Button2Click(Sender: TObject);
begin
 //  table1.TableName:='故障信息表.db';

end;

end.

⌨️ 快捷键说明

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