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

📄 fatdlg.pas

📁 磁盘文件恢复源代码
💻 PAS
字号:
unit FATdlg;

interface

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

type
  TFATSelectDialog = class(TForm)
    Label4: TLabel;
    ComboBoxFAT: TComboBox;
    Label5: TLabel;
    Panel1: TPanel;
    Button1: TButton;
    Button2: TButton;
  private
    { Private declarations }
  public
    FATno: byte;
    { Public declarations }
    function execute: boolean;
  end;

var
  FATSelectDialog: TFATSelectDialog;

implementation

{$R *.dfm}

function TfatSelectDialog.execute: boolean;
var
  res: integer;
begin
  res:=showmodal;
  if res = mrOK then
  begin
    FATno:=ComboBoxFAT.itemindex;
  end;
  result:=(res = mrOK);
end;

end.

⌨️ 快捷键说明

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