chengji.pas
来自「VB编写的考试系统和论文」· PAS 代码 · 共 36 行
PAS
36 行
unit chengji;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, Buttons, DB, Grids, DBGrids, ADODB, StdCtrls;
type
TForm11 = class(TForm)
GroupBox1: TGroupBox;
DBGrid1: TDBGrid;
DataSource1: TDataSource;
SpeedButton1: TSpeedButton;
ADOQuery1: TADOQuery;
procedure SpeedButton1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form11: TForm11;
implementation
uses denglu;
{$R *.dfm}
procedure TForm11.SpeedButton1Click(Sender: TObject);
begin
close();
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?