⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 softnote.pas

📁 可对供应商,顾客,商品,信息进行添加修改查询删除.可随时统计进货量和销售量,同时统计销售额和利润等.
💻 PAS
字号:
unit SoftNote;

interface

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

type
  TSoftNoteFrm = class(TForm)
    SoftNote_Timer: TTimer;
    SoftNote_Image: TImage;
    procedure SoftNote_TimerTimer(Sender: TObject);
    procedure SoftNote_ImageClick(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  SoftNoteFrm: TSoftNoteFrm;

implementation

{$R *.dfm}

procedure TSoftNoteFrm.SoftNote_TimerTimer(Sender: TObject);
begin
 close;
end;   

procedure TSoftNoteFrm.SoftNote_ImageClick(Sender: TObject);
begin
 close;
end;

end.
 

⌨️ 快捷键说明

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