spzlfindform.~pas

来自「单机进销存管理程序 Delphi+Acce」· ~PAS 代码 · 共 52 行

~PAS
52
字号
unit spzlfindform;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, Grids, DBGrids, ComCtrls, StdCtrls, Buttons;

type
  Tspzl_find_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_find_form: Tspzl_find_form;

implementation

uses spflform;

{$R *.dfm}

procedure Tspzl_find_form.SpeedButton3Click(Sender: TObject);
begin
close;
end;

procedure Tspzl_find_form.SpeedButton2Click(Sender: TObject);
begin
spfl_form:=tspfl_form.create(application);
spfl_form.show;
end;

end.

⌨️ 快捷键说明

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