Unit1.pas
上传用户:wanyu_2000
上传日期:2021-02-21
资源大小:527k
文件大小:2k
源码类别:

DVD

开发平台:

Delphi

  1. unit Unit1;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  5.   Dialogs, ComCtrls, StdCtrls, Bin2ISO, Buttons;
  6. type
  7.   TForm1 = class(TForm)
  8.     binedit: TEdit;
  9.     isoedit: TEdit;
  10.     Button1: TButton;
  11.     Button2: TButton;
  12.     ProgressBar1: TProgressBar;
  13.     OpenDialog1: TOpenDialog;
  14.     BitBtn1: TBitBtn;
  15.     procedure Button1Click(Sender: TObject);
  16.     procedure Button2Click(Sender: TObject);
  17.     procedure Progress(PercentDone: Integer; Var Cancel : Boolean);
  18.     procedure BitBtn1Click(Sender: TObject);
  19.   private
  20.     { Private declarations }
  21.   public
  22.     { Public declarations }
  23.     BIN2ISO : TBIN2ISO;
  24.     Finish : Boolean;
  25.   end;
  26. var
  27.   Form1: TForm1;
  28. implementation
  29. {$R *.dfm}
  30. procedure TForm1.Progress(PercentDone: Integer; Var Cancel : Boolean);
  31. begin
  32.   progressbar1.Position := PercentDone;
  33.   Cancel := Finish;
  34. end;
  35. procedure TForm1.Button1Click(Sender: TObject);
  36. var
  37.  isofilename : string;
  38. begin
  39. if opendialog1.Execute then
  40. begin
  41.   Binedit.Text := Opendialog1.FileName;
  42.   isofilename := changefileext(Opendialog1.FileName,'.ISO');
  43.   isoedit.Text := isofilename;
  44. end;
  45. end;
  46. procedure TForm1.Button2Click(Sender: TObject);
  47. begin
  48.   BIN2ISO := TBIN2ISO.Create;
  49.   Finish := False;
  50.   BIN2ISO.BINFileName := binedit.Text;
  51.   BIN2ISO.ISOFileName := isoedit.Text;
  52.   BIN2ISO.OnProgress := Progress;
  53.   BIN2ISO.ConvertFile;
  54.   BIN2ISO.Free;
  55. end;
  56. procedure TForm1.BitBtn1Click(Sender: TObject);
  57. begin
  58.    Finish := True;
  59. end;
  60. end.