ShellBrowser Delphi Components Documentation
ContentsIndexHome
Example

The following lines would show the size of the AUTOEXEC.BAT file:

ShellBrowser.ObjectName := 'C:Autoexec.bat';
Label1.Caption := ShellBrowser.GetColumnText(1, False);

This example prepares the column of a ListView to show the information of the current folder.

Title := fShellBrowser.GetColumnText(0, True);
while Length(Title)>0 do begin
  col := ListView.Columns.Add;
  col.Caption := Title;
  Title := fShellBrowser.GetColumnText(ListView.Columns.Count, True);
end;