Re: Creating a Folder in ShellTreeView

Posted by Joey on March 01, 2004

In Reply to: Creating a Folder in ShellTreeView posted by creeek on March 01, 2004

This code is tested and works fine :D if i understud rite what u wanted ;)

I used a TShellTreeView and a TEdit to get get the new directorys name!

var
  TmpS: String;
begin
  Tmps := ShellTreeView1.Path;
  if TmpS[Length(TmpS)] = '\' then
    TmpS := TmpS
  else
    TmpS := TmpS + '\';
  SetCurrentDir(TmpS);
  if CreateDir(Edit1.Text) = False then
    MessageDlg('Error in directory creation: ' + IntToStr(GetLastError),mtError,[mbOk],0)
  else
    MessageDlg('New Directory Created: ' + TmpS+Edit1.Text,mtConfirmation,[mbOk],0);

this will give a message on an error and a confirmation if the dir is created :D

hope it helps! if not, say ;)


Related Articles and Replies:


Find related articles

Search for:  ShellTreeView / TShellTreeView


Delphi Forum :: Tutorials :: Source code :: Tips