formjinhuotongjichaxun.~pas

来自「这是一个关于药品进销存的管理软件」· ~PAS 代码 · 共 52 行

~PAS
52
字号
unit FormJinhuotongjichaxun;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls;

type
  Tjinhuotongjichaxun = class(TForm)
    Button1: TButton;
    Button2: TButton;
    Button3: TButton;
    Button4: TButton;
    procedure Button3Click(Sender: TObject);
    procedure Button2Click(Sender: TObject);
    procedure Button1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  jinhuotongjichaxun: Tjinhuotongjichaxun;

implementation

uses FormRukuxinxichaxunjieguo, FormWannengchaxun, FormShururiqi,
  FormRukuchaxun;

{$R *.dfm}

procedure Tjinhuotongjichaxun.Button3Click(Sender: TObject);
begin
rukuxinxichaxunjieguo.Show;
end;

procedure Tjinhuotongjichaxun.Button2Click(Sender: TObject);
begin
rukuchaxun.Caption:='进货万能查询';
rukuchaxun.Show;
end;

procedure Tjinhuotongjichaxun.Button1Click(Sender: TObject);
begin
shururiqi.Caption:='入库常用汇总统计';
shururiqi.Show;
end;

end.

⌨️ 快捷键说明

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