spzldwform.~pas
来自「单机进销存管理程序 Delphi+Acce」· ~PAS 代码 · 共 52 行
~PAS
52 行
unit spzldwform;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, Grids, DBGrids, ComCtrls, StdCtrls, Buttons;
type
Tspzl_dw_form = class(TForm)
GroupBox1: TGroupBox;
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
SpeedButton1: TSpeedButton;
SpeedButton2: TSpeedButton;
SpeedButton3: TSpeedButton;
ComboBox1: TComboBox;
ComboBox2: TComboBox;
Edit1: TEdit;
StatusBar1: TStatusBar;
DBGrid1: TDBGrid;
procedure SpeedButton3Click(Sender: TObject);
procedure SpeedButton2Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
spzl_dw_form: Tspzl_dw_form;
implementation
uses jldwform;
{$R *.dfm}
procedure Tspzl_dw_form.SpeedButton3Click(Sender: TObject);
begin
close;
end;
procedure Tspzl_dw_form.SpeedButton2Click(Sender: TObject);
begin
jldw_form:=tjldw_form.create(application);
jldw_form.show;
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?