├── .gitattributes ├── .gitignore ├── AppWizard ├── Files │ ├── HTML │ │ └── 1033 │ │ │ ├── AppType.htm │ │ │ ├── UIFeatures.htm │ │ │ └── default.htm │ ├── Images │ │ ├── WTL10AppWiz.png │ │ ├── WTL10AppWiz_Background.png │ │ └── spacer.gif │ ├── Scripts │ │ └── 1033 │ │ │ └── default.js │ ├── Templates │ │ └── 1033 │ │ │ ├── AboutDlg.cpp │ │ │ ├── AboutDlg.h │ │ │ ├── ChildFrm.cpp │ │ │ ├── ChildFrm.h │ │ │ ├── Frame.cpp │ │ │ ├── Frame.h │ │ │ ├── MainDlg.cpp │ │ │ ├── MainDlg.h │ │ │ ├── Ribbon.h │ │ │ ├── Ribbon.xml │ │ │ ├── Templates.inf │ │ │ ├── View.cpp │ │ │ ├── View.h │ │ │ ├── resource.h │ │ │ ├── root.cpp │ │ │ ├── root.h │ │ │ ├── root.ico │ │ │ ├── root.idl │ │ │ ├── root.rc │ │ │ ├── root.rgs │ │ │ ├── rootDoc.ico │ │ │ ├── rootidl.h │ │ │ ├── rootps.def │ │ │ ├── rootps.mk │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── toolbar.bmp │ ├── WTL10AppWiz.ico │ ├── WTL10AppWiz.vsdir │ └── WTL10AppWiz.vsz └── Setup.js ├── Artwork ├── WTL10AppWiz.ico ├── WTL10AppWiz.png ├── WTL10AppWiz_org.ico ├── WTLNewAppWiz.ico ├── WTLNewAppWiz2.ico ├── WTLNewApplication.ico ├── WTLSimple.ico ├── WTLSimple.png ├── WTLWizardDialog.png ├── WTLWizardDialog2.png ├── wtl_icon_design.3mf ├── wtl_icon_design.fbm │ ├── 3551.png │ ├── 3553.png │ ├── 3559.png │ ├── 3561.png │ ├── 3567.png │ ├── 3569.png │ ├── 3575.png │ ├── 3577.png │ ├── 3583.png │ ├── 3585.png │ ├── 3591.png │ ├── 3593.png │ ├── 4280.png │ ├── 4282.png │ ├── 4288.png │ ├── 4290.png │ ├── 4296.png │ ├── 4298.png │ ├── 4304.png │ ├── 4306.png │ ├── 4312.png │ ├── 4314.png │ ├── 4320.png │ └── 4322.png ├── wtl_icon_design.fbx ├── wtl_icon_design_02.png ├── wtl_icon_gimp.png ├── wtl_icon_gimp.xcf ├── wtl_icon_gimp_flat.png ├── wtl_icon_gimp_flat.xcf ├── wtl_icon_snapshot_00.png ├── wtl_icon_snapshot_01.png └── wtl_icon_upgrade.jpg ├── Include ├── atlapp.h ├── atlcrack.h ├── atlctrls.h ├── atlctrlw.h ├── atlctrlx.h ├── atlddx.h ├── atldlgs.h ├── atldwm.h ├── atlfind.h ├── atlframe.h ├── atlgdi.h ├── atlmisc.h ├── atlprint.h ├── atlres.h ├── atlribbon.h ├── atlscrl.h ├── atlsplit.h ├── atltheme.h ├── atluser.h └── atlwinx.h ├── MS-PL.txt ├── README.md ├── ReadMe.html ├── Samples ├── Aero │ ├── AboutDlg.h │ ├── Aero.cpp │ ├── Aero.h │ ├── Aero.rc │ ├── AeroView.h │ ├── Aero_2005.sln │ ├── Aero_2005.vcproj │ ├── Aero_2010.sln │ ├── Aero_2010.vcxproj │ ├── Aero_2010.vcxproj.filters │ ├── MainFrm.h │ ├── res │ │ ├── Aero.ico │ │ └── toolbar.bmp │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h ├── Alpha │ ├── Alpha.cpp │ ├── Alpha.h │ ├── Alpha.rc │ ├── Alpha_2005.sln │ ├── Alpha_2005.vcproj │ ├── Alpha_2010.sln │ ├── Alpha_2010.vcxproj │ ├── Alpha_2010.vcxproj.filters │ ├── aboutdlg.h │ ├── mainfrm.h │ ├── readme.txt │ ├── res │ │ ├── Alpha.ico │ │ ├── toolbar.bmp │ │ └── toolbar_old.bmp │ ├── resource.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── view.h ├── BmpView │ ├── BmpView.cpp │ ├── BmpView.rc │ ├── BmpView_2005.sln │ ├── BmpView_2005.vcproj │ ├── BmpView_2010.sln │ ├── BmpView_2010.vcxproj │ ├── BmpView_2010.vcxproj.filters │ ├── list.h │ ├── mainfrm.h │ ├── props.h │ ├── res │ │ ├── BmpView.ico │ │ └── Toolbar.bmp │ ├── resource.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── view.h ├── GuidGen │ ├── GuidGen.cpp │ ├── GuidGen.rc │ ├── GuidGen_2005.sln │ ├── GuidGen_2005.vcproj │ ├── GuidGen_2010.sln │ ├── GuidGen_2010.vcxproj │ ├── GuidGen_2010.vcxproj.filters │ ├── aboutdlg.h │ ├── maindlg.h │ ├── res │ │ └── GuidGen.ico │ ├── resource.h │ ├── stdatl.cpp │ └── stdatl.h ├── MDIDocVw │ ├── MDI.cpp │ ├── MDI.rc │ ├── MDI_2005.sln │ ├── MDI_2005.vcproj │ ├── MDI_2010.sln │ ├── MDI_2010.vcxproj │ ├── MDI_2010.vcxproj.filters │ ├── mainfrm.h │ ├── res │ │ ├── HelloDoc.ico │ │ ├── MDI.ICO │ │ ├── Toolbar.bmp │ │ └── bounce.ico │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h ├── MTPad │ ├── MTPad.cpp │ ├── MTPad.h │ ├── MTPad.rc │ ├── MTPad_2005.sln │ ├── MTPad_2005.vcproj │ ├── MTPad_2010.sln │ ├── MTPad_2010.vcxproj │ ├── MTPad_2010.vcxproj.filters │ ├── aboutdlg.h │ ├── finddlg.h │ ├── mainfrm.h │ ├── res │ │ ├── MTPad.ico │ │ ├── MTPadDoc.ico │ │ ├── Toolbar.bmp │ │ └── printpre.bmp │ ├── resource.h │ ├── stdatl.cpp │ ├── stdatl.h │ └── view.h ├── MTPad7 │ ├── MTPad.cpp │ ├── MTPad.h │ ├── MTPad7_2008.sln │ ├── MTPad7_2008.vcproj │ ├── MTPad7_2010.sln │ ├── MTPad7_2010.vcxproj │ ├── MTPad7_2010.vcxproj.filters │ ├── MTPadRibbon.h │ ├── MTPadRibbon.rc │ ├── MTPadRibbon.xml │ ├── aboutdlg.h │ ├── finddlg.h │ ├── mainfrm.h │ ├── mtpad.rc │ ├── res │ │ ├── ClosePreviewHH.bmp │ │ ├── GoToNextHS.bmp │ │ ├── GoToPreviousHS.bmp │ │ ├── MTPad.ico │ │ ├── MTPadDoc.ico │ │ ├── PortraitLandscapeHS.bmp │ │ ├── PrintPreviewL.bmp │ │ ├── SelectAllS.bmp │ │ ├── Toolbar.bmp │ │ ├── UndoS.bmp │ │ └── printpre.bmp │ ├── resource.h │ ├── stdatl.cpp │ ├── stdatl.h │ └── view.h ├── MemDlg │ ├── AboutDlg.h │ ├── AboutDlgIndirect.h │ ├── MainFrm.h │ ├── MemDlg.cpp │ ├── MemDlg.rc │ ├── MemDlg_2005.sln │ ├── MemDlg_2005.vcproj │ ├── MemDlg_2010.sln │ ├── MemDlg_2010.vcxproj │ ├── MemDlg_2010.vcxproj.filters │ ├── View.h │ ├── res │ │ ├── MemDlg.ico │ │ └── toolbar.bmp │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h ├── TabBrowser │ ├── AboutDlg.h │ ├── AddressCombo.h │ ├── BrowserView.h │ ├── CustomTabView.h │ ├── MainFrm.h │ ├── OpenDlg.h │ ├── TabBrowser.cpp │ ├── TabBrowser.h │ ├── TabBrowser.rc │ ├── TabBrowser_2005.sln │ ├── TabBrowser_2005.vcproj │ ├── TabBrowser_2010.sln │ ├── TabBrowser_2010.vcxproj │ ├── TabBrowser_2010.vcxproj.filters │ ├── WindowsDlg.h │ ├── res │ │ ├── Go.bmp │ │ ├── PageImage.bmp │ │ ├── TabBrowser.ico │ │ ├── TabToolbar.bmp │ │ ├── Toolbar.bmp │ │ └── Toolbar_Big.bmp │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h ├── WTLExplorer │ ├── ExplorerCombo.h │ ├── MainFrm.cpp │ ├── ShellMgr.cpp │ ├── ShellMgr.h │ ├── WTLExplorer.cpp │ ├── WTLExplorer.rc │ ├── WTLExplorer_2005.sln │ ├── WTLExplorer_2005.vcproj │ ├── WTLExplorer_2010.sln │ ├── WTLExplorer_2010.vcxproj │ ├── WTLExplorer_2010.vcxproj.filters │ ├── mainfrm.h │ ├── res │ │ ├── Toolbar.bmp │ │ ├── WTLExplorer.ico │ │ ├── go.bmp │ │ └── go1.bmp │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h └── Wizard97Test │ ├── Wizard │ ├── FolderDialogStatusText.h │ ├── TestWizard.cpp │ ├── TestWizard.h │ ├── TestWizardCompletionPage.cpp │ ├── TestWizardCompletionPage.h │ ├── TestWizardFilePreviewPage.cpp │ ├── TestWizardFilePreviewPage.h │ ├── TestWizardInfo.cpp │ ├── TestWizardInfo.h │ ├── TestWizardOutputPage.cpp │ ├── TestWizardOutputPage.h │ ├── TestWizardPathFilterPage.cpp │ ├── TestWizardPathFilterPage.h │ ├── TestWizardSheet.cpp │ ├── TestWizardSheet.h │ ├── TestWizardWelcomePage.cpp │ └── TestWizardWelcomePage.h │ ├── Wizard97Test.cpp │ ├── Wizard97Test.h │ ├── Wizard97Test.rc │ ├── Wizard97Test_2005.sln │ ├── Wizard97Test_2005.vcproj │ ├── Wizard97Test_2010.sln │ ├── Wizard97Test_2010.vcxproj │ ├── Wizard97Test_2010.vcxproj.filters │ ├── help │ ├── Context.h │ ├── Context.txt │ ├── TestWizard_Completion.html │ ├── TestWizard_Completion.png │ ├── TestWizard_Output.html │ ├── TestWizard_Output.png │ ├── TestWizard_PathFilter.html │ ├── TestWizard_PathFilter.png │ ├── TestWizard_PreviewFileList.html │ ├── TestWizard_PreviewFileList.png │ ├── TestWizard_Welcome.html │ ├── TestWizard_Welcome.png │ ├── Wizard97Test.hhc │ ├── Wizard97Test.hhk │ ├── Wizard97Test.hhp │ ├── Wizard97Test.html │ ├── readme-help.txt │ └── style.css │ ├── res │ ├── Wizard97Test.ico │ ├── header.bmp │ └── watermark.bmp │ ├── resource.h │ ├── resource.hm │ ├── stdafx.cpp │ └── stdafx.h └── install.ps1 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/.gitignore -------------------------------------------------------------------------------- /AppWizard/Files/HTML/1033/AppType.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/HTML/1033/AppType.htm -------------------------------------------------------------------------------- /AppWizard/Files/HTML/1033/UIFeatures.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/HTML/1033/UIFeatures.htm -------------------------------------------------------------------------------- /AppWizard/Files/HTML/1033/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/HTML/1033/default.htm -------------------------------------------------------------------------------- /AppWizard/Files/Images/WTL10AppWiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/Images/WTL10AppWiz.png -------------------------------------------------------------------------------- /AppWizard/Files/Images/WTL10AppWiz_Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/Images/WTL10AppWiz_Background.png -------------------------------------------------------------------------------- /AppWizard/Files/Images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/Images/spacer.gif -------------------------------------------------------------------------------- /AppWizard/Files/Scripts/1033/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/Scripts/1033/default.js -------------------------------------------------------------------------------- /AppWizard/Files/Templates/1033/AboutDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/Templates/1033/AboutDlg.cpp -------------------------------------------------------------------------------- /AppWizard/Files/Templates/1033/AboutDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/Templates/1033/AboutDlg.h -------------------------------------------------------------------------------- /AppWizard/Files/Templates/1033/ChildFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/Templates/1033/ChildFrm.cpp -------------------------------------------------------------------------------- /AppWizard/Files/Templates/1033/ChildFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/Templates/1033/ChildFrm.h -------------------------------------------------------------------------------- /AppWizard/Files/Templates/1033/Frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/Templates/1033/Frame.cpp -------------------------------------------------------------------------------- /AppWizard/Files/Templates/1033/Frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/Templates/1033/Frame.h -------------------------------------------------------------------------------- /AppWizard/Files/Templates/1033/MainDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/Templates/1033/MainDlg.cpp -------------------------------------------------------------------------------- /AppWizard/Files/Templates/1033/MainDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/Templates/1033/MainDlg.h -------------------------------------------------------------------------------- /AppWizard/Files/Templates/1033/Ribbon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/Templates/1033/Ribbon.h -------------------------------------------------------------------------------- /AppWizard/Files/Templates/1033/Ribbon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/Templates/1033/Ribbon.xml -------------------------------------------------------------------------------- /AppWizard/Files/Templates/1033/Templates.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/Templates/1033/Templates.inf -------------------------------------------------------------------------------- /AppWizard/Files/Templates/1033/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/Templates/1033/View.cpp -------------------------------------------------------------------------------- /AppWizard/Files/Templates/1033/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/Templates/1033/View.h -------------------------------------------------------------------------------- /AppWizard/Files/Templates/1033/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/Templates/1033/resource.h -------------------------------------------------------------------------------- /AppWizard/Files/Templates/1033/root.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/Templates/1033/root.cpp -------------------------------------------------------------------------------- /AppWizard/Files/Templates/1033/root.h: -------------------------------------------------------------------------------- 1 | // [!output PROJECT_NAME].h 2 | -------------------------------------------------------------------------------- /AppWizard/Files/Templates/1033/root.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/Templates/1033/root.ico -------------------------------------------------------------------------------- /AppWizard/Files/Templates/1033/root.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/Templates/1033/root.idl -------------------------------------------------------------------------------- /AppWizard/Files/Templates/1033/root.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/Templates/1033/root.rc -------------------------------------------------------------------------------- /AppWizard/Files/Templates/1033/root.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/Templates/1033/root.rgs -------------------------------------------------------------------------------- /AppWizard/Files/Templates/1033/rootDoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/Templates/1033/rootDoc.ico -------------------------------------------------------------------------------- /AppWizard/Files/Templates/1033/rootidl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/Templates/1033/rootidl.h -------------------------------------------------------------------------------- /AppWizard/Files/Templates/1033/rootps.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/Templates/1033/rootps.def -------------------------------------------------------------------------------- /AppWizard/Files/Templates/1033/rootps.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/Templates/1033/rootps.mk -------------------------------------------------------------------------------- /AppWizard/Files/Templates/1033/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/Templates/1033/stdafx.cpp -------------------------------------------------------------------------------- /AppWizard/Files/Templates/1033/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/Templates/1033/stdafx.h -------------------------------------------------------------------------------- /AppWizard/Files/Templates/1033/toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/Templates/1033/toolbar.bmp -------------------------------------------------------------------------------- /AppWizard/Files/WTL10AppWiz.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/WTL10AppWiz.ico -------------------------------------------------------------------------------- /AppWizard/Files/WTL10AppWiz.vsdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/WTL10AppWiz.vsdir -------------------------------------------------------------------------------- /AppWizard/Files/WTL10AppWiz.vsz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Files/WTL10AppWiz.vsz -------------------------------------------------------------------------------- /AppWizard/Setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/AppWizard/Setup.js -------------------------------------------------------------------------------- /Artwork/WTL10AppWiz.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/WTL10AppWiz.ico -------------------------------------------------------------------------------- /Artwork/WTL10AppWiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/WTL10AppWiz.png -------------------------------------------------------------------------------- /Artwork/WTL10AppWiz_org.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/WTL10AppWiz_org.ico -------------------------------------------------------------------------------- /Artwork/WTLNewAppWiz.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/WTLNewAppWiz.ico -------------------------------------------------------------------------------- /Artwork/WTLNewAppWiz2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/WTLNewAppWiz2.ico -------------------------------------------------------------------------------- /Artwork/WTLNewApplication.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/WTLNewApplication.ico -------------------------------------------------------------------------------- /Artwork/WTLSimple.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/WTLSimple.ico -------------------------------------------------------------------------------- /Artwork/WTLSimple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/WTLSimple.png -------------------------------------------------------------------------------- /Artwork/WTLWizardDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/WTLWizardDialog.png -------------------------------------------------------------------------------- /Artwork/WTLWizardDialog2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/WTLWizardDialog2.png -------------------------------------------------------------------------------- /Artwork/wtl_icon_design.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/wtl_icon_design.3mf -------------------------------------------------------------------------------- /Artwork/wtl_icon_design.fbm/3551.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/wtl_icon_design.fbm/3551.png -------------------------------------------------------------------------------- /Artwork/wtl_icon_design.fbm/3553.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/wtl_icon_design.fbm/3553.png -------------------------------------------------------------------------------- /Artwork/wtl_icon_design.fbm/3559.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/wtl_icon_design.fbm/3559.png -------------------------------------------------------------------------------- /Artwork/wtl_icon_design.fbm/3561.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/wtl_icon_design.fbm/3561.png -------------------------------------------------------------------------------- /Artwork/wtl_icon_design.fbm/3567.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/wtl_icon_design.fbm/3567.png -------------------------------------------------------------------------------- /Artwork/wtl_icon_design.fbm/3569.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/wtl_icon_design.fbm/3569.png -------------------------------------------------------------------------------- /Artwork/wtl_icon_design.fbm/3575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/wtl_icon_design.fbm/3575.png -------------------------------------------------------------------------------- /Artwork/wtl_icon_design.fbm/3577.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/wtl_icon_design.fbm/3577.png -------------------------------------------------------------------------------- /Artwork/wtl_icon_design.fbm/3583.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/wtl_icon_design.fbm/3583.png -------------------------------------------------------------------------------- /Artwork/wtl_icon_design.fbm/3585.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/wtl_icon_design.fbm/3585.png -------------------------------------------------------------------------------- /Artwork/wtl_icon_design.fbm/3591.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/wtl_icon_design.fbm/3591.png -------------------------------------------------------------------------------- /Artwork/wtl_icon_design.fbm/3593.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/wtl_icon_design.fbm/3593.png -------------------------------------------------------------------------------- /Artwork/wtl_icon_design.fbm/4280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/wtl_icon_design.fbm/4280.png -------------------------------------------------------------------------------- /Artwork/wtl_icon_design.fbm/4282.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/wtl_icon_design.fbm/4282.png -------------------------------------------------------------------------------- /Artwork/wtl_icon_design.fbm/4288.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/wtl_icon_design.fbm/4288.png -------------------------------------------------------------------------------- /Artwork/wtl_icon_design.fbm/4290.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/wtl_icon_design.fbm/4290.png -------------------------------------------------------------------------------- /Artwork/wtl_icon_design.fbm/4296.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/wtl_icon_design.fbm/4296.png -------------------------------------------------------------------------------- /Artwork/wtl_icon_design.fbm/4298.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/wtl_icon_design.fbm/4298.png -------------------------------------------------------------------------------- /Artwork/wtl_icon_design.fbm/4304.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/wtl_icon_design.fbm/4304.png -------------------------------------------------------------------------------- /Artwork/wtl_icon_design.fbm/4306.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/wtl_icon_design.fbm/4306.png -------------------------------------------------------------------------------- /Artwork/wtl_icon_design.fbm/4312.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/wtl_icon_design.fbm/4312.png -------------------------------------------------------------------------------- /Artwork/wtl_icon_design.fbm/4314.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/wtl_icon_design.fbm/4314.png -------------------------------------------------------------------------------- /Artwork/wtl_icon_design.fbm/4320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/wtl_icon_design.fbm/4320.png -------------------------------------------------------------------------------- /Artwork/wtl_icon_design.fbm/4322.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/wtl_icon_design.fbm/4322.png -------------------------------------------------------------------------------- /Artwork/wtl_icon_design.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/wtl_icon_design.fbx -------------------------------------------------------------------------------- /Artwork/wtl_icon_design_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/wtl_icon_design_02.png -------------------------------------------------------------------------------- /Artwork/wtl_icon_gimp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/wtl_icon_gimp.png -------------------------------------------------------------------------------- /Artwork/wtl_icon_gimp.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/wtl_icon_gimp.xcf -------------------------------------------------------------------------------- /Artwork/wtl_icon_gimp_flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/wtl_icon_gimp_flat.png -------------------------------------------------------------------------------- /Artwork/wtl_icon_gimp_flat.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/wtl_icon_gimp_flat.xcf -------------------------------------------------------------------------------- /Artwork/wtl_icon_snapshot_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/wtl_icon_snapshot_00.png -------------------------------------------------------------------------------- /Artwork/wtl_icon_snapshot_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/wtl_icon_snapshot_01.png -------------------------------------------------------------------------------- /Artwork/wtl_icon_upgrade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Artwork/wtl_icon_upgrade.jpg -------------------------------------------------------------------------------- /Include/atlapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Include/atlapp.h -------------------------------------------------------------------------------- /Include/atlcrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Include/atlcrack.h -------------------------------------------------------------------------------- /Include/atlctrls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Include/atlctrls.h -------------------------------------------------------------------------------- /Include/atlctrlw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Include/atlctrlw.h -------------------------------------------------------------------------------- /Include/atlctrlx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Include/atlctrlx.h -------------------------------------------------------------------------------- /Include/atlddx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Include/atlddx.h -------------------------------------------------------------------------------- /Include/atldlgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Include/atldlgs.h -------------------------------------------------------------------------------- /Include/atldwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Include/atldwm.h -------------------------------------------------------------------------------- /Include/atlfind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Include/atlfind.h -------------------------------------------------------------------------------- /Include/atlframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Include/atlframe.h -------------------------------------------------------------------------------- /Include/atlgdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Include/atlgdi.h -------------------------------------------------------------------------------- /Include/atlmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Include/atlmisc.h -------------------------------------------------------------------------------- /Include/atlprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Include/atlprint.h -------------------------------------------------------------------------------- /Include/atlres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Include/atlres.h -------------------------------------------------------------------------------- /Include/atlribbon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Include/atlribbon.h -------------------------------------------------------------------------------- /Include/atlscrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Include/atlscrl.h -------------------------------------------------------------------------------- /Include/atlsplit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Include/atlsplit.h -------------------------------------------------------------------------------- /Include/atltheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Include/atltheme.h -------------------------------------------------------------------------------- /Include/atluser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Include/atluser.h -------------------------------------------------------------------------------- /Include/atlwinx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Include/atlwinx.h -------------------------------------------------------------------------------- /MS-PL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/MS-PL.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/README.md -------------------------------------------------------------------------------- /ReadMe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/ReadMe.html -------------------------------------------------------------------------------- /Samples/Aero/AboutDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Aero/AboutDlg.h -------------------------------------------------------------------------------- /Samples/Aero/Aero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Aero/Aero.cpp -------------------------------------------------------------------------------- /Samples/Aero/Aero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Aero/Aero.h -------------------------------------------------------------------------------- /Samples/Aero/Aero.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Aero/Aero.rc -------------------------------------------------------------------------------- /Samples/Aero/AeroView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Aero/AeroView.h -------------------------------------------------------------------------------- /Samples/Aero/Aero_2005.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Aero/Aero_2005.sln -------------------------------------------------------------------------------- /Samples/Aero/Aero_2005.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Aero/Aero_2005.vcproj -------------------------------------------------------------------------------- /Samples/Aero/Aero_2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Aero/Aero_2010.sln -------------------------------------------------------------------------------- /Samples/Aero/Aero_2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Aero/Aero_2010.vcxproj -------------------------------------------------------------------------------- /Samples/Aero/Aero_2010.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Aero/Aero_2010.vcxproj.filters -------------------------------------------------------------------------------- /Samples/Aero/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Aero/MainFrm.h -------------------------------------------------------------------------------- /Samples/Aero/res/Aero.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Aero/res/Aero.ico -------------------------------------------------------------------------------- /Samples/Aero/res/toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Aero/res/toolbar.bmp -------------------------------------------------------------------------------- /Samples/Aero/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Aero/resource.h -------------------------------------------------------------------------------- /Samples/Aero/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Aero/stdafx.cpp -------------------------------------------------------------------------------- /Samples/Aero/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Aero/stdafx.h -------------------------------------------------------------------------------- /Samples/Alpha/Alpha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Alpha/Alpha.cpp -------------------------------------------------------------------------------- /Samples/Alpha/Alpha.h: -------------------------------------------------------------------------------- 1 | // Alpha.h 2 | -------------------------------------------------------------------------------- /Samples/Alpha/Alpha.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Alpha/Alpha.rc -------------------------------------------------------------------------------- /Samples/Alpha/Alpha_2005.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Alpha/Alpha_2005.sln -------------------------------------------------------------------------------- /Samples/Alpha/Alpha_2005.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Alpha/Alpha_2005.vcproj -------------------------------------------------------------------------------- /Samples/Alpha/Alpha_2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Alpha/Alpha_2010.sln -------------------------------------------------------------------------------- /Samples/Alpha/Alpha_2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Alpha/Alpha_2010.vcxproj -------------------------------------------------------------------------------- /Samples/Alpha/Alpha_2010.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Alpha/Alpha_2010.vcxproj.filters -------------------------------------------------------------------------------- /Samples/Alpha/aboutdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Alpha/aboutdlg.h -------------------------------------------------------------------------------- /Samples/Alpha/mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Alpha/mainfrm.h -------------------------------------------------------------------------------- /Samples/Alpha/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Alpha/readme.txt -------------------------------------------------------------------------------- /Samples/Alpha/res/Alpha.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Alpha/res/Alpha.ico -------------------------------------------------------------------------------- /Samples/Alpha/res/toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Alpha/res/toolbar.bmp -------------------------------------------------------------------------------- /Samples/Alpha/res/toolbar_old.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Alpha/res/toolbar_old.bmp -------------------------------------------------------------------------------- /Samples/Alpha/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Alpha/resource.h -------------------------------------------------------------------------------- /Samples/Alpha/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Alpha/stdafx.cpp -------------------------------------------------------------------------------- /Samples/Alpha/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Alpha/stdafx.h -------------------------------------------------------------------------------- /Samples/Alpha/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Alpha/view.h -------------------------------------------------------------------------------- /Samples/BmpView/BmpView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/BmpView/BmpView.cpp -------------------------------------------------------------------------------- /Samples/BmpView/BmpView.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/BmpView/BmpView.rc -------------------------------------------------------------------------------- /Samples/BmpView/BmpView_2005.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/BmpView/BmpView_2005.sln -------------------------------------------------------------------------------- /Samples/BmpView/BmpView_2005.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/BmpView/BmpView_2005.vcproj -------------------------------------------------------------------------------- /Samples/BmpView/BmpView_2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/BmpView/BmpView_2010.sln -------------------------------------------------------------------------------- /Samples/BmpView/BmpView_2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/BmpView/BmpView_2010.vcxproj -------------------------------------------------------------------------------- /Samples/BmpView/BmpView_2010.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/BmpView/BmpView_2010.vcxproj.filters -------------------------------------------------------------------------------- /Samples/BmpView/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/BmpView/list.h -------------------------------------------------------------------------------- /Samples/BmpView/mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/BmpView/mainfrm.h -------------------------------------------------------------------------------- /Samples/BmpView/props.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/BmpView/props.h -------------------------------------------------------------------------------- /Samples/BmpView/res/BmpView.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/BmpView/res/BmpView.ico -------------------------------------------------------------------------------- /Samples/BmpView/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/BmpView/res/Toolbar.bmp -------------------------------------------------------------------------------- /Samples/BmpView/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/BmpView/resource.h -------------------------------------------------------------------------------- /Samples/BmpView/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/BmpView/stdafx.cpp -------------------------------------------------------------------------------- /Samples/BmpView/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/BmpView/stdafx.h -------------------------------------------------------------------------------- /Samples/BmpView/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/BmpView/view.h -------------------------------------------------------------------------------- /Samples/GuidGen/GuidGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/GuidGen/GuidGen.cpp -------------------------------------------------------------------------------- /Samples/GuidGen/GuidGen.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/GuidGen/GuidGen.rc -------------------------------------------------------------------------------- /Samples/GuidGen/GuidGen_2005.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/GuidGen/GuidGen_2005.sln -------------------------------------------------------------------------------- /Samples/GuidGen/GuidGen_2005.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/GuidGen/GuidGen_2005.vcproj -------------------------------------------------------------------------------- /Samples/GuidGen/GuidGen_2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/GuidGen/GuidGen_2010.sln -------------------------------------------------------------------------------- /Samples/GuidGen/GuidGen_2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/GuidGen/GuidGen_2010.vcxproj -------------------------------------------------------------------------------- /Samples/GuidGen/GuidGen_2010.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/GuidGen/GuidGen_2010.vcxproj.filters -------------------------------------------------------------------------------- /Samples/GuidGen/aboutdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/GuidGen/aboutdlg.h -------------------------------------------------------------------------------- /Samples/GuidGen/maindlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/GuidGen/maindlg.h -------------------------------------------------------------------------------- /Samples/GuidGen/res/GuidGen.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/GuidGen/res/GuidGen.ico -------------------------------------------------------------------------------- /Samples/GuidGen/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/GuidGen/resource.h -------------------------------------------------------------------------------- /Samples/GuidGen/stdatl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/GuidGen/stdatl.cpp -------------------------------------------------------------------------------- /Samples/GuidGen/stdatl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/GuidGen/stdatl.h -------------------------------------------------------------------------------- /Samples/MDIDocVw/MDI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MDIDocVw/MDI.cpp -------------------------------------------------------------------------------- /Samples/MDIDocVw/MDI.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MDIDocVw/MDI.rc -------------------------------------------------------------------------------- /Samples/MDIDocVw/MDI_2005.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MDIDocVw/MDI_2005.sln -------------------------------------------------------------------------------- /Samples/MDIDocVw/MDI_2005.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MDIDocVw/MDI_2005.vcproj -------------------------------------------------------------------------------- /Samples/MDIDocVw/MDI_2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MDIDocVw/MDI_2010.sln -------------------------------------------------------------------------------- /Samples/MDIDocVw/MDI_2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MDIDocVw/MDI_2010.vcxproj -------------------------------------------------------------------------------- /Samples/MDIDocVw/MDI_2010.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MDIDocVw/MDI_2010.vcxproj.filters -------------------------------------------------------------------------------- /Samples/MDIDocVw/mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MDIDocVw/mainfrm.h -------------------------------------------------------------------------------- /Samples/MDIDocVw/res/HelloDoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MDIDocVw/res/HelloDoc.ico -------------------------------------------------------------------------------- /Samples/MDIDocVw/res/MDI.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MDIDocVw/res/MDI.ICO -------------------------------------------------------------------------------- /Samples/MDIDocVw/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MDIDocVw/res/Toolbar.bmp -------------------------------------------------------------------------------- /Samples/MDIDocVw/res/bounce.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MDIDocVw/res/bounce.ico -------------------------------------------------------------------------------- /Samples/MDIDocVw/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MDIDocVw/resource.h -------------------------------------------------------------------------------- /Samples/MDIDocVw/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /Samples/MDIDocVw/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MDIDocVw/stdafx.h -------------------------------------------------------------------------------- /Samples/MTPad/MTPad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad/MTPad.cpp -------------------------------------------------------------------------------- /Samples/MTPad/MTPad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad/MTPad.h -------------------------------------------------------------------------------- /Samples/MTPad/MTPad.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad/MTPad.rc -------------------------------------------------------------------------------- /Samples/MTPad/MTPad_2005.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad/MTPad_2005.sln -------------------------------------------------------------------------------- /Samples/MTPad/MTPad_2005.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad/MTPad_2005.vcproj -------------------------------------------------------------------------------- /Samples/MTPad/MTPad_2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad/MTPad_2010.sln -------------------------------------------------------------------------------- /Samples/MTPad/MTPad_2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad/MTPad_2010.vcxproj -------------------------------------------------------------------------------- /Samples/MTPad/MTPad_2010.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad/MTPad_2010.vcxproj.filters -------------------------------------------------------------------------------- /Samples/MTPad/aboutdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad/aboutdlg.h -------------------------------------------------------------------------------- /Samples/MTPad/finddlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad/finddlg.h -------------------------------------------------------------------------------- /Samples/MTPad/mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad/mainfrm.h -------------------------------------------------------------------------------- /Samples/MTPad/res/MTPad.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad/res/MTPad.ico -------------------------------------------------------------------------------- /Samples/MTPad/res/MTPadDoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad/res/MTPadDoc.ico -------------------------------------------------------------------------------- /Samples/MTPad/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad/res/Toolbar.bmp -------------------------------------------------------------------------------- /Samples/MTPad/res/printpre.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad/res/printpre.bmp -------------------------------------------------------------------------------- /Samples/MTPad/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad/resource.h -------------------------------------------------------------------------------- /Samples/MTPad/stdatl.cpp: -------------------------------------------------------------------------------- 1 | #include "stdatl.h" 2 | -------------------------------------------------------------------------------- /Samples/MTPad/stdatl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad/stdatl.h -------------------------------------------------------------------------------- /Samples/MTPad/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad/view.h -------------------------------------------------------------------------------- /Samples/MTPad7/MTPad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad7/MTPad.cpp -------------------------------------------------------------------------------- /Samples/MTPad7/MTPad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad7/MTPad.h -------------------------------------------------------------------------------- /Samples/MTPad7/MTPad7_2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad7/MTPad7_2008.sln -------------------------------------------------------------------------------- /Samples/MTPad7/MTPad7_2008.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad7/MTPad7_2008.vcproj -------------------------------------------------------------------------------- /Samples/MTPad7/MTPad7_2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad7/MTPad7_2010.sln -------------------------------------------------------------------------------- /Samples/MTPad7/MTPad7_2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad7/MTPad7_2010.vcxproj -------------------------------------------------------------------------------- /Samples/MTPad7/MTPad7_2010.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad7/MTPad7_2010.vcxproj.filters -------------------------------------------------------------------------------- /Samples/MTPad7/MTPadRibbon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad7/MTPadRibbon.h -------------------------------------------------------------------------------- /Samples/MTPad7/MTPadRibbon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad7/MTPadRibbon.rc -------------------------------------------------------------------------------- /Samples/MTPad7/MTPadRibbon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad7/MTPadRibbon.xml -------------------------------------------------------------------------------- /Samples/MTPad7/aboutdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad7/aboutdlg.h -------------------------------------------------------------------------------- /Samples/MTPad7/finddlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad7/finddlg.h -------------------------------------------------------------------------------- /Samples/MTPad7/mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad7/mainfrm.h -------------------------------------------------------------------------------- /Samples/MTPad7/mtpad.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad7/mtpad.rc -------------------------------------------------------------------------------- /Samples/MTPad7/res/ClosePreviewHH.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad7/res/ClosePreviewHH.bmp -------------------------------------------------------------------------------- /Samples/MTPad7/res/GoToNextHS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad7/res/GoToNextHS.bmp -------------------------------------------------------------------------------- /Samples/MTPad7/res/GoToPreviousHS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad7/res/GoToPreviousHS.bmp -------------------------------------------------------------------------------- /Samples/MTPad7/res/MTPad.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad7/res/MTPad.ico -------------------------------------------------------------------------------- /Samples/MTPad7/res/MTPadDoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad7/res/MTPadDoc.ico -------------------------------------------------------------------------------- /Samples/MTPad7/res/PortraitLandscapeHS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad7/res/PortraitLandscapeHS.bmp -------------------------------------------------------------------------------- /Samples/MTPad7/res/PrintPreviewL.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad7/res/PrintPreviewL.bmp -------------------------------------------------------------------------------- /Samples/MTPad7/res/SelectAllS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad7/res/SelectAllS.bmp -------------------------------------------------------------------------------- /Samples/MTPad7/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad7/res/Toolbar.bmp -------------------------------------------------------------------------------- /Samples/MTPad7/res/UndoS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad7/res/UndoS.bmp -------------------------------------------------------------------------------- /Samples/MTPad7/res/printpre.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad7/res/printpre.bmp -------------------------------------------------------------------------------- /Samples/MTPad7/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad7/resource.h -------------------------------------------------------------------------------- /Samples/MTPad7/stdatl.cpp: -------------------------------------------------------------------------------- 1 | #include "stdatl.h" 2 | -------------------------------------------------------------------------------- /Samples/MTPad7/stdatl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad7/stdatl.h -------------------------------------------------------------------------------- /Samples/MTPad7/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MTPad7/view.h -------------------------------------------------------------------------------- /Samples/MemDlg/AboutDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MemDlg/AboutDlg.h -------------------------------------------------------------------------------- /Samples/MemDlg/AboutDlgIndirect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MemDlg/AboutDlgIndirect.h -------------------------------------------------------------------------------- /Samples/MemDlg/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MemDlg/MainFrm.h -------------------------------------------------------------------------------- /Samples/MemDlg/MemDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MemDlg/MemDlg.cpp -------------------------------------------------------------------------------- /Samples/MemDlg/MemDlg.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MemDlg/MemDlg.rc -------------------------------------------------------------------------------- /Samples/MemDlg/MemDlg_2005.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MemDlg/MemDlg_2005.sln -------------------------------------------------------------------------------- /Samples/MemDlg/MemDlg_2005.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MemDlg/MemDlg_2005.vcproj -------------------------------------------------------------------------------- /Samples/MemDlg/MemDlg_2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MemDlg/MemDlg_2010.sln -------------------------------------------------------------------------------- /Samples/MemDlg/MemDlg_2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MemDlg/MemDlg_2010.vcxproj -------------------------------------------------------------------------------- /Samples/MemDlg/MemDlg_2010.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MemDlg/MemDlg_2010.vcxproj.filters -------------------------------------------------------------------------------- /Samples/MemDlg/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MemDlg/View.h -------------------------------------------------------------------------------- /Samples/MemDlg/res/MemDlg.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MemDlg/res/MemDlg.ico -------------------------------------------------------------------------------- /Samples/MemDlg/res/toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MemDlg/res/toolbar.bmp -------------------------------------------------------------------------------- /Samples/MemDlg/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MemDlg/resource.h -------------------------------------------------------------------------------- /Samples/MemDlg/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MemDlg/stdafx.cpp -------------------------------------------------------------------------------- /Samples/MemDlg/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/MemDlg/stdafx.h -------------------------------------------------------------------------------- /Samples/TabBrowser/AboutDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/TabBrowser/AboutDlg.h -------------------------------------------------------------------------------- /Samples/TabBrowser/AddressCombo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/TabBrowser/AddressCombo.h -------------------------------------------------------------------------------- /Samples/TabBrowser/BrowserView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/TabBrowser/BrowserView.h -------------------------------------------------------------------------------- /Samples/TabBrowser/CustomTabView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/TabBrowser/CustomTabView.h -------------------------------------------------------------------------------- /Samples/TabBrowser/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/TabBrowser/MainFrm.h -------------------------------------------------------------------------------- /Samples/TabBrowser/OpenDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/TabBrowser/OpenDlg.h -------------------------------------------------------------------------------- /Samples/TabBrowser/TabBrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/TabBrowser/TabBrowser.cpp -------------------------------------------------------------------------------- /Samples/TabBrowser/TabBrowser.h: -------------------------------------------------------------------------------- 1 | // TabBrowser.h 2 | -------------------------------------------------------------------------------- /Samples/TabBrowser/TabBrowser.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/TabBrowser/TabBrowser.rc -------------------------------------------------------------------------------- /Samples/TabBrowser/TabBrowser_2005.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/TabBrowser/TabBrowser_2005.sln -------------------------------------------------------------------------------- /Samples/TabBrowser/TabBrowser_2005.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/TabBrowser/TabBrowser_2005.vcproj -------------------------------------------------------------------------------- /Samples/TabBrowser/TabBrowser_2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/TabBrowser/TabBrowser_2010.sln -------------------------------------------------------------------------------- /Samples/TabBrowser/TabBrowser_2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/TabBrowser/TabBrowser_2010.vcxproj -------------------------------------------------------------------------------- /Samples/TabBrowser/TabBrowser_2010.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/TabBrowser/TabBrowser_2010.vcxproj.filters -------------------------------------------------------------------------------- /Samples/TabBrowser/WindowsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/TabBrowser/WindowsDlg.h -------------------------------------------------------------------------------- /Samples/TabBrowser/res/Go.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/TabBrowser/res/Go.bmp -------------------------------------------------------------------------------- /Samples/TabBrowser/res/PageImage.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/TabBrowser/res/PageImage.bmp -------------------------------------------------------------------------------- /Samples/TabBrowser/res/TabBrowser.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/TabBrowser/res/TabBrowser.ico -------------------------------------------------------------------------------- /Samples/TabBrowser/res/TabToolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/TabBrowser/res/TabToolbar.bmp -------------------------------------------------------------------------------- /Samples/TabBrowser/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/TabBrowser/res/Toolbar.bmp -------------------------------------------------------------------------------- /Samples/TabBrowser/res/Toolbar_Big.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/TabBrowser/res/Toolbar_Big.bmp -------------------------------------------------------------------------------- /Samples/TabBrowser/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/TabBrowser/resource.h -------------------------------------------------------------------------------- /Samples/TabBrowser/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/TabBrowser/stdafx.cpp -------------------------------------------------------------------------------- /Samples/TabBrowser/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/TabBrowser/stdafx.h -------------------------------------------------------------------------------- /Samples/WTLExplorer/ExplorerCombo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/WTLExplorer/ExplorerCombo.h -------------------------------------------------------------------------------- /Samples/WTLExplorer/MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/WTLExplorer/MainFrm.cpp -------------------------------------------------------------------------------- /Samples/WTLExplorer/ShellMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/WTLExplorer/ShellMgr.cpp -------------------------------------------------------------------------------- /Samples/WTLExplorer/ShellMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/WTLExplorer/ShellMgr.h -------------------------------------------------------------------------------- /Samples/WTLExplorer/WTLExplorer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/WTLExplorer/WTLExplorer.cpp -------------------------------------------------------------------------------- /Samples/WTLExplorer/WTLExplorer.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/WTLExplorer/WTLExplorer.rc -------------------------------------------------------------------------------- /Samples/WTLExplorer/WTLExplorer_2005.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/WTLExplorer/WTLExplorer_2005.sln -------------------------------------------------------------------------------- /Samples/WTLExplorer/WTLExplorer_2005.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/WTLExplorer/WTLExplorer_2005.vcproj -------------------------------------------------------------------------------- /Samples/WTLExplorer/WTLExplorer_2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/WTLExplorer/WTLExplorer_2010.sln -------------------------------------------------------------------------------- /Samples/WTLExplorer/WTLExplorer_2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/WTLExplorer/WTLExplorer_2010.vcxproj -------------------------------------------------------------------------------- /Samples/WTLExplorer/WTLExplorer_2010.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/WTLExplorer/WTLExplorer_2010.vcxproj.filters -------------------------------------------------------------------------------- /Samples/WTLExplorer/mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/WTLExplorer/mainfrm.h -------------------------------------------------------------------------------- /Samples/WTLExplorer/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/WTLExplorer/res/Toolbar.bmp -------------------------------------------------------------------------------- /Samples/WTLExplorer/res/WTLExplorer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/WTLExplorer/res/WTLExplorer.ico -------------------------------------------------------------------------------- /Samples/WTLExplorer/res/go.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/WTLExplorer/res/go.bmp -------------------------------------------------------------------------------- /Samples/WTLExplorer/res/go1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/WTLExplorer/res/go1.bmp -------------------------------------------------------------------------------- /Samples/WTLExplorer/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/WTLExplorer/resource.h -------------------------------------------------------------------------------- /Samples/WTLExplorer/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/WTLExplorer/stdafx.cpp -------------------------------------------------------------------------------- /Samples/WTLExplorer/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/WTLExplorer/stdafx.h -------------------------------------------------------------------------------- /Samples/Wizard97Test/Wizard/FolderDialogStatusText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/Wizard/FolderDialogStatusText.h -------------------------------------------------------------------------------- /Samples/Wizard97Test/Wizard/TestWizard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/Wizard/TestWizard.cpp -------------------------------------------------------------------------------- /Samples/Wizard97Test/Wizard/TestWizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/Wizard/TestWizard.h -------------------------------------------------------------------------------- /Samples/Wizard97Test/Wizard/TestWizardCompletionPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/Wizard/TestWizardCompletionPage.cpp -------------------------------------------------------------------------------- /Samples/Wizard97Test/Wizard/TestWizardCompletionPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/Wizard/TestWizardCompletionPage.h -------------------------------------------------------------------------------- /Samples/Wizard97Test/Wizard/TestWizardFilePreviewPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/Wizard/TestWizardFilePreviewPage.cpp -------------------------------------------------------------------------------- /Samples/Wizard97Test/Wizard/TestWizardFilePreviewPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/Wizard/TestWizardFilePreviewPage.h -------------------------------------------------------------------------------- /Samples/Wizard97Test/Wizard/TestWizardInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/Wizard/TestWizardInfo.cpp -------------------------------------------------------------------------------- /Samples/Wizard97Test/Wizard/TestWizardInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/Wizard/TestWizardInfo.h -------------------------------------------------------------------------------- /Samples/Wizard97Test/Wizard/TestWizardOutputPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/Wizard/TestWizardOutputPage.cpp -------------------------------------------------------------------------------- /Samples/Wizard97Test/Wizard/TestWizardOutputPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/Wizard/TestWizardOutputPage.h -------------------------------------------------------------------------------- /Samples/Wizard97Test/Wizard/TestWizardPathFilterPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/Wizard/TestWizardPathFilterPage.cpp -------------------------------------------------------------------------------- /Samples/Wizard97Test/Wizard/TestWizardPathFilterPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/Wizard/TestWizardPathFilterPage.h -------------------------------------------------------------------------------- /Samples/Wizard97Test/Wizard/TestWizardSheet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/Wizard/TestWizardSheet.cpp -------------------------------------------------------------------------------- /Samples/Wizard97Test/Wizard/TestWizardSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/Wizard/TestWizardSheet.h -------------------------------------------------------------------------------- /Samples/Wizard97Test/Wizard/TestWizardWelcomePage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/Wizard/TestWizardWelcomePage.cpp -------------------------------------------------------------------------------- /Samples/Wizard97Test/Wizard/TestWizardWelcomePage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/Wizard/TestWizardWelcomePage.h -------------------------------------------------------------------------------- /Samples/Wizard97Test/Wizard97Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/Wizard97Test.cpp -------------------------------------------------------------------------------- /Samples/Wizard97Test/Wizard97Test.h: -------------------------------------------------------------------------------- 1 | // Wizard97Test.h 2 | -------------------------------------------------------------------------------- /Samples/Wizard97Test/Wizard97Test.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/Wizard97Test.rc -------------------------------------------------------------------------------- /Samples/Wizard97Test/Wizard97Test_2005.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/Wizard97Test_2005.sln -------------------------------------------------------------------------------- /Samples/Wizard97Test/Wizard97Test_2005.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/Wizard97Test_2005.vcproj -------------------------------------------------------------------------------- /Samples/Wizard97Test/Wizard97Test_2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/Wizard97Test_2010.sln -------------------------------------------------------------------------------- /Samples/Wizard97Test/Wizard97Test_2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/Wizard97Test_2010.vcxproj -------------------------------------------------------------------------------- /Samples/Wizard97Test/Wizard97Test_2010.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/Wizard97Test_2010.vcxproj.filters -------------------------------------------------------------------------------- /Samples/Wizard97Test/help/Context.h: -------------------------------------------------------------------------------- 1 | #include "..\resource.hm" 2 | -------------------------------------------------------------------------------- /Samples/Wizard97Test/help/Context.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/help/Context.txt -------------------------------------------------------------------------------- /Samples/Wizard97Test/help/TestWizard_Completion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/help/TestWizard_Completion.html -------------------------------------------------------------------------------- /Samples/Wizard97Test/help/TestWizard_Completion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/help/TestWizard_Completion.png -------------------------------------------------------------------------------- /Samples/Wizard97Test/help/TestWizard_Output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/help/TestWizard_Output.html -------------------------------------------------------------------------------- /Samples/Wizard97Test/help/TestWizard_Output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/help/TestWizard_Output.png -------------------------------------------------------------------------------- /Samples/Wizard97Test/help/TestWizard_PathFilter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/help/TestWizard_PathFilter.html -------------------------------------------------------------------------------- /Samples/Wizard97Test/help/TestWizard_PathFilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/help/TestWizard_PathFilter.png -------------------------------------------------------------------------------- /Samples/Wizard97Test/help/TestWizard_PreviewFileList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/help/TestWizard_PreviewFileList.html -------------------------------------------------------------------------------- /Samples/Wizard97Test/help/TestWizard_PreviewFileList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/help/TestWizard_PreviewFileList.png -------------------------------------------------------------------------------- /Samples/Wizard97Test/help/TestWizard_Welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/help/TestWizard_Welcome.html -------------------------------------------------------------------------------- /Samples/Wizard97Test/help/TestWizard_Welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/help/TestWizard_Welcome.png -------------------------------------------------------------------------------- /Samples/Wizard97Test/help/Wizard97Test.hhc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/help/Wizard97Test.hhc -------------------------------------------------------------------------------- /Samples/Wizard97Test/help/Wizard97Test.hhk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/help/Wizard97Test.hhk -------------------------------------------------------------------------------- /Samples/Wizard97Test/help/Wizard97Test.hhp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/help/Wizard97Test.hhp -------------------------------------------------------------------------------- /Samples/Wizard97Test/help/Wizard97Test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/help/Wizard97Test.html -------------------------------------------------------------------------------- /Samples/Wizard97Test/help/readme-help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/help/readme-help.txt -------------------------------------------------------------------------------- /Samples/Wizard97Test/help/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/help/style.css -------------------------------------------------------------------------------- /Samples/Wizard97Test/res/Wizard97Test.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/res/Wizard97Test.ico -------------------------------------------------------------------------------- /Samples/Wizard97Test/res/header.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/res/header.bmp -------------------------------------------------------------------------------- /Samples/Wizard97Test/res/watermark.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/res/watermark.bmp -------------------------------------------------------------------------------- /Samples/Wizard97Test/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/resource.h -------------------------------------------------------------------------------- /Samples/Wizard97Test/resource.hm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/resource.hm -------------------------------------------------------------------------------- /Samples/Wizard97Test/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/stdafx.cpp -------------------------------------------------------------------------------- /Samples/Wizard97Test/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/Samples/Wizard97Test/stdafx.h -------------------------------------------------------------------------------- /install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenk/WTL-Wizard-VS2022/HEAD/install.ps1 --------------------------------------------------------------------------------