Where Is TShellListView in Delphi 2009? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T23:53:00Z http://stackoverflow.com/feeds/question/578241 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/578241/where-is-tshelllistview-in-delphi-2009 2 Where Is TShellListView in Delphi 2009? Toby Allen 2009-02-23T16:19:32Z 2009-02-25T10:26:05Z <p>We have recently moved to Delphi 2009. I can't find the TShellListView and TShellTreeView controls. Do I need to install something extra? </p> <p>From searching the web it seems they are shipped with Delphi 2009 but for some reason they havent been installed.</p> <p>Has anyone had a similar problem?</p> <p>Update: This is so unbelivably idiotic. It appears codegear have installed the demos to the allusers section of documents and settings </p> <p>C:\Documents and Settings\All Users\Documents\RAD Studio\6.0\Demos\DelphiWin32\VCLWin32\ShellControls</p> <p>Answer <a href="https://forums.codegear.com/thread.jspa?messageID=21861&amp;tstart=0#21861" rel="nofollow">here</a> </p> http://stackoverflow.com/questions/578241/where-is-tshelllistview-in-delphi-2009/578258#578258 0 Answer by schnaader for Where Is TShellListView in Delphi 2009? schnaader 2009-02-23T16:22:03Z 2009-02-23T16:22:03Z <p>They should be somewhere. Have a look <a href="http://stackoverflow.com/questions/403411/delphi-2009-shelltreeview-shelllistview-fix">here</a>, for example.</p> http://stackoverflow.com/questions/578241/where-is-tshelllistview-in-delphi-2009/578582#578582 10 Answer by gabr for Where Is TShellListView in Delphi 2009? gabr 2009-02-23T17:41:24Z 2009-02-23T17:41:24Z <p>It looks like this package is not installed by default.</p> <p>Navigate to Delphi demos (they are in "c:\Users\Public\Documents\RAD Studio\6.0\Demos" on my machine) and open subfolder DelphiWin32\VCLWin32\ShellControls.</p> <p>Open and compile vclshlctrls.dproj.</p> <p>Open and compile dclshlctrls.dproj.</p> <p>While this last project is still open, right-click on the dclshlctrls120.bpl item in the Project Manager window (View, Project Manager) and select Install from the popup menu. You should see a dialog box informing you of new components. One of them is TShellListView.</p> <blockquote> <p>Information</p> <p>Package C:\Users\Public\Documents\RAD Studio\6.0\Bpl\dclshlctrls120.bpl has been installed. The following new component(s) have been registered: TShellChangeNotifier, TShellComboBox, TShellListView, TShellTreeView.</p> </blockquote> <p>New package should now also be visible in the Component, Install Packages window ("Shell Control Property and Component Editors").</p>