苦苦等待

解决方案 »

  1.   

    function SelectDirectory(const Caption: string; const Root: WideString; out Directory: string): Boolean; overload;
    function SelectDirectory(var Directory: string; Options: TSelectDirOpts; HelpCtx: Longint): Boolean; overload;
      

  2.   

    Uese FileCtrl;procedure TForm1.Button6Click(Sender: TObject);
    var
      s :string;
    begin
      if SelectDirectory('Select Directory', '', S) then
        ShowMessage(s);
    end;
      

  3.   

    Brings up a dialog to allow the user to enter a directory name.UnitFileCtrlCategorydialog and message routinesDelphi syntax:function SelectDirectory(const Caption: string; const Root: WideString; out Directory: string): Boolean; overload;
    function SelectDirectory(var Directory: string; Options: TSelectDirOpts; HelpCtx: Longint): Boolean; overload;C++ syntax:extern PACKAGE bool __fastcall SelectDirectory(const AnsiString Caption, const WideString Root, AnsiString &Directory);
    extern PACKAGE bool __fastcall SelectDirectory(AnsiString &Directory, TSelectDirOpts Options, int HelpCtx);DescriptionCall SelectDirectory to let the user enter a directory name. Use the first syntax to display the Windows directory browser. The Caption parameter specifies a caption for the dialog. The Root parameter specifies the root directory from which to browse. The selected directory is returned as the Directory parameter. When using this syntax, SelectDirectory does not change the value of the current directory.Warning: You can抰 use the same variable for the Root parameter and the Directory parameter.Use the second syntax to call the Select Directory dialog box. The directory passed to the function with the Directory parameter appears as the currently selected directory when the dialog box appears. The name of the directory the user selects becomes the value of Directory when the function returns.The HelpCtx parameter is the help context ID number.The Options parameter is a set of values. If Options is the empty set, the user can only select a directory that already exists. No edit box is provided for the user to enter a new directory name. If Options is not empty, the included values determine how the dialog responds when the user types a nonexistent directory name.With either syntax, SelectDirectory returns true if the user selected a directory and chose OK, and false if the user chose Cancel or closed the dialog box without selecting a directory.
    Demo===========
    uses FileCtrl;const
      SELDIRHELP = 1000;
    procedure TForm1.Button1Click(Sender: TObject);
    var
      Dir: string;
    begin
      Dir := 'C:\MYDIR';
      if SelectDirectory(Dir, [sdAllowCreate, sdPerformCreate, sdPrompt],SELDIRHELP) then
        Label1.Caption := Dir;
    end;
      

  4.   

    在Samples控件页里的Shelltreeview
      

  5.   

    1.SelectDirectory
    2.自己编写一个界面不就得了 其实很简单 使用DirectroyListBox控件 设置它的相关属性就OK了