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

📄 ubusy.pas

📁 企业进销存管理系统
💻 PAS
字号:
unit uBusy;

interface

uses
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  StdCtrls, Animate, GIFCtrl, ExtCtrls, ComCtrls;

type
  TBusyForm = class(TForm)
    Label1: TLabel;
    Animate1: TAnimate;
    procedure FormCreate(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  BusyForm: TBusyForm;

implementation

{$R *.DFM}
{$R BUSY.RES}

procedure TBusyForm.FormCreate(Sender: TObject);
begin
  SetWindowLong(Handle,GWL_STYLE,GetWindowLong(Handle,GWL_STYLE)AND NOT WS_CAPTION);
  ClientHeight:=Height;
  Animate1.ResHandle:=0;
  Animate1.ResName:='BUSYAVI';
  Animate1.Active:=True;
end;

end.

⌨️ 快捷键说明

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