FolderSelect.pas 449 B

12345678910111213141516171819202122232425262728293031323334
  1. unit FolderSelect;
  2. interface
  3. uses
  4. System.SysUtils, System.Classes,
  5. Vcl.Graphics, Vcl.Forms,
  6. Vcl.Controls, Vcl.StdCtrls,
  7. Vcl.Buttons, Vcl.ExtCtrls,
  8. Vcl.ComCtrls,
  9. Vcl.Shell.ShellCtrls;
  10. type
  11. TFolderSel = class(TForm)
  12. OKBtn: TButton;
  13. CancelBtn: TButton;
  14. Bevel1: TBevel;
  15. ShellView: TShellTreeView;
  16. Label1: TLabel;
  17. private
  18. public
  19. end;
  20. var
  21. FolderSel: TFolderSel;
  22. implementation
  23. {$R *.dfm}
  24. end.