splb.~pas
来自「结于初学者来说这对数据库是一个很好的例子」· ~PAS 代码 · 共 36 行
~PAS
36 行
unit splb;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Grids, DBGrids, DB, DBTables, Buttons;
type
TForm4 = class(TForm)
Label1: TLabel;
T_splb: TTable;
DS_splb: TDataSource;
DBGrid1: TDBGrid;
SpeedButton1: TSpeedButton;
procedure SpeedButton1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form4: TForm4;
implementation
{$R *.dfm}
procedure TForm4.SpeedButton1Click(Sender: TObject);
begin
close;
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?