FolderDialog.pas 408 B

123456789101112131415161718192021222324252627282930313233343536
  1. unit FolderDialog;
  2. interface
  3. uses
  4. Windows,
  5. System.SysUtils,
  6. System.Classes,
  7. Vcl.Graphics,
  8. Vcl.Forms,
  9. Vcl.Controls,
  10. Vcl.StdCtrls,
  11. Vcl.Buttons,
  12. Vcl.ExtCtrls;
  13. type
  14. TFDialog = class(TForm)
  15. OKBtn: TButton;
  16. CancelBtn: TButton;
  17. Bevel1: TBevel;
  18. Label1: TLabel;
  19. Edit1: TEdit;
  20. private
  21. public
  22. end;
  23. var
  24. FDialog: TFDialog;
  25. implementation
  26. {$R *.dfm}
  27. end.