├── .gitattributes ├── DemoMain.twinproj ├── FileDialogDemo.twinproj ├── FileProcessingDemo.twinproj ├── LICENSE ├── README.md ├── ShellControlsPackage.twinpack ├── ShellControlsPackage.twinproj ├── ShellControlsTB.twinproj ├── SxS ├── win32 │ └── ShellControlsTB.ocx.manifest └── win64 │ └── ShellControlsTB.ocx.manifest ├── UCSBDemoVB.twinproj ├── VB6 ├── README.md ├── ucShellBrowse112 │ ├── Demo │ │ ├── Form1.frm │ │ ├── Form1.frx │ │ ├── ICO_UP32B.ico │ │ ├── ShellBrowseDemo.vbp │ │ ├── frmDirOnly.frm │ │ ├── fwd32.ico │ │ ├── jm1632.ico │ │ ├── search1632.ico │ │ └── zip1632.ico │ ├── Demo2 │ │ ├── Form1.frm │ │ └── Project1.vbp │ ├── Demo3 │ │ ├── Form1.frm │ │ └── Project1.vbp │ ├── DemoEx │ │ ├── Form1.frm │ │ ├── Form1.frx │ │ ├── ShellBrowseDemoEx.vbp │ │ ├── finegreygrain.bmp │ │ ├── frmSTA.frm │ │ ├── grain.ico │ │ ├── jm1632.ico │ │ ├── search1632.ico │ │ └── zip1632.ico │ ├── DemoFileProc │ │ ├── DemoFileProc.vbp │ │ ├── Form1.frm │ │ └── resDemo.RES │ ├── DemoOpenDlg │ │ ├── DemoOpenDlg.vbp │ │ └── frmOpen.frm │ ├── DemoThumbView │ │ ├── Form1.frm │ │ ├── Form1.frx │ │ └── Project1.vbp │ ├── DemoVB │ │ ├── Form1.frm │ │ ├── Project1.csi │ │ └── Project1.vbp │ ├── DemoVBDir │ │ ├── Form1.frm │ │ └── Project1.vbp │ ├── ShellBrowse.vbp │ ├── changelog.txt │ ├── resDemo-NoDPI.RES │ ├── resDemo.RES │ ├── resDemoDPIAwareFalse.RES │ ├── ucShellBrowse.ctl │ └── ucShellBrowse.ctx └── ucShellTree217 │ ├── Demo │ ├── Form1.frm │ ├── ShellTreeDemo.csi │ ├── ShellTreeDemo.vbp │ └── manifest.res │ ├── DemoSB │ ├── Form1.frm │ └── Project1.vbp │ ├── ShellTree.vbp │ ├── ucShellTree.ctl │ └── ucShellTree.ctx ├── jm1632.ico ├── search1632.ico ├── tbShellBrowseDemo.twinproj ├── tbShellTree.twinproj ├── ucShellBrowse.tbcontrol ├── ucShellBrowse.twin ├── ucShellTree.tbcontrol ├── ucShellTree.twin └── zip1632.ico /.gitattributes: -------------------------------------------------------------------------------- 1 | *.twin linguist-language=vb6 2 | -------------------------------------------------------------------------------- /DemoMain.twinproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/DemoMain.twinproj -------------------------------------------------------------------------------- /FileDialogDemo.twinproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/FileDialogDemo.twinproj -------------------------------------------------------------------------------- /FileProcessingDemo.twinproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/FileProcessingDemo.twinproj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/README.md -------------------------------------------------------------------------------- /ShellControlsPackage.twinpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/ShellControlsPackage.twinpack -------------------------------------------------------------------------------- /ShellControlsPackage.twinproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/ShellControlsPackage.twinproj -------------------------------------------------------------------------------- /ShellControlsTB.twinproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/ShellControlsTB.twinproj -------------------------------------------------------------------------------- /SxS/win32/ShellControlsTB.ocx.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/SxS/win32/ShellControlsTB.ocx.manifest -------------------------------------------------------------------------------- /SxS/win64/ShellControlsTB.ocx.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/SxS/win64/ShellControlsTB.ocx.manifest -------------------------------------------------------------------------------- /UCSBDemoVB.twinproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/UCSBDemoVB.twinproj -------------------------------------------------------------------------------- /VB6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/README.md -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/Demo/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/Demo/Form1.frm -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/Demo/Form1.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/Demo/Form1.frx -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/Demo/ICO_UP32B.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/Demo/ICO_UP32B.ico -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/Demo/ShellBrowseDemo.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/Demo/ShellBrowseDemo.vbp -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/Demo/frmDirOnly.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/Demo/frmDirOnly.frm -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/Demo/fwd32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/Demo/fwd32.ico -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/Demo/jm1632.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/Demo/jm1632.ico -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/Demo/search1632.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/Demo/search1632.ico -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/Demo/zip1632.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/Demo/zip1632.ico -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/Demo2/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/Demo2/Form1.frm -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/Demo2/Project1.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/Demo2/Project1.vbp -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/Demo3/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/Demo3/Form1.frm -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/Demo3/Project1.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/Demo3/Project1.vbp -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/DemoEx/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/DemoEx/Form1.frm -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/DemoEx/Form1.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/DemoEx/Form1.frx -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/DemoEx/ShellBrowseDemoEx.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/DemoEx/ShellBrowseDemoEx.vbp -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/DemoEx/finegreygrain.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/DemoEx/finegreygrain.bmp -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/DemoEx/frmSTA.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/DemoEx/frmSTA.frm -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/DemoEx/grain.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/DemoEx/grain.ico -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/DemoEx/jm1632.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/DemoEx/jm1632.ico -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/DemoEx/search1632.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/DemoEx/search1632.ico -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/DemoEx/zip1632.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/DemoEx/zip1632.ico -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/DemoFileProc/DemoFileProc.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/DemoFileProc/DemoFileProc.vbp -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/DemoFileProc/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/DemoFileProc/Form1.frm -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/DemoFileProc/resDemo.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/DemoFileProc/resDemo.RES -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/DemoOpenDlg/DemoOpenDlg.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/DemoOpenDlg/DemoOpenDlg.vbp -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/DemoOpenDlg/frmOpen.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/DemoOpenDlg/frmOpen.frm -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/DemoThumbView/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/DemoThumbView/Form1.frm -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/DemoThumbView/Form1.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/DemoThumbView/Form1.frx -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/DemoThumbView/Project1.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/DemoThumbView/Project1.vbp -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/DemoVB/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/DemoVB/Form1.frm -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/DemoVB/Project1.csi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/DemoVB/Project1.csi -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/DemoVB/Project1.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/DemoVB/Project1.vbp -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/DemoVBDir/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/DemoVBDir/Form1.frm -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/DemoVBDir/Project1.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/DemoVBDir/Project1.vbp -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/ShellBrowse.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/ShellBrowse.vbp -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/changelog.txt -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/resDemo-NoDPI.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/resDemo-NoDPI.RES -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/resDemo.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/resDemo.RES -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/resDemoDPIAwareFalse.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/resDemoDPIAwareFalse.RES -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/ucShellBrowse.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/ucShellBrowse.ctl -------------------------------------------------------------------------------- /VB6/ucShellBrowse112/ucShellBrowse.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellBrowse112/ucShellBrowse.ctx -------------------------------------------------------------------------------- /VB6/ucShellTree217/Demo/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellTree217/Demo/Form1.frm -------------------------------------------------------------------------------- /VB6/ucShellTree217/Demo/ShellTreeDemo.csi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellTree217/Demo/ShellTreeDemo.csi -------------------------------------------------------------------------------- /VB6/ucShellTree217/Demo/ShellTreeDemo.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellTree217/Demo/ShellTreeDemo.vbp -------------------------------------------------------------------------------- /VB6/ucShellTree217/Demo/manifest.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellTree217/Demo/manifest.res -------------------------------------------------------------------------------- /VB6/ucShellTree217/DemoSB/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellTree217/DemoSB/Form1.frm -------------------------------------------------------------------------------- /VB6/ucShellTree217/DemoSB/Project1.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellTree217/DemoSB/Project1.vbp -------------------------------------------------------------------------------- /VB6/ucShellTree217/ShellTree.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellTree217/ShellTree.vbp -------------------------------------------------------------------------------- /VB6/ucShellTree217/ucShellTree.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellTree217/ucShellTree.ctl -------------------------------------------------------------------------------- /VB6/ucShellTree217/ucShellTree.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/VB6/ucShellTree217/ucShellTree.ctx -------------------------------------------------------------------------------- /jm1632.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/jm1632.ico -------------------------------------------------------------------------------- /search1632.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/search1632.ico -------------------------------------------------------------------------------- /tbShellBrowseDemo.twinproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/tbShellBrowseDemo.twinproj -------------------------------------------------------------------------------- /tbShellTree.twinproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/tbShellTree.twinproj -------------------------------------------------------------------------------- /ucShellBrowse.tbcontrol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/ucShellBrowse.tbcontrol -------------------------------------------------------------------------------- /ucShellBrowse.twin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/ucShellBrowse.twin -------------------------------------------------------------------------------- /ucShellTree.tbcontrol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/ucShellTree.tbcontrol -------------------------------------------------------------------------------- /ucShellTree.twin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/ucShellTree.twin -------------------------------------------------------------------------------- /zip1632.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fafalone/ShellControls/HEAD/zip1632.ico --------------------------------------------------------------------------------