├── .gitattributes ├── .github └── FUNDING.yml ├── AddInManager ├── AddIn.cs ├── AddInManager.csproj ├── AddInManager.csproj.user ├── MainForm.Designer.cs ├── MainForm.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── bin │ ├── Debug │ ├── Maticsoft.AddInManager.dll │ ├── Maticsoft.AddInManager.exe │ ├── Maticsoft.AddInManager.vshost.exe │ └── Maticsoft.Utility.dll │ └── Release │ ├── Maticsoft.AddInManager.dll │ └── Maticsoft.Utility.dll ├── Builder ├── BuilderBLLComm │ ├── BuilderBLL.cs │ ├── BuilderBLLComm.csproj │ ├── BuilderBLLComm.csproj.user │ ├── Properties │ │ └── AssemblyInfo.cs │ └── bin │ │ ├── Debug │ │ ├── Maticsoft.BuilderBLLComm.dll │ │ ├── Maticsoft.CmConfig.dll │ │ ├── Maticsoft.CodeHelper.dll │ │ ├── Maticsoft.IBuilder.dll │ │ ├── Maticsoft.IDBO.dll │ │ └── Maticsoft.Utility.dll │ │ └── Release │ │ ├── Maticsoft.BuilderBLLComm.dll │ │ ├── Maticsoft.BuilderBLLComm.rar │ │ ├── Maticsoft.CmConfig.dll │ │ ├── Maticsoft.CodeHelper.dll │ │ ├── Maticsoft.IBuilder.dll │ │ ├── Maticsoft.IDBO.dll │ │ └── Maticsoft.Utility.dll ├── BuilderBLLCommMatic │ ├── BuilderBLL.cs │ ├── BuilderBLLCommMatic.csproj │ ├── BuilderBLLCommMatic.csproj.user │ ├── Properties │ │ └── AssemblyInfo.cs │ └── bin │ │ ├── Debug │ │ ├── Maticsoft.BuilderBLLComm.dll │ │ ├── Maticsoft.CmConfig.dll │ │ ├── Maticsoft.CodeHelper.dll │ │ ├── Maticsoft.IBuilder.dll │ │ ├── Maticsoft.IDBO.dll │ │ └── Maticsoft.Utility.dll │ │ └── Release │ │ ├── Maticsoft.BuilderBLLComm.dll │ │ ├── Maticsoft.BuilderBLLComm.rar │ │ ├── Maticsoft.BuilderBLLCommMatic.dll │ │ ├── Maticsoft.CmConfig.dll │ │ ├── Maticsoft.CodeHelper.dll │ │ ├── Maticsoft.IBuilder.dll │ │ ├── Maticsoft.IDBO.dll │ │ └── Maticsoft.Utility.dll ├── BuilderBLLCommRiasy │ ├── BuilderBLL.cs │ ├── BuilderBLLCommRiasy.csproj │ ├── BuilderBLLCommRiasy.csproj.user │ ├── Properties │ │ └── AssemblyInfo.cs │ └── bin │ │ ├── Debug │ │ ├── LTP.BuilderBLLCommRiasy.dll │ │ ├── LTP.CmConfig.dll │ │ ├── LTP.CodeHelper.dll │ │ ├── LTP.IBuilder.dll │ │ ├── LTP.IDBO.dll │ │ └── LTP.Utility.dll │ │ └── Release │ │ ├── LTP.BuilderBLLComm.dll │ │ ├── LTP.BuilderBLLCommRiasy.dll │ │ ├── LTP.CmConfig.dll │ │ ├── LTP.CodeHelper.dll │ │ ├── LTP.IBuilder.dll │ │ ├── LTP.IDBO.dll │ │ └── LTP.Utility.dll ├── BuilderDAELLProc │ ├── BuilderDAL.cs │ ├── BuilderDALELProc.csproj │ ├── BuilderDALELProc.csproj.user │ ├── Properties │ │ └── AssemblyInfo.cs │ └── bin │ │ ├── Debug │ │ ├── Maticsoft.BuilderDALELProc.dll │ │ ├── Maticsoft.CmConfig.dll │ │ ├── Maticsoft.CodeHelper.dll │ │ ├── Maticsoft.IBuilder.dll │ │ ├── Maticsoft.IDBO.dll │ │ └── Maticsoft.Utility.dll │ │ └── Release │ │ ├── Maticsoft.BuilderDALELProc.dll │ │ ├── Maticsoft.CmConfig.dll │ │ ├── Maticsoft.CodeHelper.dll │ │ ├── Maticsoft.IBuilder.dll │ │ ├── Maticsoft.IDBO.dll │ │ └── Maticsoft.Utility.dll ├── BuilderDALELParam │ ├── BuilderDAL.cs │ ├── BuilderDALELParam.csproj │ ├── BuilderDALELParam.suo │ ├── BuilderDALParam.suo │ ├── Properties │ │ └── AssemblyInfo.cs │ └── bin │ │ ├── Debug │ │ ├── Maticsoft.BuilderDALELParam.dll │ │ ├── Maticsoft.CmConfig.dll │ │ ├── Maticsoft.CodeHelper.dll │ │ ├── Maticsoft.IBuilder.dll │ │ ├── Maticsoft.IDBO.dll │ │ └── Maticsoft.Utility.dll │ │ └── Release │ │ ├── Maticsoft.BuilderDALELParam.dll │ │ ├── Maticsoft.CmConfig.dll │ │ ├── Maticsoft.CodeHelper.dll │ │ ├── Maticsoft.IBuilder.dll │ │ ├── Maticsoft.IDBO.dll │ │ └── Maticsoft.Utility.dll ├── BuilderDALELSQL │ ├── BuilderDAL.cs │ ├── BuilderDALELSQL.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── bin │ │ ├── Debug │ │ ├── Maticsoft.BuilderDALELSQL.dll │ │ ├── Maticsoft.CmConfig.dll │ │ ├── Maticsoft.CodeHelper.dll │ │ ├── Maticsoft.IBuilder.dll │ │ ├── Maticsoft.IDBO.dll │ │ └── Maticsoft.Utility.dll │ │ └── Release │ │ ├── Maticsoft.BuilderDALELSQL.dll │ │ ├── Maticsoft.CmConfig.dll │ │ ├── Maticsoft.CodeHelper.dll │ │ ├── Maticsoft.IBuilder.dll │ │ ├── Maticsoft.IDBO.dll │ │ └── Maticsoft.Utility.dll ├── BuilderDALIBatisNet │ ├── BuilderDAL.cs │ ├── BuilderDALIBatisNet.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── bin │ │ ├── Debug │ │ ├── Maticsoft.BuilderDALIBatisNet.dll │ │ ├── Maticsoft.CmConfig.dll │ │ ├── Maticsoft.CodeHelper.dll │ │ ├── Maticsoft.IBuilder.dll │ │ ├── Maticsoft.IDBO.dll │ │ └── Maticsoft.Utility.dll │ │ └── Release │ │ ├── Maticsoft.BuilderDALIBatisNet.dll │ │ ├── Maticsoft.CmConfig.dll │ │ ├── Maticsoft.CodeHelper.dll │ │ ├── Maticsoft.IBuilder.dll │ │ ├── Maticsoft.IDBO.dll │ │ └── Maticsoft.Utility.dll ├── BuilderDALIBatisNetMapXML │ ├── BuilderDAL.cs │ ├── BuilderDALIBatisNetMapXML.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── bin │ │ ├── Debug │ │ ├── Maticsoft.BuilderDALIBatisNetMapXML.dll │ │ ├── Maticsoft.CmConfig.dll │ │ ├── Maticsoft.CodeHelper.dll │ │ ├── Maticsoft.IBuilder.dll │ │ ├── Maticsoft.IDBO.dll │ │ └── Maticsoft.Utility.dll │ │ └── Release │ │ ├── LTP.BuilderDALIBatisNet.dll │ │ ├── Maticsoft.BuilderDALIBatisNetMapXML.dll │ │ ├── Maticsoft.CmConfig.dll │ │ ├── Maticsoft.CodeHelper.dll │ │ ├── Maticsoft.IBuilder.dll │ │ ├── Maticsoft.IDBO.dll │ │ └── Maticsoft.Utility.dll ├── BuilderDALParam │ ├── BuilderDAL.cs │ ├── BuilderDALParam.csproj │ ├── BuilderDALParam.csproj.user │ ├── Properties │ │ └── AssemblyInfo.cs │ └── bin │ │ ├── Debug │ │ ├── Maticsoft.BuilderDALParam.dll │ │ ├── Maticsoft.CmConfig.dll │ │ ├── Maticsoft.CodeHelper.dll │ │ ├── Maticsoft.IBuilder.dll │ │ ├── Maticsoft.IDBO.dll │ │ └── Maticsoft.Utility.dll │ │ └── Release │ │ ├── Maticsoft.BuilderDALParam.dll │ │ ├── Maticsoft.CmConfig.dll │ │ ├── Maticsoft.CodeHelper.dll │ │ ├── Maticsoft.IBuilder.dll │ │ ├── Maticsoft.IDBO.dll │ │ └── Maticsoft.Utility.dll ├── BuilderDALParamRiasy │ ├── BuilderDAL.cs │ ├── BuilderDALParamRiasy.csproj │ ├── BuilderDALParamRiasy.csproj.user │ ├── Properties │ │ └── AssemblyInfo.cs │ └── bin │ │ ├── Debug │ │ ├── LTP.BuilderDALParam.dll │ │ ├── LTP.BuilderDALParamRiasy.dll │ │ ├── LTP.CmConfig.dll │ │ ├── LTP.CodeHelper.dll │ │ ├── LTP.IBuilder.dll │ │ ├── LTP.IDBO.dll │ │ └── LTP.Utility.dll │ │ └── Release │ │ ├── LTP.BuilderDALParam.dll │ │ ├── LTP.BuilderDALParamRiasy.dll │ │ ├── LTP.CmConfig.dll │ │ ├── LTP.CodeHelper.dll │ │ ├── LTP.IBuilder.dll │ │ ├── LTP.IDBO.dll │ │ └── LTP.Utility.dll ├── BuilderDALProc │ ├── BuilderDAL.cs │ ├── BuilderDALProc.csproj │ ├── BuilderDALProc.csproj.user │ ├── Properties │ │ └── AssemblyInfo.cs │ └── bin │ │ ├── Debug │ │ ├── Maticsoft.BuilderDALProc.dll │ │ ├── Maticsoft.CmConfig.dll │ │ ├── Maticsoft.CodeHelper.dll │ │ ├── Maticsoft.IBuilder.dll │ │ ├── Maticsoft.IDBO.dll │ │ └── Maticsoft.Utility.dll │ │ └── Release │ │ ├── Maticsoft.BuilderDALProc.dll │ │ ├── Maticsoft.CmConfig.dll │ │ ├── Maticsoft.CodeHelper.dll │ │ ├── Maticsoft.IBuilder.dll │ │ ├── Maticsoft.IDBO.dll │ │ └── Maticsoft.Utility.dll ├── BuilderDALSQL │ ├── BuilderDAL.cs │ ├── BuilderDALSQL.csproj │ ├── BuilderDALSQL.csproj.user │ ├── Properties │ │ └── AssemblyInfo.cs │ └── bin │ │ ├── Debug │ │ ├── Maticsoft.BuilderDALSQL.dll │ │ ├── Maticsoft.CmConfig.dll │ │ ├── Maticsoft.CodeHelper.dll │ │ ├── Maticsoft.IBuilder.dll │ │ ├── Maticsoft.IDBO.dll │ │ └── Maticsoft.Utility.dll │ │ └── Release │ │ ├── Maticsoft.BuilderDALSQL.dll │ │ ├── Maticsoft.CmConfig.dll │ │ ├── Maticsoft.CodeHelper.dll │ │ ├── Maticsoft.IBuilder.dll │ │ ├── Maticsoft.IDBO.dll │ │ └── Maticsoft.Utility.dll ├── BuilderDALTranMParam │ ├── BuilderDAL.cs │ ├── BuilderDALTranMParam.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── bin │ │ ├── Debug │ │ ├── Maticsoft.BuilderDALTranMParam.dll │ │ ├── Maticsoft.CmConfig.dll │ │ ├── Maticsoft.CodeHelper.dll │ │ ├── Maticsoft.IBuilder.dll │ │ ├── Maticsoft.IDBO.dll │ │ └── Maticsoft.Utility.dll │ │ └── Release │ │ ├── Maticsoft.BuilderDALTranMParam.dll │ │ ├── Maticsoft.CmConfig.dll │ │ ├── Maticsoft.CodeHelper.dll │ │ ├── Maticsoft.IBuilder.dll │ │ ├── Maticsoft.IDBO.dll │ │ └── Maticsoft.Utility.dll ├── BuilderDALTranParam │ ├── BuilderDAL.cs │ ├── BuilderDALTranParam.csproj │ ├── BuilderDALTranParam.csproj.user │ ├── Properties │ │ └── AssemblyInfo.cs │ └── bin │ │ ├── Debug │ │ ├── Maticsoft.BuilderDALTranParam.dll │ │ ├── Maticsoft.CmConfig.dll │ │ ├── Maticsoft.CodeHelper.dll │ │ ├── Maticsoft.IBuilder.dll │ │ ├── Maticsoft.IDBO.dll │ │ └── Maticsoft.Utility.dll │ │ └── Release │ │ ├── Maticsoft.BuilderDALTranParam.dll │ │ ├── Maticsoft.CmConfig.dll │ │ ├── Maticsoft.CodeHelper.dll │ │ ├── Maticsoft.IBuilder.dll │ │ ├── Maticsoft.IDBO.dll │ │ └── Maticsoft.Utility.dll ├── BuilderDALTranProc │ ├── BuilderDAL.cs │ ├── BuilderDALTranProc.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── bin │ │ └── Release │ │ ├── LTP.BuilderDALTranProc.dll │ │ ├── LTP.CmConfig.dll │ │ ├── LTP.CodeHelper.dll │ │ ├── LTP.IBuilder.dll │ │ ├── LTP.IDBO.dll │ │ └── LTP.Utility.dll ├── BuilderDALTranSQL │ ├── BuilderDAL.cs │ ├── BuilderDALTranSQL.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── bin │ │ └── Release │ │ ├── LTP.BuilderDALTranSQL.dll │ │ ├── LTP.CmConfig.dll │ │ ├── LTP.CodeHelper.dll │ │ ├── LTP.IBuilder.dll │ │ ├── LTP.IDBO.dll │ │ └── LTP.Utility.dll ├── BuilderIDAL │ ├── BuilderIDAL.cs │ ├── BuilderIDAL.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── bin │ │ ├── Debug │ │ ├── Maticsoft.BuilderIDAL.dll │ │ ├── Maticsoft.CmConfig.dll │ │ ├── Maticsoft.CodeHelper.dll │ │ ├── Maticsoft.IBuilder.dll │ │ ├── Maticsoft.IDBO.dll │ │ └── Maticsoft.Utility.dll │ │ └── Release │ │ ├── Maticsoft.BuilderIDAL.dll │ │ ├── Maticsoft.CmConfig.dll │ │ ├── Maticsoft.CodeHelper.dll │ │ ├── Maticsoft.IBuilder.dll │ │ ├── Maticsoft.IDBO.dll │ │ └── Maticsoft.Utility.dll ├── BuilderModel │ ├── BuilderModel.cs │ ├── BuilderModel.csproj │ ├── BuilderModel.csproj.user │ ├── BuilderModelT.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── bin │ │ ├── Debug │ │ ├── Maticsoft.BuilderModel.dll │ │ ├── Maticsoft.CmConfig.dll │ │ ├── Maticsoft.CodeHelper.dll │ │ ├── Maticsoft.IBuilder.dll │ │ ├── Maticsoft.IDBO.dll │ │ └── Maticsoft.Utility.dll │ │ └── Release │ │ ├── Maticsoft.BuilderModel.dll │ │ ├── Maticsoft.CmConfig.dll │ │ ├── Maticsoft.CodeHelper.dll │ │ ├── Maticsoft.IBuilder.dll │ │ ├── Maticsoft.IDBO.dll │ │ └── Maticsoft.Utility.dll ├── BuilderWeb │ ├── BuilderWeb.cs │ ├── BuilderWeb.csproj │ ├── BuilderWeb.csproj.user │ ├── Properties │ │ └── AssemblyInfo.cs │ └── bin │ │ ├── Debug │ │ ├── Maticsoft.BuilderWeb.dll │ │ ├── Maticsoft.CmConfig.dll │ │ ├── Maticsoft.CodeHelper.dll │ │ ├── Maticsoft.IBuilder.dll │ │ ├── Maticsoft.IDBO.dll │ │ └── Maticsoft.Utility.dll │ │ └── Release │ │ ├── Maticsoft.BuilderWeb.dll │ │ ├── Maticsoft.CmConfig.dll │ │ ├── Maticsoft.CodeHelper.dll │ │ ├── Maticsoft.IBuilder.dll │ │ ├── Maticsoft.IDBO.dll │ │ └── Maticsoft.Utility.dll ├── BuilderWebMVC │ ├── BuilderWeb.cs │ ├── BuilderWebMVC.csproj │ ├── BuilderWebMVC.csproj.user │ ├── Properties │ │ └── AssemblyInfo.cs │ └── bin │ │ ├── Debug │ │ ├── Maticsoft.BuilderWebMVC.dll │ │ ├── Maticsoft.CmConfig.dll │ │ ├── Maticsoft.CodeHelper.dll │ │ ├── Maticsoft.IBuilder.dll │ │ ├── Maticsoft.IDBO.dll │ │ └── Maticsoft.Utility.dll │ │ └── Release │ │ ├── Maticsoft.BuilderWebMVC.dll │ │ ├── Maticsoft.CmConfig.dll │ │ ├── Maticsoft.CodeHelper.dll │ │ ├── Maticsoft.IBuilder.dll │ │ ├── Maticsoft.IDBO.dll │ │ └── Maticsoft.Utility.dll ├── BuilderWebRiasy │ ├── BuilderWeb.cs │ ├── BuilderWebRiasy.csproj │ ├── BuilderWebRiasy.csproj.user │ ├── Properties │ │ └── AssemblyInfo.cs │ └── bin │ │ ├── Debug │ │ ├── LTP.BuilderWeb.dll │ │ ├── LTP.BuilderWebRiasy.dll │ │ ├── LTP.CmConfig.dll │ │ ├── LTP.CodeHelper.dll │ │ ├── LTP.IBuilder.dll │ │ ├── LTP.IDBO.dll │ │ └── LTP.Utility.dll │ │ └── Release │ │ ├── LTP.BuilderWeb.dll │ │ ├── LTP.BuilderWebRiasy.dll │ │ ├── LTP.CmConfig.dll │ │ ├── LTP.CodeHelper.dll │ │ ├── LTP.IBuilder.dll │ │ ├── LTP.IDBO.dll │ │ └── LTP.Utility.dll └── Lib │ ├── Maticsoft.BuilderBLLComm.dll │ ├── Maticsoft.BuilderBLLCommMatic.dll │ ├── Maticsoft.BuilderDALELParam.dll │ ├── Maticsoft.BuilderDALELProc.dll │ ├── Maticsoft.BuilderDALELSQL.dll │ ├── Maticsoft.BuilderDALIBatisNet.dll │ ├── Maticsoft.BuilderDALIBatisNetMapXML.dll │ ├── Maticsoft.BuilderDALParam.dll │ ├── Maticsoft.BuilderDALProc.dll │ ├── Maticsoft.BuilderDALSQL.dll │ ├── Maticsoft.BuilderDALTranMParam.dll │ ├── Maticsoft.BuilderDALTranParam.dll │ ├── Maticsoft.BuilderIDAL.dll │ ├── Maticsoft.BuilderModel.dll │ ├── Maticsoft.BuilderWeb.dll │ ├── Maticsoft.BuilderWebMVC.dll │ ├── Maticsoft.CodeHelper.dll │ ├── Maticsoft.IBuilder.dll │ ├── Maticsoft.IDBO.dll │ └── Maticsoft.Utility.dll ├── CmConfig ├── AppConfig.cs ├── CmConfig.csproj ├── CmConfig.csproj.user ├── Config.cs ├── DatatypeMap.cs ├── DbConfig.cs ├── ProjectCfg.cs ├── Properties │ └── AssemblyInfo.cs └── bin │ ├── Debug │ └── Maticsoft.CmConfig.dll │ └── Release │ └── Maticsoft.CmConfig.dll ├── CodeBuild ├── AssemblyInfo.cs ├── BuilderBLL.cs ├── BuilderDAL.cs ├── BuilderFactory.cs ├── BuilderFrame.cs ├── BuilderFrameF3.cs ├── BuilderFrameOne.cs ├── BuilderFrameS3.cs ├── BuilderModel.cs ├── BuilderModelT.cs ├── BuilderTemp.cs ├── BuilderWeb.cs ├── BuilderWebs.cs ├── CodeBuild.csproj ├── CodeBuild.csproj.user ├── CodeBuilders.cs ├── CodeCommon.cs └── bin │ ├── Debug │ ├── CodeBuild.dll │ ├── Maticsoft.AddInManager.dll │ ├── Maticsoft.AddInManager.exe │ ├── Maticsoft.BuilderModel.dll │ ├── Maticsoft.BuilderWeb.dll │ ├── Maticsoft.CmConfig.dll │ ├── Maticsoft.CodeBuild.dll │ ├── Maticsoft.CodeHelper.dll │ ├── Maticsoft.DBFactory.dll │ ├── Maticsoft.Engine.dll │ ├── Maticsoft.IBuilder.dll │ ├── Maticsoft.IDBO.dll │ └── Maticsoft.Utility.dll │ └── Release │ ├── Maticsoft.AddInManager.dll │ ├── Maticsoft.BuilderModel.dll │ ├── Maticsoft.BuilderWeb.dll │ ├── Maticsoft.CmConfig.dll │ ├── Maticsoft.CodeBuild.dll │ ├── Maticsoft.CodeHelper.dll │ ├── Maticsoft.DBFactory.dll │ ├── Maticsoft.Engine.dll │ ├── Maticsoft.IBuilder.dll │ ├── Maticsoft.IDBO.dll │ └── Maticsoft.Utility.dll ├── CodeHelper ├── CodeCommon.cs ├── CodeHelper.csproj ├── CodeHelper.csproj.user ├── CodeInfo.cs ├── CodeKeys.cs ├── ColumnInfo.cs ├── DbObjectTool.cs ├── Language.cs ├── ModelTran.cs ├── NameRule.cs ├── Properties │ └── AssemblyInfo.cs ├── TableInfo.cs └── bin │ ├── Debug │ ├── Maticsoft.CmConfig.dll │ ├── Maticsoft.CodeHelper.dll │ └── Maticsoft.Utility.dll │ └── Release │ ├── Maticsoft.CmConfig.dll │ ├── Maticsoft.CodeHelper.dll │ └── Maticsoft.Utility.dll ├── CodeMatic ├── ClassView.cs ├── ClassView.resx ├── CodeMatic.csproj.user ├── Codematic.csproj ├── CommonDialogs │ ├── FrmGotoLine.cs │ ├── FrmGotoLine.resx │ ├── FrmSearch.cs │ └── FrmSearch.resx ├── Components │ ├── CMTreeNode.cs │ ├── FormCommon.cs │ ├── LogInfo.cs │ ├── ObjHelper.cs │ └── SysInfo.cs ├── Config │ ├── AppConfig.cs │ ├── Config.cs │ ├── DbConfig.cs │ └── ProjectCfg.cs ├── DbOption.cs ├── DbOption.resx ├── DbToCode.suo ├── DbTypeSel.Designer.cs ├── DbTypeSel.cs ├── DbTypeSel.resx ├── DbView.Designer.cs ├── DbView.cs ├── DbView.resx ├── FormAbout.Designer.cs ├── FormAbout.cs ├── FormAbout.resx ├── LoginForm.cs ├── LoginForm.resx ├── LoginMySQL.Designer.cs ├── LoginMySQL.cs ├── LoginMySQL.resx ├── LoginOledb.cs ├── LoginOledb.resx ├── LoginOledbF.Designer.cs ├── LoginOledbF.cs ├── LoginOledbF.resx ├── LoginOra.cs ├── LoginOra.resx ├── LoginSQLite.Designer.cs ├── LoginSQLite.cs ├── LoginSQLite.resx ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── NewFile.Designer.cs ├── NewFile.cs ├── NewFile.resx ├── NewProject.Designer.cs ├── NewProject.cs ├── NewProject.resx ├── NewProjectDB.cs ├── NewProjectDB.resx ├── NewProjectSet.Designer.cs ├── NewProjectSet.cs ├── NewProjectSet.resx ├── OptionFrm.Designer.cs ├── OptionFrm.cs ├── OptionFrm.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── app.manifest ├── PropertyForm.Designer.cs ├── PropertyForm.cs ├── PropertyForm.resx ├── Resources │ ├── Control.gif │ ├── Thumbs.db │ ├── about.gif │ ├── about3.jpg │ ├── ajax-loader1.gif │ ├── loginmysql.jpg │ ├── n2.png │ ├── option.gif │ └── startpagetop.png ├── SendErrInfo.Designer.cs ├── SendErrInfo.cs ├── SendErrInfo.resx ├── SolutionExplorer.cs ├── SolutionExplorer.resx ├── SplashForm.cs ├── SplashForm.de.resx ├── SplashForm.resx ├── TabPages │ ├── CodeEditor.Designer.cs │ ├── CodeEditor.cs │ ├── CodeEditor.resx │ ├── CodeMaker.Designer.cs │ ├── CodeMaker.cs │ ├── CodeMaker.resx │ ├── CodeMakerM.Designer.cs │ ├── CodeMakerM.cs │ ├── CodeMakerM.resx │ ├── CodeMakerTran.Designer.cs │ ├── CodeMakerTran.cs │ ├── CodeMakerTran.resx │ ├── CodeTemp.Designer.cs │ ├── CodeTemp.cs │ ├── CodeTemp.resx │ ├── CodeTemplate.Designer.cs │ ├── CodeTemplate.cs │ ├── CodeTemplate.resx │ ├── DataList.Designer.cs │ ├── DataList.cs │ ├── DataList.resx │ ├── DbBrowser.Designer.cs │ ├── DbBrowser.cs │ ├── DbBrowser.resx │ ├── DbQuery.Designer.cs │ ├── DbQuery.cs │ ├── DbQuery.resx │ ├── HtmlEditor.Designer.cs │ ├── HtmlEditor.cs │ ├── HtmlEditor.resx │ ├── IEView.Designer.cs │ ├── IEView.cs │ ├── IEView.resx │ ├── StartPageForm.Designer.cs │ ├── StartPageForm.cs │ └── StartPageForm.resx ├── TempView.Designer.cs ├── TempView.cs ├── TempView.resx ├── Thumbs.db ├── Tool │ ├── CodeExpTabInput.Designer.cs │ ├── CodeExpTabInput.cs │ ├── CodeExpTabInput.resx │ ├── CodeExport.cs │ ├── CodeExport.resx │ ├── ConverteCS2VB.cs │ ├── ConverteCS2VB.resx │ ├── DataExport.cs │ ├── DataExport.resx │ ├── DbToScript.cs │ ├── DbToScript.resx │ ├── DbToWeb.Designer.cs │ ├── DbToWeb.cs │ ├── DbToWeb.resx │ ├── DbToWord.cs │ ├── DbToWord.resx │ ├── FrmAddToSnippet.cs │ ├── FrmAddToSnippet.resx │ ├── Loading.cs │ ├── Loading.resx │ ├── ProjectExp.cs │ ├── ProjectExp.resx │ ├── ProjectExpadd.cs │ ├── ProjectExpadd.resx │ ├── ProjectSet.cs │ ├── ProjectSet.resx │ ├── RenameFrm.cs │ ├── RenameFrm.resx │ ├── SearchTables.Designer.cs │ ├── SearchTables.cs │ ├── SearchTables.resx │ ├── TemplateBatch.Designer.cs │ ├── TemplateBatch.cs │ └── TemplateBatch.resx ├── UserControls │ ├── DALTypeAddIn.Designer.cs │ ├── DALTypeAddIn.cs │ ├── DALTypeAddIn.resx │ ├── TempNode.cs │ ├── UcAddInManage.Designer.cs │ ├── UcAddInManage.cs │ ├── UcAddInManage.resx │ ├── UcCSMyCode.Designer.cs │ ├── UcCSMyCode.cs │ ├── UcCSMyCode.resx │ ├── UcCSNameSet.Designer.cs │ ├── UcCSNameSet.cs │ ├── UcCSNameSet.resx │ ├── UcCSSet.Designer.cs │ ├── UcCSSet.cs │ ├── UcCSSet.resx │ ├── UcCodeSet.Designer.cs │ ├── UcCodeSet.cs │ ├── UcCodeSet.resx │ ├── UcCodeView.Designer.cs │ ├── UcCodeView.cs │ ├── UcCodeView.resx │ ├── UcDBSet.Designer.cs │ ├── UcDBSet.cs │ ├── UcDBSet.resx │ ├── UcDatatype.Designer.cs │ ├── UcDatatype.cs │ ├── UcDatatype.resx │ ├── UcDatatypeMap.Designer.cs │ ├── UcDatatypeMap.cs │ ├── UcDatatypeMap.resx │ ├── UcLanguage.Designer.cs │ ├── UcLanguage.cs │ ├── UcLanguage.resx │ ├── UcOptionEditor.cs │ ├── UcOptionEditor.resx │ ├── UcOptionStartUp.cs │ ├── UcOptionStartUp.resx │ ├── UcOptionsEnviroments.cs │ ├── UcOptionsEnviroments.resx │ ├── UcOptionsQuerySettings.cs │ ├── UcOptionsQuerySettings.resx │ ├── UcSysManage.Designer.cs │ ├── UcSysManage.cs │ └── UcSysManage.resx ├── Web References │ └── UpServer │ │ ├── Reference.cs │ │ ├── Reference.map │ │ ├── upserver.disco │ │ └── upserver.wsdl ├── XSLTFile1.xslt ├── app.config ├── app.ico ├── bin │ ├── Debug │ │ ├── BaseClass │ │ │ ├── ConfigHelper.cs │ │ │ ├── DataCache.cs │ │ │ ├── DbHelperOleDb.cs │ │ │ ├── DbHelperOra.cs │ │ │ ├── DbHelperSQL.cs │ │ │ ├── MessageBox.cs │ │ │ ├── PageValidate.cs │ │ │ ├── UP_GetRecordByPage.txt │ │ │ └── UP_GetRecordByPageOrder.txt │ │ ├── CodeDAL.addin │ │ ├── Codematic.exe │ │ ├── Codematic.exe.config │ │ ├── DatatypeMap.cfg │ │ ├── DbSetting.config │ │ ├── ICSharpCode.TextEditor.dll │ │ ├── ICSharpCode.TextEditor.dll.config │ │ ├── LTP.ConvertCS2VB.dll │ │ ├── LTP.TextEditor.dll │ │ ├── LTPTextEditor.dll │ │ ├── MagicLibrary.dll │ │ ├── Maticsoft.AddInManager.dll │ │ ├── Maticsoft.BuilderBLLComm.dll │ │ ├── Maticsoft.BuilderDALELParam.dll │ │ ├── Maticsoft.BuilderDALELProc.dll │ │ ├── Maticsoft.BuilderDALELSQL.dll │ │ ├── Maticsoft.BuilderDALIBatisNet.dll │ │ ├── Maticsoft.BuilderDALIBatisNetMapXML.dll │ │ ├── Maticsoft.BuilderDALParam.dll │ │ ├── Maticsoft.BuilderDALProc.dll │ │ ├── Maticsoft.BuilderDALSQL.dll │ │ ├── Maticsoft.BuilderDALTranMParam.dll │ │ ├── Maticsoft.BuilderDALTranParam.dll │ │ ├── Maticsoft.BuilderIDAL.dll │ │ ├── Maticsoft.BuilderModel.dll │ │ ├── Maticsoft.BuilderWeb.dll │ │ ├── Maticsoft.CmConfig.dll │ │ ├── Maticsoft.CodeBuild.dll │ │ ├── Maticsoft.CodeHelper.dll │ │ ├── Maticsoft.DBFactory.dll │ │ ├── Maticsoft.DbObjects.dll │ │ ├── Maticsoft.Engine.dll │ │ ├── Maticsoft.IBuilder.dll │ │ ├── Maticsoft.IDBO.dll │ │ ├── Maticsoft.Utility.dll │ │ ├── MySql.Data.dll │ │ ├── PinkieControls.dll │ │ ├── ProConfig.config │ │ ├── Snippets.xml │ │ ├── System.Data.SQLite.DLL │ │ ├── System.Data.SQLite.xml │ │ ├── Template │ │ │ ├── Class1.cs │ │ │ ├── Class1.vb │ │ │ ├── CodematicDemoF3 │ │ │ │ ├── BLL │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── BLL.csproj │ │ │ │ │ ├── BLL.csproj.user │ │ │ │ │ └── SysManage.cs │ │ │ │ ├── CodematicDemoF3.sln │ │ │ │ ├── CodematicDemoF3.suo │ │ │ │ ├── DALFactory │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── DALFactory.csproj │ │ │ │ │ ├── DALFactory.csproj.user │ │ │ │ │ ├── DataAccess.cs │ │ │ │ │ └── DataCache.cs │ │ │ │ ├── DBUtility │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── BaseSqlMapDao.cs │ │ │ │ │ ├── CommandInfo.cs │ │ │ │ │ ├── DBUtility.csproj │ │ │ │ │ ├── DBUtility.csproj.user │ │ │ │ │ ├── DBUtility.suo │ │ │ │ │ ├── DESEncrypt.cs │ │ │ │ │ ├── DbHelperMySQL.cs │ │ │ │ │ ├── DbHelperOleDb.cs │ │ │ │ │ ├── DbHelperOra.cs │ │ │ │ │ ├── DbHelperSQL.cs │ │ │ │ │ ├── DbHelperSQL2.cs │ │ │ │ │ ├── DbHelperSQLP.cs │ │ │ │ │ ├── DbHelperSQLite.cs │ │ │ │ │ ├── OracleHelper.cs │ │ │ │ │ ├── PubConstant.cs │ │ │ │ │ └── SQLHelper.cs │ │ │ │ ├── IDAL │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── IDAL.csproj │ │ │ │ │ ├── IDAL.csproj.user │ │ │ │ │ └── ISysManage.cs │ │ │ │ ├── Lib │ │ │ │ │ ├── LTP.Accounts.dll │ │ │ │ │ ├── LtpPageControl.dll │ │ │ │ │ ├── Maticsoft.Common.dll │ │ │ │ │ ├── Microsoft.Web.UI.WebControls.dll │ │ │ │ │ ├── MySql.Data.dll │ │ │ │ │ ├── System.Data.SQLite.DLL │ │ │ │ │ └── System.Data.SQLite.lib │ │ │ │ ├── Model │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Model.csproj │ │ │ │ │ ├── Model.csproj.user │ │ │ │ │ └── SysNode.cs │ │ │ │ ├── OracleDAL │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── OracleDAL.csproj │ │ │ │ │ ├── OracleDAL.csproj.user │ │ │ │ │ ├── PubConstant.cs │ │ │ │ │ ├── SysManage.cs │ │ │ │ │ └── SysManage1.cs │ │ │ │ ├── SQLServerDAL │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── PubConstant.cs │ │ │ │ │ ├── SQLServerDAL.csproj │ │ │ │ │ ├── SQLServerDAL.csproj.user │ │ │ │ │ ├── SysManage.cs │ │ │ │ │ └── SysManage1.cs │ │ │ │ ├── Web │ │ │ │ │ ├── Admin │ │ │ │ │ │ ├── Accounts │ │ │ │ │ │ │ ├── Add.aspx.cs │ │ │ │ │ │ │ ├── Add.aspx.designer.cs │ │ │ │ │ │ │ ├── Add.aspx.resx │ │ │ │ │ │ │ ├── Admin │ │ │ │ │ │ │ │ ├── EditRole.aspx.cs │ │ │ │ │ │ │ │ ├── EditRole.aspx.designer.cs │ │ │ │ │ │ │ │ ├── EditRole.aspx.resx │ │ │ │ │ │ │ │ ├── Index.aspx.cs │ │ │ │ │ │ │ │ ├── Index.aspx.designer.cs │ │ │ │ │ │ │ │ ├── Index.aspx.resx │ │ │ │ │ │ │ │ ├── PermissionAdmin.aspx.cs │ │ │ │ │ │ │ │ ├── PermissionAdmin.aspx.designer.cs │ │ │ │ │ │ │ │ ├── PermissionAdmin.aspx.resx │ │ │ │ │ │ │ │ ├── RoleAdmin.aspx │ │ │ │ │ │ │ │ ├── RoleAdmin.aspx.cs │ │ │ │ │ │ │ │ ├── RoleAdmin.aspx.designer.cs │ │ │ │ │ │ │ │ ├── RoleAdmin.aspx.resx │ │ │ │ │ │ │ │ ├── RoleAssignment.aspx.cs │ │ │ │ │ │ │ │ ├── RoleAssignment.aspx.designer.cs │ │ │ │ │ │ │ │ ├── RoleAssignment.aspx.resx │ │ │ │ │ │ │ │ ├── UserAdmin.aspx │ │ │ │ │ │ │ │ ├── UserAdmin.aspx.cs │ │ │ │ │ │ │ │ ├── UserAdmin.aspx.designer.cs │ │ │ │ │ │ │ │ ├── UserAdmin.aspx.resx │ │ │ │ │ │ │ │ ├── editrole.aspx │ │ │ │ │ │ │ │ ├── index.aspx │ │ │ │ │ │ │ │ ├── permissionadmin.aspx │ │ │ │ │ │ │ │ └── roleassignment.aspx │ │ │ │ │ │ │ ├── SetPass.aspx.cs │ │ │ │ │ │ │ ├── SetPass.aspx.designer.cs │ │ │ │ │ │ │ ├── SetPass.aspx.resx │ │ │ │ │ │ │ ├── add.aspx │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ ├── adminLeftArrow.gif │ │ │ │ │ │ │ │ ├── admin_top_bg.gif │ │ │ │ │ │ │ │ ├── bg.gif │ │ │ │ │ │ │ │ ├── bg1.gif │ │ │ │ │ │ │ │ ├── bg2.gif │ │ │ │ │ │ │ │ ├── bg3.gif │ │ │ │ │ │ │ │ ├── bottombg.gif │ │ │ │ │ │ │ │ ├── btnreview.GIF │ │ │ │ │ │ │ │ ├── button-join.gif │ │ │ │ │ │ │ │ ├── button-login.gif │ │ │ │ │ │ │ │ ├── button_add.gif │ │ │ │ │ │ │ │ ├── button_back.gif │ │ │ │ │ │ │ │ ├── button_cancel.gif │ │ │ │ │ │ │ │ ├── button_close.gif │ │ │ │ │ │ │ │ ├── button_del.gif │ │ │ │ │ │ │ │ ├── button_edit.gif │ │ │ │ │ │ │ │ ├── button_look.gif │ │ │ │ │ │ │ │ ├── button_ok.gif │ │ │ │ │ │ │ │ ├── button_save.gif │ │ │ │ │ │ │ │ ├── button_search.GIF │ │ │ │ │ │ │ │ ├── button_sift.gif │ │ │ │ │ │ │ │ ├── button_update.gif │ │ │ │ │ │ │ │ ├── lan1.gif │ │ │ │ │ │ │ │ ├── lan12.gif │ │ │ │ │ │ │ │ ├── navspacer.gif │ │ │ │ │ │ │ │ ├── skin2 │ │ │ │ │ │ │ │ │ ├── downbg.gif │ │ │ │ │ │ │ │ │ └── topbar_01.jpg │ │ │ │ │ │ │ │ └── topbg.gif │ │ │ │ │ │ │ ├── setpass.aspx │ │ │ │ │ │ │ ├── style │ │ │ │ │ │ │ │ ├── css.css │ │ │ │ │ │ │ │ └── style.css │ │ │ │ │ │ │ ├── userPass.aspx.cs │ │ │ │ │ │ │ ├── userPass.aspx.designer.cs │ │ │ │ │ │ │ ├── userPass.aspx.resx │ │ │ │ │ │ │ ├── userinfo.aspx │ │ │ │ │ │ │ ├── userinfo.aspx.cs │ │ │ │ │ │ │ ├── userinfo.aspx.designer.cs │ │ │ │ │ │ │ ├── userinfo.aspx.resx │ │ │ │ │ │ │ ├── usermodify.aspx │ │ │ │ │ │ │ ├── usermodify.aspx.cs │ │ │ │ │ │ │ ├── usermodify.aspx.designer.cs │ │ │ │ │ │ │ ├── usermodify.aspx.resx │ │ │ │ │ │ │ ├── userpass.aspx │ │ │ │ │ │ │ ├── userupdate.aspx │ │ │ │ │ │ │ ├── userupdate.aspx.cs │ │ │ │ │ │ │ ├── userupdate.aspx.designer.cs │ │ │ │ │ │ │ └── userupdate.aspx.resx │ │ │ │ │ │ ├── Images │ │ │ │ │ │ │ ├── Briefcase16.gif │ │ │ │ │ │ │ ├── Briefcase32.gif │ │ │ │ │ │ │ ├── Loading.gif │ │ │ │ │ │ │ ├── MenuImg │ │ │ │ │ │ │ │ ├── Programs16.gif │ │ │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ │ │ ├── folder16.gif │ │ │ │ │ │ │ │ ├── foldergreen_16.gif │ │ │ │ │ │ │ │ ├── ger16.gif │ │ │ │ │ │ │ │ ├── help16.gif │ │ │ │ │ │ │ │ ├── news16.gif │ │ │ │ │ │ │ │ ├── out16.gif │ │ │ │ │ │ │ │ ├── quanx16.gif │ │ │ │ │ │ │ │ ├── thumbnails.gif │ │ │ │ │ │ │ │ ├── times.gif │ │ │ │ │ │ │ │ ├── ts16.gif │ │ │ │ │ │ │ │ ├── user16.gif │ │ │ │ │ │ │ │ ├── xinx16.gif │ │ │ │ │ │ │ │ ├── zhut16.gif │ │ │ │ │ │ │ │ └── zjsp16.gif │ │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ │ ├── a_te01.gif │ │ │ │ │ │ │ ├── a_te02.gif │ │ │ │ │ │ │ ├── about16.gif │ │ │ │ │ │ │ ├── b1.gif │ │ │ │ │ │ │ ├── b11-1.gif │ │ │ │ │ │ │ ├── b11-2.gif │ │ │ │ │ │ │ ├── b11.gif │ │ │ │ │ │ │ ├── b12.gif │ │ │ │ │ │ │ ├── b13-1.gif │ │ │ │ │ │ │ ├── b13-2.gif │ │ │ │ │ │ │ ├── b13.gif │ │ │ │ │ │ │ ├── b3.gif │ │ │ │ │ │ │ ├── b4.gif │ │ │ │ │ │ │ ├── b5.gif │ │ │ │ │ │ │ ├── bar_00.gif │ │ │ │ │ │ │ ├── bar_01.gif │ │ │ │ │ │ │ ├── bar_02.gif │ │ │ │ │ │ │ ├── bar_03.gif │ │ │ │ │ │ │ ├── bar_04.gif │ │ │ │ │ │ │ ├── bar_05.gif │ │ │ │ │ │ │ ├── bar_06.gif │ │ │ │ │ │ │ ├── bar_07.gif │ │ │ │ │ │ │ ├── bar_08.gif │ │ │ │ │ │ │ ├── bar_10.gif │ │ │ │ │ │ │ ├── bg.gif │ │ │ │ │ │ │ ├── bg_01.gif │ │ │ │ │ │ │ ├── bg_02.gif │ │ │ │ │ │ │ ├── bg_03.gif │ │ │ │ │ │ │ ├── bgx.GIF │ │ │ │ │ │ │ ├── blank.gif │ │ │ │ │ │ │ ├── bottom_01.gif │ │ │ │ │ │ │ ├── bottom_02.gif │ │ │ │ │ │ │ ├── bottom_03.gif │ │ │ │ │ │ │ ├── button_edit.gif │ │ │ │ │ │ │ ├── button_search.GIF │ │ │ │ │ │ │ ├── c6.gif │ │ │ │ │ │ │ ├── card16.gif │ │ │ │ │ │ │ ├── card32.gif │ │ │ │ │ │ │ ├── company16.gif │ │ │ │ │ │ │ ├── css.css │ │ │ │ │ │ │ ├── desktop16.gif │ │ │ │ │ │ │ ├── desktop_01.gif │ │ │ │ │ │ │ ├── desktop_02.gif │ │ │ │ │ │ │ ├── desktop_03.gif │ │ │ │ │ │ │ ├── dsj16.gif │ │ │ │ │ │ │ ├── dsj32.gif │ │ │ │ │ │ │ ├── f3.gif │ │ │ │ │ │ │ ├── f4.gif │ │ │ │ │ │ │ ├── find16.gif │ │ │ │ │ │ │ ├── find32.gif │ │ │ │ │ │ │ ├── folder16.gif │ │ │ │ │ │ │ ├── folder32.gif │ │ │ │ │ │ │ ├── foldergreen_16.gif │ │ │ │ │ │ │ ├── gongg16.gif │ │ │ │ │ │ │ ├── help16.gif │ │ │ │ │ │ │ ├── help32.gif │ │ │ │ │ │ │ ├── in_bg.gif │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── left-1-1.gif │ │ │ │ │ │ │ ├── left-1-2.gif │ │ │ │ │ │ │ ├── left-1-3.gif │ │ │ │ │ │ │ ├── left-1.gif │ │ │ │ │ │ │ ├── left-2-1.gif │ │ │ │ │ │ │ ├── left-2-2.gif │ │ │ │ │ │ │ ├── left-2-3.gif │ │ │ │ │ │ │ ├── left-2.gif │ │ │ │ │ │ │ ├── left-3-1.gif │ │ │ │ │ │ │ ├── left-3-2.gif │ │ │ │ │ │ │ ├── left-3-3.gif │ │ │ │ │ │ │ ├── left-3.gif │ │ │ │ │ │ │ ├── left-bj-1.gif │ │ │ │ │ │ │ ├── left-bj-2.gif │ │ │ │ │ │ │ ├── left-bj-3.gif │ │ │ │ │ │ │ ├── left-bj.gif │ │ │ │ │ │ │ ├── login.css │ │ │ │ │ │ │ ├── login_p_img02.gif │ │ │ │ │ │ │ ├── login_p_img03.gif │ │ │ │ │ │ │ ├── login_p_img04.gif │ │ │ │ │ │ │ ├── login_p_img05.gif │ │ │ │ │ │ │ ├── login_p_img11.gif │ │ │ │ │ │ │ ├── mag16.gif │ │ │ │ │ │ │ ├── mail16.gif │ │ │ │ │ │ │ ├── main_01.gif │ │ │ │ │ │ │ ├── main_04.gif │ │ │ │ │ │ │ ├── main_05.gif │ │ │ │ │ │ │ ├── main_06.gif │ │ │ │ │ │ │ ├── main_08.gif │ │ │ │ │ │ │ ├── main_09.gif │ │ │ │ │ │ │ ├── member_t04.JPG │ │ │ │ │ │ │ ├── message16.gif │ │ │ │ │ │ │ ├── module16.gif │ │ │ │ │ │ │ ├── more1.gif │ │ │ │ │ │ │ ├── myfile16.gif │ │ │ │ │ │ │ ├── point07.gif │ │ │ │ │ │ │ ├── right-bj-1.gif │ │ │ │ │ │ │ ├── right-bj-2.gif │ │ │ │ │ │ │ ├── right-bj-3.gif │ │ │ │ │ │ │ ├── right-bj.gif │ │ │ │ │ │ │ ├── spacer.gif │ │ │ │ │ │ │ ├── style.css │ │ │ │ │ │ │ ├── top-1-1.gif │ │ │ │ │ │ │ ├── top-1-2.gif │ │ │ │ │ │ │ ├── top-1-3.gif │ │ │ │ │ │ │ ├── top-1.gif │ │ │ │ │ │ │ ├── top-2-1.gif │ │ │ │ │ │ │ ├── top-2-2.gif │ │ │ │ │ │ │ ├── top-2-3.gif │ │ │ │ │ │ │ ├── top-2.gif │ │ │ │ │ │ │ ├── top-3-1.gif │ │ │ │ │ │ │ ├── top-3-2.gif │ │ │ │ │ │ │ ├── top-3-3.gif │ │ │ │ │ │ │ ├── top-3.gif │ │ │ │ │ │ │ ├── top-4-1.gif │ │ │ │ │ │ │ ├── top-4-2.gif │ │ │ │ │ │ │ ├── top-4-3.gif │ │ │ │ │ │ │ ├── top-4.gif │ │ │ │ │ │ │ ├── top-5-1.gif │ │ │ │ │ │ │ ├── top-5-2.gif │ │ │ │ │ │ │ ├── top-5-3.gif │ │ │ │ │ │ │ ├── top-5.gif │ │ │ │ │ │ │ ├── top-bj-1.gif │ │ │ │ │ │ │ ├── top-bj-2.gif │ │ │ │ │ │ │ ├── top-bj-3.gif │ │ │ │ │ │ │ ├── top-bj.gif │ │ │ │ │ │ │ ├── topbar_01.jpg │ │ │ │ │ │ │ ├── topbar_02.jpg │ │ │ │ │ │ │ ├── topbar_03.jpg │ │ │ │ │ │ │ ├── user16.gif │ │ │ │ │ │ │ ├── vote16.gif │ │ │ │ │ │ │ ├── x16.gif │ │ │ │ │ │ │ ├── xinx16.gif │ │ │ │ │ │ │ ├── yw16.gif │ │ │ │ │ │ │ ├── zhut16.gif │ │ │ │ │ │ │ └── zjsp16.gif │ │ │ │ │ │ ├── Left.aspx │ │ │ │ │ │ ├── Left.aspx.cs │ │ │ │ │ │ ├── Left.aspx.designer.cs │ │ │ │ │ │ ├── Left.aspx.resx │ │ │ │ │ │ ├── Login.aspx │ │ │ │ │ │ ├── Login.aspx.cs │ │ │ │ │ │ ├── Login.aspx.designer.cs │ │ │ │ │ │ ├── Login.aspx.resx │ │ │ │ │ │ ├── Logout.aspx │ │ │ │ │ │ ├── Logout.aspx.cs │ │ │ │ │ │ ├── Logout.aspx.designer.cs │ │ │ │ │ │ ├── Logout.aspx.resx │ │ │ │ │ │ ├── Main.aspx │ │ │ │ │ │ ├── Main.aspx.cs │ │ │ │ │ │ ├── Main.aspx.designer.cs │ │ │ │ │ │ ├── Main.aspx.resx │ │ │ │ │ │ ├── Main.htm │ │ │ │ │ │ ├── Relogin.aspx │ │ │ │ │ │ ├── Relogin.aspx.cs │ │ │ │ │ │ ├── Relogin.aspx.designer.cs │ │ │ │ │ │ ├── Relogin.aspx.resx │ │ │ │ │ │ ├── ShowCallBoard.aspx │ │ │ │ │ │ ├── ShowCallBoard.aspx.cs │ │ │ │ │ │ ├── ShowCallBoard.aspx.designer.cs │ │ │ │ │ │ ├── ShowCallBoard.aspx.resx │ │ │ │ │ │ ├── Spliter.aspx │ │ │ │ │ │ ├── Spliter.aspx.cs │ │ │ │ │ │ ├── Spliter.aspx.designer.cs │ │ │ │ │ │ ├── Spliter.aspx.resx │ │ │ │ │ │ ├── Style.css │ │ │ │ │ │ ├── SysManage │ │ │ │ │ │ │ ├── CheckBox.js │ │ │ │ │ │ │ ├── LogIndex.aspx.cs │ │ │ │ │ │ │ ├── LogIndex.aspx.designer.cs │ │ │ │ │ │ │ ├── LogIndex.aspx.resx │ │ │ │ │ │ │ ├── LogShow.aspx.cs │ │ │ │ │ │ │ ├── LogShow.aspx.designer.cs │ │ │ │ │ │ │ ├── LogShow.aspx.resx │ │ │ │ │ │ │ ├── add.aspx │ │ │ │ │ │ │ ├── add.aspx.cs │ │ │ │ │ │ │ ├── add.aspx.designer.cs │ │ │ │ │ │ │ ├── add.aspx.resx │ │ │ │ │ │ │ ├── delete.aspx │ │ │ │ │ │ │ ├── delete.aspx.cs │ │ │ │ │ │ │ ├── delete.aspx.designer.cs │ │ │ │ │ │ │ ├── delete.aspx.resx │ │ │ │ │ │ │ ├── logindex.aspx │ │ │ │ │ │ │ ├── logshow.aspx │ │ │ │ │ │ │ ├── makesql.aspx │ │ │ │ │ │ │ ├── makesql.aspx.cs │ │ │ │ │ │ │ ├── makesql.aspx.designer.cs │ │ │ │ │ │ │ ├── makesql.aspx.resx │ │ │ │ │ │ │ ├── modify.aspx │ │ │ │ │ │ │ ├── modify.aspx.cs │ │ │ │ │ │ │ ├── modify.aspx.designer.cs │ │ │ │ │ │ │ ├── modify.aspx.resx │ │ │ │ │ │ │ ├── search.aspx │ │ │ │ │ │ │ ├── search.aspx.cs │ │ │ │ │ │ │ ├── search.aspx.designer.cs │ │ │ │ │ │ │ ├── search.aspx.resx │ │ │ │ │ │ │ ├── show.aspx │ │ │ │ │ │ │ ├── show.aspx.cs │ │ │ │ │ │ │ ├── show.aspx.designer.cs │ │ │ │ │ │ │ ├── show.aspx.resx │ │ │ │ │ │ │ ├── treelist.aspx │ │ │ │ │ │ │ ├── treelist.aspx.cs │ │ │ │ │ │ │ ├── treelist.aspx.designer.cs │ │ │ │ │ │ │ └── treelist.aspx.resx │ │ │ │ │ │ ├── Top.aspx │ │ │ │ │ │ ├── Top.aspx.cs │ │ │ │ │ │ ├── Top.aspx.designer.cs │ │ │ │ │ │ ├── Top.aspx.resx │ │ │ │ │ │ ├── toindex.aspx │ │ │ │ │ │ ├── toindex.aspx.cs │ │ │ │ │ │ ├── toindex.aspx.designer.cs │ │ │ │ │ │ └── toindex.aspx.resx │ │ │ │ │ ├── App_Themes │ │ │ │ │ │ ├── BlueTheme │ │ │ │ │ │ │ ├── Control.skin │ │ │ │ │ │ │ └── Default.css │ │ │ │ │ │ ├── Green2Theme │ │ │ │ │ │ │ ├── Control.skin │ │ │ │ │ │ │ └── Default.css │ │ │ │ │ │ ├── GreenTheme │ │ │ │ │ │ │ ├── Control.skin │ │ │ │ │ │ │ └── Default.css │ │ │ │ │ │ ├── PurpleTheme │ │ │ │ │ │ │ ├── Control.skin │ │ │ │ │ │ │ └── Default.css │ │ │ │ │ │ └── RedTheme │ │ │ │ │ │ │ ├── Control.skin │ │ │ │ │ │ │ └── Default.css │ │ │ │ │ ├── Controls │ │ │ │ │ │ ├── CheckRight.ascx.cs │ │ │ │ │ │ ├── CheckRight.ascx.designer.cs │ │ │ │ │ │ ├── CheckRight.ascx.resx │ │ │ │ │ │ ├── CopyRight.ascx.cs │ │ │ │ │ │ ├── CopyRight.ascx.designer.cs │ │ │ │ │ │ ├── CopyRight.ascx.resx │ │ │ │ │ │ ├── checkright.ascx │ │ │ │ │ │ └── copyright.ascx │ │ │ │ │ ├── Default.aspx │ │ │ │ │ ├── Default.aspx.cs │ │ │ │ │ ├── Default.aspx.designer.cs │ │ │ │ │ ├── Global.asax │ │ │ │ │ ├── Global.asax.cs │ │ │ │ │ ├── Global.asax.resx │ │ │ │ │ ├── Images │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ ├── code1.JPG │ │ │ │ │ │ ├── code2.JPG │ │ │ │ │ │ └── sts.gif │ │ │ │ │ ├── MasterPage.master │ │ │ │ │ ├── MasterPage.master.cs │ │ │ │ │ ├── MasterPage.master.designer.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ ├── Style.css │ │ │ │ │ ├── Web.config │ │ │ │ │ ├── Web.csproj │ │ │ │ │ ├── Web.csproj.user │ │ │ │ │ ├── bin │ │ │ │ │ │ ├── LTP.Accounts.dll │ │ │ │ │ │ ├── LtpPageControl.dll │ │ │ │ │ │ └── Microsoft.Web.UI.WebControls.dll │ │ │ │ │ ├── js │ │ │ │ │ │ └── CheckBox.js │ │ │ │ │ └── webctrl_client │ │ │ │ │ │ └── 1_0 │ │ │ │ │ │ ├── Images │ │ │ │ │ │ ├── folder.gif │ │ │ │ │ │ ├── folderopen.gif │ │ │ │ │ │ ├── html.gif │ │ │ │ │ │ └── root.gif │ │ │ │ │ │ ├── MultiPage.htc │ │ │ │ │ │ ├── TabStrip.htc │ │ │ │ │ │ ├── TreeImages │ │ │ │ │ │ ├── L.gif │ │ │ │ │ │ ├── Lminus.gif │ │ │ │ │ │ ├── Lplus.gif │ │ │ │ │ │ ├── Rminus.gif │ │ │ │ │ │ ├── Rplus.gif │ │ │ │ │ │ ├── T.gif │ │ │ │ │ │ ├── Tminus.gif │ │ │ │ │ │ ├── Tplus.gif │ │ │ │ │ │ ├── f.gif │ │ │ │ │ │ ├── fminus.gif │ │ │ │ │ │ ├── fplus.gif │ │ │ │ │ │ ├── i.gif │ │ │ │ │ │ ├── minus.gif │ │ │ │ │ │ ├── plus.gif │ │ │ │ │ │ ├── r.gif │ │ │ │ │ │ ├── rtl │ │ │ │ │ │ │ ├── F.gif │ │ │ │ │ │ │ ├── Fminus.gif │ │ │ │ │ │ │ ├── Fplus.gif │ │ │ │ │ │ │ ├── I.gif │ │ │ │ │ │ │ ├── L.gif │ │ │ │ │ │ │ ├── Lminus.gif │ │ │ │ │ │ │ ├── Lplus.gif │ │ │ │ │ │ │ ├── Rminus.gif │ │ │ │ │ │ │ ├── Rplus.gif │ │ │ │ │ │ │ ├── T.gif │ │ │ │ │ │ │ ├── Tminus.gif │ │ │ │ │ │ │ ├── Tplus.gif │ │ │ │ │ │ │ ├── minus.gif │ │ │ │ │ │ │ ├── plus.gif │ │ │ │ │ │ │ ├── r.gif │ │ │ │ │ │ │ └── white.gif │ │ │ │ │ │ └── white.gif │ │ │ │ │ │ ├── toolbar.htc │ │ │ │ │ │ └── treeview.htc │ │ │ │ └── 说明.txt │ │ │ ├── CodematicDemoS3 │ │ │ │ ├── BLL │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── BLL.csproj │ │ │ │ │ └── BLL.csproj.user │ │ │ │ ├── CodematicDemoS3.sln │ │ │ │ ├── CodematicDemoS3.suo │ │ │ │ ├── DAL │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── DAL.csproj │ │ │ │ │ └── DAL.csproj.user │ │ │ │ ├── DBUtility │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── BaseSqlMapDao.cs │ │ │ │ │ ├── CommandInfo.cs │ │ │ │ │ ├── DBUtility.csproj │ │ │ │ │ ├── DBUtility.csproj.user │ │ │ │ │ ├── DBUtility.suo │ │ │ │ │ ├── DESEncrypt.cs │ │ │ │ │ ├── DbHelperMySQL.cs │ │ │ │ │ ├── DbHelperOleDb.cs │ │ │ │ │ ├── DbHelperOra.cs │ │ │ │ │ ├── DbHelperSQL.cs │ │ │ │ │ ├── DbHelperSQL2.cs │ │ │ │ │ ├── DbHelperSQLP.cs │ │ │ │ │ ├── DbHelperSQLite.cs │ │ │ │ │ ├── OracleHelper.cs │ │ │ │ │ ├── PubConstant.cs │ │ │ │ │ └── SQLHelper.cs │ │ │ │ ├── Lib │ │ │ │ │ ├── LTP.Accounts.dll │ │ │ │ │ ├── LtpPageControl.dll │ │ │ │ │ ├── Maticsoft.Common.dll │ │ │ │ │ ├── Microsoft.Web.UI.WebControls.dll │ │ │ │ │ ├── MySql.Data.dll │ │ │ │ │ ├── System.Data.SQLite.DLL │ │ │ │ │ └── System.Data.SQLite.lib │ │ │ │ ├── Model │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Model.csproj │ │ │ │ │ └── Model.csproj.user │ │ │ │ └── Web │ │ │ │ │ ├── App_Themes │ │ │ │ │ ├── BlueTheme │ │ │ │ │ │ ├── Control.skin │ │ │ │ │ │ └── Default.css │ │ │ │ │ ├── Green2Theme │ │ │ │ │ │ ├── Control.skin │ │ │ │ │ │ └── Default.css │ │ │ │ │ ├── GreenTheme │ │ │ │ │ │ ├── Control.skin │ │ │ │ │ │ └── Default.css │ │ │ │ │ ├── PurpleTheme │ │ │ │ │ │ ├── Control.skin │ │ │ │ │ │ └── Default.css │ │ │ │ │ └── RedTheme │ │ │ │ │ │ ├── Control.skin │ │ │ │ │ │ └── Default.css │ │ │ │ │ ├── Controls │ │ │ │ │ ├── CheckRight.ascx.cs │ │ │ │ │ ├── CheckRight.ascx.designer.cs │ │ │ │ │ ├── CheckRight.ascx.resx │ │ │ │ │ ├── CopyRight.ascx.cs │ │ │ │ │ ├── CopyRight.ascx.designer.cs │ │ │ │ │ ├── CopyRight.ascx.resx │ │ │ │ │ ├── checkright.ascx │ │ │ │ │ └── copyright.ascx │ │ │ │ │ ├── Default.aspx │ │ │ │ │ ├── Default.aspx.cs │ │ │ │ │ ├── Default.aspx.designer.cs │ │ │ │ │ ├── Global.asax │ │ │ │ │ ├── Global.asax.cs │ │ │ │ │ ├── Global.asax.resx │ │ │ │ │ ├── Images │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ ├── code2.JPG │ │ │ │ │ └── top1.gif │ │ │ │ │ ├── MasterPage.master │ │ │ │ │ ├── MasterPage.master.cs │ │ │ │ │ ├── MasterPage.master.designer.cs │ │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ ├── Style.css │ │ │ │ │ ├── Web.config │ │ │ │ │ ├── Web.csproj │ │ │ │ │ └── Web.csproj.user │ │ │ ├── CodematicDemoS3p │ │ │ │ ├── BLL │ │ │ │ │ ├── BLL.csproj │ │ │ │ │ ├── BLL.csproj.user │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ └── SysManage.cs │ │ │ │ ├── CodematicDemoS3.sln │ │ │ │ ├── CodematicDemoS3.suo │ │ │ │ ├── Common │ │ │ │ │ ├── Assistant.cs │ │ │ │ │ ├── ChartHelper.cs │ │ │ │ │ ├── Common.csproj │ │ │ │ │ ├── Common.csproj.user │ │ │ │ │ ├── Common.suo │ │ │ │ │ ├── ConfigHelper.cs │ │ │ │ │ ├── DEncrypt │ │ │ │ │ │ ├── DESEncrypt.cs │ │ │ │ │ │ ├── DEncrypt.cs │ │ │ │ │ │ ├── HashEncode.cs │ │ │ │ │ │ ├── RSACryption.cs │ │ │ │ │ │ └── vssver2.scc │ │ │ │ │ ├── DataCache.cs │ │ │ │ │ ├── DataToExcel.cs │ │ │ │ │ ├── HttpProc.cs │ │ │ │ │ ├── INIFile.cs │ │ │ │ │ ├── MailSender.cs │ │ │ │ │ ├── MessageBox.cs │ │ │ │ │ ├── PageBase.cs │ │ │ │ │ ├── PageValidate.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ ├── RMB.cs │ │ │ │ │ ├── StringPlus.cs │ │ │ │ │ ├── TimeParser.cs │ │ │ │ │ ├── UrlOper.cs │ │ │ │ │ └── vssver2.scc │ │ │ │ ├── DAL │ │ │ │ │ ├── DAL.csproj │ │ │ │ │ ├── DAL.csproj.user │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ └── SysManage.cs │ │ │ │ ├── DBUtility │ │ │ │ │ ├── BaseSqlMapDao.cs │ │ │ │ │ ├── CommandInfo.cs │ │ │ │ │ ├── DBUtility.csproj │ │ │ │ │ ├── DBUtility.csproj.user │ │ │ │ │ ├── DBUtility.suo │ │ │ │ │ ├── DESEncrypt.cs │ │ │ │ │ ├── DbHelperMySQL.cs │ │ │ │ │ ├── DbHelperOleDb.cs │ │ │ │ │ ├── DbHelperOra.cs │ │ │ │ │ ├── DbHelperSQL.cs │ │ │ │ │ ├── DbHelperSQL2.cs │ │ │ │ │ ├── DbHelperSQLP.cs │ │ │ │ │ ├── DbHelperSQLite.cs │ │ │ │ │ ├── OracleHelper.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ ├── PubConstant.cs │ │ │ │ │ └── SQLHelper.cs │ │ │ │ ├── Lib │ │ │ │ │ ├── COM.Excel.dll │ │ │ │ │ ├── Excel.dll │ │ │ │ │ ├── IBatisNet.Common.dll │ │ │ │ │ ├── IBatisNet.DataMapper.dll │ │ │ │ │ ├── LTP.Accounts.dll │ │ │ │ │ ├── LTP.Accounts.txt │ │ │ │ │ ├── LtpPageControl.dll │ │ │ │ │ ├── Microsoft.Web.UI.WebControls.dll │ │ │ │ │ ├── MySql.Data.dll │ │ │ │ │ ├── OWC10Chart.dll │ │ │ │ │ ├── OpenSmtp.dll │ │ │ │ │ ├── System.Data.SQLite.DLL │ │ │ │ │ └── System.Data.SQLite.lib │ │ │ │ ├── Model │ │ │ │ │ ├── Model.csproj │ │ │ │ │ ├── Model.csproj.user │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ └── SysNode.cs │ │ │ │ └── Web │ │ │ │ │ ├── Admin │ │ │ │ │ ├── Accounts │ │ │ │ │ │ ├── Add.aspx.cs │ │ │ │ │ │ ├── Add.aspx.designer.cs │ │ │ │ │ │ ├── Add.aspx.resx │ │ │ │ │ │ ├── Admin │ │ │ │ │ │ │ ├── EditRole.aspx.cs │ │ │ │ │ │ │ ├── EditRole.aspx.designer.cs │ │ │ │ │ │ │ ├── EditRole.aspx.resx │ │ │ │ │ │ │ ├── Index.aspx.cs │ │ │ │ │ │ │ ├── Index.aspx.designer.cs │ │ │ │ │ │ │ ├── Index.aspx.resx │ │ │ │ │ │ │ ├── PermissionAdmin.aspx.cs │ │ │ │ │ │ │ ├── PermissionAdmin.aspx.designer.cs │ │ │ │ │ │ │ ├── PermissionAdmin.aspx.resx │ │ │ │ │ │ │ ├── RoleAdmin.aspx │ │ │ │ │ │ │ ├── RoleAdmin.aspx.cs │ │ │ │ │ │ │ ├── RoleAdmin.aspx.designer.cs │ │ │ │ │ │ │ ├── RoleAdmin.aspx.resx │ │ │ │ │ │ │ ├── RoleAssignment.aspx.cs │ │ │ │ │ │ │ ├── RoleAssignment.aspx.designer.cs │ │ │ │ │ │ │ ├── RoleAssignment.aspx.resx │ │ │ │ │ │ │ ├── UserAdmin.aspx │ │ │ │ │ │ │ ├── UserAdmin.aspx.cs │ │ │ │ │ │ │ ├── UserAdmin.aspx.designer.cs │ │ │ │ │ │ │ ├── UserAdmin.aspx.resx │ │ │ │ │ │ │ ├── UserAdminList.aspx │ │ │ │ │ │ │ ├── UserAdminList.aspx.cs │ │ │ │ │ │ │ ├── UserAdminList.aspx.designer.cs │ │ │ │ │ │ │ ├── UserAssignmentRole.aspx │ │ │ │ │ │ │ ├── UserAssignmentRole.aspx.cs │ │ │ │ │ │ │ ├── UserAssignmentRole.aspx.designer.cs │ │ │ │ │ │ │ ├── UserRoleAssignment.aspx │ │ │ │ │ │ │ ├── UserRoleAssignment.aspx.cs │ │ │ │ │ │ │ ├── UserRoleAssignment.aspx.designer.cs │ │ │ │ │ │ │ ├── UserType.aspx │ │ │ │ │ │ │ ├── UserType.aspx.cs │ │ │ │ │ │ │ ├── UserType.aspx.designer.cs │ │ │ │ │ │ │ ├── editrole.aspx │ │ │ │ │ │ │ ├── index.aspx │ │ │ │ │ │ │ ├── permissionadmin.aspx │ │ │ │ │ │ │ └── roleassignment.aspx │ │ │ │ │ │ ├── SetPass.aspx.cs │ │ │ │ │ │ ├── SetPass.aspx.designer.cs │ │ │ │ │ │ ├── add.aspx │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── adminLeftArrow.gif │ │ │ │ │ │ │ ├── admin_top_bg.gif │ │ │ │ │ │ │ ├── bg.gif │ │ │ │ │ │ │ ├── bg1.gif │ │ │ │ │ │ │ ├── bg2.gif │ │ │ │ │ │ │ ├── bg3.gif │ │ │ │ │ │ │ ├── bottombg.gif │ │ │ │ │ │ │ ├── btnreview.GIF │ │ │ │ │ │ │ ├── button-join.gif │ │ │ │ │ │ │ ├── button-login.gif │ │ │ │ │ │ │ ├── button_add.gif │ │ │ │ │ │ │ ├── button_back.gif │ │ │ │ │ │ │ ├── button_cancel.gif │ │ │ │ │ │ │ ├── button_close.gif │ │ │ │ │ │ │ ├── button_del.gif │ │ │ │ │ │ │ ├── button_edit.gif │ │ │ │ │ │ │ ├── button_look.gif │ │ │ │ │ │ │ ├── button_ok.gif │ │ │ │ │ │ │ ├── button_save.gif │ │ │ │ │ │ │ ├── button_search.GIF │ │ │ │ │ │ │ ├── button_sift.gif │ │ │ │ │ │ │ ├── button_update.gif │ │ │ │ │ │ │ ├── lan1.gif │ │ │ │ │ │ │ ├── lan12.gif │ │ │ │ │ │ │ ├── loading.gif │ │ │ │ │ │ │ ├── navspacer.gif │ │ │ │ │ │ │ ├── skin2 │ │ │ │ │ │ │ │ ├── downbg.gif │ │ │ │ │ │ │ │ └── topbar_01.jpg │ │ │ │ │ │ │ └── topbg.gif │ │ │ │ │ │ ├── setpass.aspx │ │ │ │ │ │ ├── style │ │ │ │ │ │ │ ├── css.css │ │ │ │ │ │ │ └── style.css │ │ │ │ │ │ ├── userPass.aspx.cs │ │ │ │ │ │ ├── userPass.aspx.designer.cs │ │ │ │ │ │ ├── userPass.aspx.resx │ │ │ │ │ │ ├── userinfo.aspx │ │ │ │ │ │ ├── userinfo.aspx.cs │ │ │ │ │ │ ├── userinfo.aspx.designer.cs │ │ │ │ │ │ ├── userinfo.aspx.resx │ │ │ │ │ │ ├── usermodify.aspx │ │ │ │ │ │ ├── usermodify.aspx.cs │ │ │ │ │ │ ├── usermodify.aspx.designer.cs │ │ │ │ │ │ ├── usermodify.aspx.resx │ │ │ │ │ │ ├── userpass.aspx │ │ │ │ │ │ ├── userupdate.aspx │ │ │ │ │ │ ├── userupdate.aspx.cs │ │ │ │ │ │ ├── userupdate.aspx.designer.cs │ │ │ │ │ │ └── userupdate.aspx.resx │ │ │ │ │ ├── Images │ │ │ │ │ │ ├── Briefcase16.gif │ │ │ │ │ │ ├── Briefcase32.gif │ │ │ │ │ │ ├── Loading.gif │ │ │ │ │ │ ├── MenuImg │ │ │ │ │ │ │ ├── 288.GIF │ │ │ │ │ │ │ ├── Programs16.gif │ │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ │ ├── about16.gif │ │ │ │ │ │ │ ├── bbs16.gif │ │ │ │ │ │ │ ├── find16.gif │ │ │ │ │ │ │ ├── folder16.gif │ │ │ │ │ │ │ ├── foldergreen_16.gif │ │ │ │ │ │ │ ├── ger16.gif │ │ │ │ │ │ │ ├── help16.gif │ │ │ │ │ │ │ ├── news16.gif │ │ │ │ │ │ │ ├── out16.gif │ │ │ │ │ │ │ ├── quanx16.gif │ │ │ │ │ │ │ ├── thumbnails.gif │ │ │ │ │ │ │ ├── times.gif │ │ │ │ │ │ │ ├── ts16.gif │ │ │ │ │ │ │ ├── user16.gif │ │ │ │ │ │ │ ├── xinx16.gif │ │ │ │ │ │ │ ├── zhut16.gif │ │ │ │ │ │ │ └── zjsp16.gif │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ ├── a_te01.gif │ │ │ │ │ │ ├── a_te02.gif │ │ │ │ │ │ ├── about16.gif │ │ │ │ │ │ ├── add16.gif │ │ │ │ │ │ ├── b1.gif │ │ │ │ │ │ ├── b11-1.gif │ │ │ │ │ │ ├── b11-2.gif │ │ │ │ │ │ ├── b11.gif │ │ │ │ │ │ ├── b12.gif │ │ │ │ │ │ ├── b13-1.gif │ │ │ │ │ │ ├── b13-2.gif │ │ │ │ │ │ ├── b13.gif │ │ │ │ │ │ ├── b3.gif │ │ │ │ │ │ ├── b4.gif │ │ │ │ │ │ ├── b5.gif │ │ │ │ │ │ ├── bar_00.gif │ │ │ │ │ │ ├── bar_01.gif │ │ │ │ │ │ ├── bar_02.gif │ │ │ │ │ │ ├── bar_03.gif │ │ │ │ │ │ ├── bar_04.gif │ │ │ │ │ │ ├── bar_05.gif │ │ │ │ │ │ ├── bar_06.gif │ │ │ │ │ │ ├── bar_07.gif │ │ │ │ │ │ ├── bar_08.gif │ │ │ │ │ │ ├── bar_10.gif │ │ │ │ │ │ ├── bg.gif │ │ │ │ │ │ ├── bg_01.gif │ │ │ │ │ │ ├── bg_02.gif │ │ │ │ │ │ ├── bg_03.gif │ │ │ │ │ │ ├── bgx.GIF │ │ │ │ │ │ ├── blank.gif │ │ │ │ │ │ ├── bottom_01.gif │ │ │ │ │ │ ├── bottom_02.gif │ │ │ │ │ │ ├── bottom_03.gif │ │ │ │ │ │ ├── button_edit.gif │ │ │ │ │ │ ├── button_search.GIF │ │ │ │ │ │ ├── c6.gif │ │ │ │ │ │ ├── card16.gif │ │ │ │ │ │ ├── card32.gif │ │ │ │ │ │ ├── company16.gif │ │ │ │ │ │ ├── css.css │ │ │ │ │ │ ├── d2.gif │ │ │ │ │ │ ├── d3.gif │ │ │ │ │ │ ├── desktop16.gif │ │ │ │ │ │ ├── desktop32.gif │ │ │ │ │ │ ├── desktop_01.gif │ │ │ │ │ │ ├── desktop_02.gif │ │ │ │ │ │ ├── desktop_03.gif │ │ │ │ │ │ ├── dsj16.gif │ │ │ │ │ │ ├── dsj32.gif │ │ │ │ │ │ ├── f3.gif │ │ │ │ │ │ ├── f4.gif │ │ │ │ │ │ ├── find16.gif │ │ │ │ │ │ ├── find32.gif │ │ │ │ │ │ ├── folder16.gif │ │ │ │ │ │ ├── folder32.gif │ │ │ │ │ │ ├── foldergreen_16.gif │ │ │ │ │ │ ├── ger16.gif │ │ │ │ │ │ ├── ger32.gif │ │ │ │ │ │ ├── gongg16.gif │ │ │ │ │ │ ├── gongg32.gif │ │ │ │ │ │ ├── gongzkp16.gif │ │ │ │ │ │ ├── gongzkp32.gif │ │ │ │ │ │ ├── help16.gif │ │ │ │ │ │ ├── help32.gif │ │ │ │ │ │ ├── image.gif │ │ │ │ │ │ ├── in_bg.gif │ │ │ │ │ │ ├── left-1-1.gif │ │ │ │ │ │ ├── left-1-2.gif │ │ │ │ │ │ ├── left-1-3.gif │ │ │ │ │ │ ├── left-1.gif │ │ │ │ │ │ ├── left-2-1.gif │ │ │ │ │ │ ├── left-2-2.gif │ │ │ │ │ │ ├── left-2-3.gif │ │ │ │ │ │ ├── left-2.gif │ │ │ │ │ │ ├── left-3-1.gif │ │ │ │ │ │ ├── left-3-2.gif │ │ │ │ │ │ ├── left-3-3.gif │ │ │ │ │ │ ├── left-3.gif │ │ │ │ │ │ ├── left-bj-1.gif │ │ │ │ │ │ ├── left-bj-2.gif │ │ │ │ │ │ ├── left-bj-3.gif │ │ │ │ │ │ ├── left-bj.gif │ │ │ │ │ │ ├── login.css │ │ │ │ │ │ ├── login_p_img02.gif │ │ │ │ │ │ ├── login_p_img03.gif │ │ │ │ │ │ ├── login_p_img04.gif │ │ │ │ │ │ ├── login_p_img05.gif │ │ │ │ │ │ ├── login_p_img11.gif │ │ │ │ │ │ ├── mag16.gif │ │ │ │ │ │ ├── mail16.gif │ │ │ │ │ │ ├── main_01.gif │ │ │ │ │ │ ├── main_04.gif │ │ │ │ │ │ ├── main_05.gif │ │ │ │ │ │ ├── main_06.gif │ │ │ │ │ │ ├── main_08.gif │ │ │ │ │ │ ├── main_09.gif │ │ │ │ │ │ ├── member_t04.JPG │ │ │ │ │ │ ├── message16.gif │ │ │ │ │ │ ├── module16.gif │ │ │ │ │ │ ├── module32.gif │ │ │ │ │ │ ├── more1.gif │ │ │ │ │ │ ├── myfile16.gif │ │ │ │ │ │ ├── myfile32.gif │ │ │ │ │ │ ├── news16.gif │ │ │ │ │ │ ├── onecard16.gif │ │ │ │ │ │ ├── onecard32.gif │ │ │ │ │ │ ├── out16.gif │ │ │ │ │ │ ├── out32.gif │ │ │ │ │ │ ├── plan16.gif │ │ │ │ │ │ ├── plan32.gif │ │ │ │ │ │ ├── point07.gif │ │ │ │ │ │ ├── quanx16.gif │ │ │ │ │ │ ├── quanx32.gif │ │ │ │ │ │ ├── right-bj-1.gif │ │ │ │ │ │ ├── right-bj-2.gif │ │ │ │ │ │ ├── right-bj-3.gif │ │ │ │ │ │ ├── right-bj.gif │ │ │ │ │ │ ├── spacer.gif │ │ │ │ │ │ ├── style.css │ │ │ │ │ │ ├── top-1-1.gif │ │ │ │ │ │ ├── top-1-2.gif │ │ │ │ │ │ ├── top-1-3.gif │ │ │ │ │ │ ├── top-1.gif │ │ │ │ │ │ ├── top-2-1.gif │ │ │ │ │ │ ├── top-2-2.gif │ │ │ │ │ │ ├── top-2-3.gif │ │ │ │ │ │ ├── top-2.gif │ │ │ │ │ │ ├── top-3-1.gif │ │ │ │ │ │ ├── top-3-2.gif │ │ │ │ │ │ ├── top-3-3.gif │ │ │ │ │ │ ├── top-3.gif │ │ │ │ │ │ ├── top-4-1.gif │ │ │ │ │ │ ├── top-4-2.gif │ │ │ │ │ │ ├── top-4-3.gif │ │ │ │ │ │ ├── top-4.gif │ │ │ │ │ │ ├── top-5-1.gif │ │ │ │ │ │ ├── top-5-2.gif │ │ │ │ │ │ ├── top-5-3.gif │ │ │ │ │ │ ├── top-5.gif │ │ │ │ │ │ ├── top-bj-1.gif │ │ │ │ │ │ ├── top-bj-2.gif │ │ │ │ │ │ ├── top-bj-3.gif │ │ │ │ │ │ ├── top-bj.gif │ │ │ │ │ │ ├── topbar_01.jpg │ │ │ │ │ │ ├── topbar_02.jpg │ │ │ │ │ │ ├── topbar_03.jpg │ │ │ │ │ │ ├── tubiao_01.GIF │ │ │ │ │ │ ├── tubiao_02.gif │ │ │ │ │ │ ├── user16.gif │ │ │ │ │ │ ├── vote16.gif │ │ │ │ │ │ ├── x16.gif │ │ │ │ │ │ ├── xinx16.gif │ │ │ │ │ │ ├── xinx32.gif │ │ │ │ │ │ ├── yw16.gif │ │ │ │ │ │ ├── zhut16.gif │ │ │ │ │ │ └── zjsp16.gif │ │ │ │ │ ├── Left.aspx │ │ │ │ │ ├── Left.aspx.cs │ │ │ │ │ ├── Left.aspx.designer.cs │ │ │ │ │ ├── Left.aspx.resx │ │ │ │ │ ├── Login.aspx │ │ │ │ │ ├── Login.aspx.cs │ │ │ │ │ ├── Login.aspx.designer.cs │ │ │ │ │ ├── Logout.aspx │ │ │ │ │ ├── Logout.aspx.cs │ │ │ │ │ ├── Logout.aspx.designer.cs │ │ │ │ │ ├── Logout.aspx.resx │ │ │ │ │ ├── Main.aspx │ │ │ │ │ ├── Main.aspx.cs │ │ │ │ │ ├── Main.aspx.designer.cs │ │ │ │ │ ├── Main.aspx.resx │ │ │ │ │ ├── Main.htm │ │ │ │ │ ├── Relogin.aspx │ │ │ │ │ ├── Relogin.aspx.cs │ │ │ │ │ ├── Relogin.aspx.designer.cs │ │ │ │ │ ├── Relogin.aspx.resx │ │ │ │ │ ├── ShowCallBoard.aspx │ │ │ │ │ ├── ShowCallBoard.aspx.cs │ │ │ │ │ ├── ShowCallBoard.aspx.designer.cs │ │ │ │ │ ├── ShowCallBoard.aspx.resx │ │ │ │ │ ├── Spliter.aspx │ │ │ │ │ ├── Spliter.aspx.cs │ │ │ │ │ ├── Spliter.aspx.designer.cs │ │ │ │ │ ├── Spliter.aspx.resx │ │ │ │ │ ├── Style.css │ │ │ │ │ ├── SysManage │ │ │ │ │ │ ├── CheckBox.js │ │ │ │ │ │ ├── IndexTree.aspx │ │ │ │ │ │ ├── IndexTree.aspx.cs │ │ │ │ │ │ ├── IndexTree.aspx.designer.cs │ │ │ │ │ │ ├── LogIndex.aspx.cs │ │ │ │ │ │ ├── LogIndex.aspx.designer.cs │ │ │ │ │ │ ├── LogIndex.aspx.resx │ │ │ │ │ │ ├── LogShow.aspx.cs │ │ │ │ │ │ ├── LogShow.aspx.designer.cs │ │ │ │ │ │ ├── LogShow.aspx.resx │ │ │ │ │ │ ├── add.aspx │ │ │ │ │ │ ├── add.aspx.cs │ │ │ │ │ │ ├── add.aspx.designer.cs │ │ │ │ │ │ ├── add.aspx.resx │ │ │ │ │ │ ├── delete.aspx │ │ │ │ │ │ ├── delete.aspx.cs │ │ │ │ │ │ ├── delete.aspx.designer.cs │ │ │ │ │ │ ├── delete.aspx.resx │ │ │ │ │ │ ├── logindex.aspx │ │ │ │ │ │ ├── logshow.aspx │ │ │ │ │ │ ├── makesql.aspx │ │ │ │ │ │ ├── makesql.aspx.cs │ │ │ │ │ │ ├── makesql.aspx.designer.cs │ │ │ │ │ │ ├── makesql.aspx.resx │ │ │ │ │ │ ├── modify.aspx │ │ │ │ │ │ ├── modify.aspx.cs │ │ │ │ │ │ ├── modify.aspx.designer.cs │ │ │ │ │ │ ├── modify.aspx.resx │ │ │ │ │ │ ├── search.aspx │ │ │ │ │ │ ├── search.aspx.cs │ │ │ │ │ │ ├── search.aspx.designer.cs │ │ │ │ │ │ ├── search.aspx.resx │ │ │ │ │ │ ├── show.aspx │ │ │ │ │ │ ├── show.aspx.cs │ │ │ │ │ │ ├── show.aspx.designer.cs │ │ │ │ │ │ ├── show.aspx.resx │ │ │ │ │ │ ├── treelist.aspx │ │ │ │ │ │ ├── treelist.aspx.cs │ │ │ │ │ │ ├── treelist.aspx.designer.cs │ │ │ │ │ │ └── treelist.aspx.resx │ │ │ │ │ ├── Top.aspx │ │ │ │ │ ├── Top.aspx.cs │ │ │ │ │ ├── Top.aspx.designer.cs │ │ │ │ │ ├── Top.aspx.resx │ │ │ │ │ ├── toindex.aspx │ │ │ │ │ ├── toindex.aspx.cs │ │ │ │ │ ├── toindex.aspx.designer.cs │ │ │ │ │ └── toindex.aspx.resx │ │ │ │ │ ├── Config │ │ │ │ │ ├── SmtpSetting.config │ │ │ │ │ └── vssver2.scc │ │ │ │ │ ├── Controls │ │ │ │ │ ├── CopyRight.ascx.cs │ │ │ │ │ ├── CopyRight.ascx.designer.cs │ │ │ │ │ ├── checkright.ascx │ │ │ │ │ ├── checkright.ascx.cs │ │ │ │ │ ├── checkright.ascx.designer.cs │ │ │ │ │ └── copyright.ascx │ │ │ │ │ ├── Default.aspx │ │ │ │ │ ├── Default.aspx.cs │ │ │ │ │ ├── Default.aspx.designer.cs │ │ │ │ │ ├── Global.asax │ │ │ │ │ ├── Global.asax.cs │ │ │ │ │ ├── Global.asax.resx │ │ │ │ │ ├── Images │ │ │ │ │ └── Thumbs.db │ │ │ │ │ ├── MasterPage.master │ │ │ │ │ ├── MasterPage.master.cs │ │ │ │ │ ├── MasterPage.master.designer.cs │ │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ ├── Style.css │ │ │ │ │ ├── ValidateCode.aspx │ │ │ │ │ ├── ValidateCode.aspx.cs │ │ │ │ │ ├── ValidateCode.aspx.designer.cs │ │ │ │ │ ├── Web.config │ │ │ │ │ ├── Web.csproj │ │ │ │ │ ├── Web.csproj.user │ │ │ │ │ ├── bin │ │ │ │ │ ├── LTP.Accounts.dll │ │ │ │ │ ├── LtpPageControl.dll │ │ │ │ │ └── Microsoft.Web.UI.WebControls.dll │ │ │ │ │ ├── js │ │ │ │ │ └── CheckBox.js │ │ │ │ │ └── webctrl_client │ │ │ │ │ └── 1_0 │ │ │ │ │ ├── Images │ │ │ │ │ ├── folder.gif │ │ │ │ │ ├── folderopen.gif │ │ │ │ │ ├── html.gif │ │ │ │ │ └── root.gif │ │ │ │ │ ├── MultiPage.htc │ │ │ │ │ ├── TabStrip.htc │ │ │ │ │ ├── TreeImages │ │ │ │ │ ├── L.gif │ │ │ │ │ ├── Lminus.gif │ │ │ │ │ ├── Lplus.gif │ │ │ │ │ ├── Rminus.gif │ │ │ │ │ ├── Rplus.gif │ │ │ │ │ ├── T.gif │ │ │ │ │ ├── Tminus.gif │ │ │ │ │ ├── Tplus.gif │ │ │ │ │ ├── f.gif │ │ │ │ │ ├── fminus.gif │ │ │ │ │ ├── fplus.gif │ │ │ │ │ ├── i.gif │ │ │ │ │ ├── minus.gif │ │ │ │ │ ├── plus.gif │ │ │ │ │ ├── r.gif │ │ │ │ │ ├── rtl │ │ │ │ │ │ ├── F.gif │ │ │ │ │ │ ├── Fminus.gif │ │ │ │ │ │ ├── Fplus.gif │ │ │ │ │ │ ├── I.gif │ │ │ │ │ │ ├── L.gif │ │ │ │ │ │ ├── Lminus.gif │ │ │ │ │ │ ├── Lplus.gif │ │ │ │ │ │ ├── Rminus.gif │ │ │ │ │ │ ├── Rplus.gif │ │ │ │ │ │ ├── T.gif │ │ │ │ │ │ ├── Tminus.gif │ │ │ │ │ │ ├── Tplus.gif │ │ │ │ │ │ ├── minus.gif │ │ │ │ │ │ ├── plus.gif │ │ │ │ │ │ ├── r.gif │ │ │ │ │ │ └── white.gif │ │ │ │ │ └── white.gif │ │ │ │ │ ├── toolbar.htc │ │ │ │ │ └── treeview.htc │ │ │ ├── TemplateFile │ │ │ │ ├── Host对象示例.cmt │ │ │ │ ├── 工厂模式模板 │ │ │ │ │ ├── BLL.cmt │ │ │ │ │ ├── DALFactory.cmt │ │ │ │ │ ├── DALSP.cmt │ │ │ │ │ ├── IDAL.cmt │ │ │ │ │ ├── Model.cmt │ │ │ │ │ └── SQLServerDAL.cmt │ │ │ │ ├── 模版示例.cmt │ │ │ │ ├── 简单三层模板 │ │ │ │ │ ├── BLL.cmt │ │ │ │ │ ├── DAL.cmt │ │ │ │ │ ├── DALSP.cmt │ │ │ │ │ └── Model.cmt │ │ │ │ └── 页面模板 │ │ │ │ │ ├── Web.cmt │ │ │ │ │ └── Web.cs.cmt │ │ │ ├── table.htm │ │ │ └── web │ │ │ │ ├── Add.aspx │ │ │ │ ├── Add.aspx.cs │ │ │ │ ├── Add.aspx.designer.cs │ │ │ │ ├── List.aspx │ │ │ │ ├── List.aspx.cs │ │ │ │ ├── List.aspx.designer.cs │ │ │ │ ├── Modify.aspx │ │ │ │ ├── Modify.aspx.cs │ │ │ │ ├── Modify.aspx.designer.cs │ │ │ │ ├── Show.aspx │ │ │ │ ├── Show.aspx.cs │ │ │ │ ├── Show.aspx.designer.cs │ │ │ │ ├── delete.aspx │ │ │ │ ├── delete.aspx.cs │ │ │ │ └── delete.aspx.designer.cs │ │ ├── TextStyle │ │ │ ├── ASPX.xshd │ │ │ ├── CPP-Mode.xshd │ │ │ ├── CSharp-Mode.xshd │ │ │ ├── HTML-Mode.xshd │ │ │ ├── ILAsm-Mode.xshd │ │ │ ├── Java-Mode.xshd │ │ │ ├── JavaScript-Mode.xshd │ │ │ ├── Mode.xsd │ │ │ ├── Mode.xsx │ │ │ ├── PHP-Mode.xshd │ │ │ ├── RightArrow.cur │ │ │ ├── SQL-Mode.xshd │ │ │ ├── SyntaxModes.xml │ │ │ ├── VBNET-Mode.xshd │ │ │ └── XML-Mode.xshd │ │ ├── UpdateVer.xml │ │ ├── Updatelist.ini │ │ ├── appconfig.config │ │ ├── cmcfg.ini │ │ ├── config.config │ │ ├── config.xml │ │ ├── datatype.ini │ │ ├── de │ │ │ └── Codematic.resources.dll │ │ ├── hotkey.config │ │ ├── img │ │ │ └── i.bmp │ │ ├── language │ │ │ ├── en │ │ │ │ ├── BuilderBLLComm.lan │ │ │ │ ├── BuilderDALELParam.lan │ │ │ │ ├── BuilderDALELProc.lan │ │ │ │ ├── BuilderDALELSQL.lan │ │ │ │ ├── BuilderDALIBatisNet.lan │ │ │ │ ├── BuilderDALIBatisNetMapXML.lan │ │ │ │ ├── BuilderDALParam.lan │ │ │ │ ├── BuilderDALProc.lan │ │ │ │ ├── BuilderDALSQL.lan │ │ │ │ ├── BuilderDALTranParam.lan │ │ │ │ ├── BuilderFrameOne.lan │ │ │ │ ├── BuilderModel.lan │ │ │ │ └── SystemMenu.lan │ │ │ └── zh-cn │ │ │ │ ├── BuilderBLLComm.lan │ │ │ │ ├── BuilderDALELParam.lan │ │ │ │ ├── BuilderDALELProc.lan │ │ │ │ ├── BuilderDALELSQL.lan │ │ │ │ ├── BuilderDALIBatisNet.lan │ │ │ │ ├── BuilderDALIBatisNetMapXML.lan │ │ │ │ ├── BuilderDALParam.lan │ │ │ │ ├── BuilderDALProc.lan │ │ │ │ ├── BuilderDALSQL.lan │ │ │ │ ├── BuilderDALTranParam.lan │ │ │ │ ├── BuilderFrameOne.lan │ │ │ │ ├── BuilderModel.lan │ │ │ │ └── SystemMenu.lan │ │ ├── logInfo.txt │ │ ├── tableTemplate.xslt │ │ ├── tempnewtxt.txt │ │ ├── temprss.xml │ │ └── temptree.xml │ ├── FileList.txt │ ├── Release │ │ ├── CodeDAL.addin │ │ ├── Codematic.XmlSerializers.dll │ │ ├── Codematic.exe │ │ ├── Codematic.exe.config │ │ ├── Codematic.exe.manifest │ │ ├── Codematic.vshost.exe │ │ ├── Codematic.vshost.exe.config │ │ ├── Codematic.vshost.exe.manifest │ │ ├── Config.xml │ │ ├── DatatypeMap.cfg │ │ ├── DbSetting.config │ │ ├── ICSharpCode.TextEditor.dll │ │ ├── ICSharpCode.TextEditor.dll.config │ │ ├── LTP.ConvertCS2VB.dll │ │ ├── LTP.TextEditor.dll │ │ ├── LTPTextEditor.dll │ │ ├── MagicLibrary.dll │ │ ├── Maticsoft.AddInManager.dll │ │ ├── Maticsoft.BuilderBLLComm.dll │ │ ├── Maticsoft.BuilderDALELParam.dll │ │ ├── Maticsoft.BuilderDALELProc.dll │ │ ├── Maticsoft.BuilderDALELSQL.dll │ │ ├── Maticsoft.BuilderDALIBatisNet.dll │ │ ├── Maticsoft.BuilderDALIBatisNetMapXML.dll │ │ ├── Maticsoft.BuilderDALParam.dll │ │ ├── Maticsoft.BuilderDALProc.dll │ │ ├── Maticsoft.BuilderDALSQL.dll │ │ ├── Maticsoft.BuilderDALTranMParam.dll │ │ ├── Maticsoft.BuilderDALTranParam.dll │ │ ├── Maticsoft.BuilderIDAL.dll │ │ ├── Maticsoft.BuilderModel.dll │ │ ├── Maticsoft.BuilderWeb.dll │ │ ├── Maticsoft.CmConfig.dll │ │ ├── Maticsoft.CodeBuild.dll │ │ ├── Maticsoft.CodeHelper.dll │ │ ├── Maticsoft.DBFactory.dll │ │ ├── Maticsoft.DbObjects.dll │ │ ├── Maticsoft.Engine.dll │ │ ├── Maticsoft.IBuilder.dll │ │ ├── Maticsoft.IDBO.dll │ │ ├── Maticsoft.Utility.dll │ │ ├── MySql.Data.dll │ │ ├── PinkieControls.dll │ │ ├── ProConfig.config │ │ ├── Snippets.xml │ │ ├── System.Data.SQLite.DLL │ │ ├── System.Data.SQLite.xml │ │ ├── Template │ │ │ ├── Class1.cs │ │ │ ├── Class1.vb │ │ │ ├── CodematicDemoF3 │ │ │ │ ├── BLL │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── BLL.csproj │ │ │ │ │ ├── BLL.csproj.user │ │ │ │ │ └── SysManage.cs │ │ │ │ ├── CodematicDemoF3.sln │ │ │ │ ├── CodematicDemoF3.suo │ │ │ │ ├── Common │ │ │ │ │ ├── Assistant.cs │ │ │ │ │ ├── ChartHelper.cs │ │ │ │ │ ├── Common.csproj │ │ │ │ │ ├── Common.csproj.user │ │ │ │ │ ├── Common.suo │ │ │ │ │ ├── ConfigHelper.cs │ │ │ │ │ ├── DEncrypt │ │ │ │ │ │ ├── DESEncrypt.cs │ │ │ │ │ │ ├── DEncrypt.cs │ │ │ │ │ │ ├── HashEncode.cs │ │ │ │ │ │ ├── RSACryption.cs │ │ │ │ │ │ └── vssver2.scc │ │ │ │ │ ├── DataCache.cs │ │ │ │ │ ├── DataToExcel.cs │ │ │ │ │ ├── HttpProc.cs │ │ │ │ │ ├── INIFile.cs │ │ │ │ │ ├── MailSender.cs │ │ │ │ │ ├── MessageBox.cs │ │ │ │ │ ├── PageBase.cs │ │ │ │ │ ├── PageValidate.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ ├── RMB.cs │ │ │ │ │ ├── StringPlus.cs │ │ │ │ │ ├── TimeParser.cs │ │ │ │ │ ├── UrlOper.cs │ │ │ │ │ └── vssver2.scc │ │ │ │ ├── DALFactory │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── DALFactory.csproj │ │ │ │ │ ├── DALFactory.csproj.user │ │ │ │ │ ├── DataAccess.cs │ │ │ │ │ └── DataCache.cs │ │ │ │ ├── DBUtility │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── BaseSqlMapDao.cs │ │ │ │ │ ├── CommandInfo.cs │ │ │ │ │ ├── DBUtility.csproj │ │ │ │ │ ├── DBUtility.csproj.user │ │ │ │ │ ├── DBUtility.suo │ │ │ │ │ ├── DESEncrypt.cs │ │ │ │ │ ├── DbHelperMySQL.cs │ │ │ │ │ ├── DbHelperOleDb.cs │ │ │ │ │ ├── DbHelperOra.cs │ │ │ │ │ ├── DbHelperSQL.cs │ │ │ │ │ ├── DbHelperSQL2.cs │ │ │ │ │ ├── DbHelperSQLP.cs │ │ │ │ │ ├── DbHelperSQLite.cs │ │ │ │ │ ├── OracleHelper.cs │ │ │ │ │ ├── PubConstant.cs │ │ │ │ │ └── SQLHelper.cs │ │ │ │ ├── IDAL │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── IDAL.csproj │ │ │ │ │ ├── IDAL.csproj.user │ │ │ │ │ └── ISysManage.cs │ │ │ │ ├── Lib │ │ │ │ │ ├── COM.Excel.dll │ │ │ │ │ ├── LTP.Accounts.dll │ │ │ │ │ ├── LtpPageControl.dll │ │ │ │ │ ├── Microsoft.Practices.EnterpriseLibrary.Common.dll │ │ │ │ │ ├── Microsoft.Practices.EnterpriseLibrary.Data.dll │ │ │ │ │ ├── Microsoft.Web.UI.WebControls.dll │ │ │ │ │ ├── MySql.Data.dll │ │ │ │ │ ├── OWC10Chart.dll │ │ │ │ │ ├── OpenSmtp.dll │ │ │ │ │ ├── System.Data.SQLite.DLL │ │ │ │ │ └── System.Data.SQLite.lib │ │ │ │ ├── Model │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Model.csproj │ │ │ │ │ ├── Model.csproj.user │ │ │ │ │ └── SysNode.cs │ │ │ │ ├── OracleDAL │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── OracleDAL.csproj │ │ │ │ │ ├── OracleDAL.csproj.user │ │ │ │ │ ├── PubConstant.cs │ │ │ │ │ ├── SysManage.cs │ │ │ │ │ └── SysManage1.cs │ │ │ │ ├── SQLServerDAL │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── PubConstant.cs │ │ │ │ │ ├── SQLServerDAL.csproj │ │ │ │ │ ├── SQLServerDAL.csproj.user │ │ │ │ │ ├── SysManage.cs │ │ │ │ │ └── SysManage1.cs │ │ │ │ ├── Web │ │ │ │ │ ├── Admin │ │ │ │ │ │ ├── Accounts │ │ │ │ │ │ │ ├── Add.aspx.cs │ │ │ │ │ │ │ ├── Add.aspx.designer.cs │ │ │ │ │ │ │ ├── Add.aspx.resx │ │ │ │ │ │ │ ├── Admin │ │ │ │ │ │ │ │ ├── EditRole.aspx.cs │ │ │ │ │ │ │ │ ├── EditRole.aspx.designer.cs │ │ │ │ │ │ │ │ ├── EditRole.aspx.resx │ │ │ │ │ │ │ │ ├── Index.aspx.cs │ │ │ │ │ │ │ │ ├── Index.aspx.designer.cs │ │ │ │ │ │ │ │ ├── Index.aspx.resx │ │ │ │ │ │ │ │ ├── PermissionAdmin.aspx.cs │ │ │ │ │ │ │ │ ├── PermissionAdmin.aspx.designer.cs │ │ │ │ │ │ │ │ ├── PermissionAdmin.aspx.resx │ │ │ │ │ │ │ │ ├── RoleAdmin.aspx │ │ │ │ │ │ │ │ ├── RoleAdmin.aspx.cs │ │ │ │ │ │ │ │ ├── RoleAdmin.aspx.designer.cs │ │ │ │ │ │ │ │ ├── RoleAdmin.aspx.resx │ │ │ │ │ │ │ │ ├── RoleAssignment.aspx.cs │ │ │ │ │ │ │ │ ├── RoleAssignment.aspx.designer.cs │ │ │ │ │ │ │ │ ├── RoleAssignment.aspx.resx │ │ │ │ │ │ │ │ ├── UserAdmin.aspx │ │ │ │ │ │ │ │ ├── UserAdmin.aspx.cs │ │ │ │ │ │ │ │ ├── UserAdmin.aspx.designer.cs │ │ │ │ │ │ │ │ ├── UserAdmin.aspx.resx │ │ │ │ │ │ │ │ ├── editrole.aspx │ │ │ │ │ │ │ │ ├── index.aspx │ │ │ │ │ │ │ │ ├── permissionadmin.aspx │ │ │ │ │ │ │ │ └── roleassignment.aspx │ │ │ │ │ │ │ ├── SetPass.aspx.cs │ │ │ │ │ │ │ ├── SetPass.aspx.designer.cs │ │ │ │ │ │ │ ├── SetPass.aspx.resx │ │ │ │ │ │ │ ├── add.aspx │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ ├── adminLeftArrow.gif │ │ │ │ │ │ │ │ ├── admin_top_bg.gif │ │ │ │ │ │ │ │ ├── bg.gif │ │ │ │ │ │ │ │ ├── bg1.gif │ │ │ │ │ │ │ │ ├── bg2.gif │ │ │ │ │ │ │ │ ├── bg3.gif │ │ │ │ │ │ │ │ ├── bottombg.gif │ │ │ │ │ │ │ │ ├── btnreview.GIF │ │ │ │ │ │ │ │ ├── button-join.gif │ │ │ │ │ │ │ │ ├── button-login.gif │ │ │ │ │ │ │ │ ├── button_add.gif │ │ │ │ │ │ │ │ ├── button_back.gif │ │ │ │ │ │ │ │ ├── button_cancel.gif │ │ │ │ │ │ │ │ ├── button_close.gif │ │ │ │ │ │ │ │ ├── button_del.gif │ │ │ │ │ │ │ │ ├── button_edit.gif │ │ │ │ │ │ │ │ ├── button_look.gif │ │ │ │ │ │ │ │ ├── button_ok.gif │ │ │ │ │ │ │ │ ├── button_save.gif │ │ │ │ │ │ │ │ ├── button_search.GIF │ │ │ │ │ │ │ │ ├── button_sift.gif │ │ │ │ │ │ │ │ ├── button_update.gif │ │ │ │ │ │ │ │ ├── lan1.gif │ │ │ │ │ │ │ │ ├── lan12.gif │ │ │ │ │ │ │ │ ├── navspacer.gif │ │ │ │ │ │ │ │ ├── skin2 │ │ │ │ │ │ │ │ │ ├── downbg.gif │ │ │ │ │ │ │ │ │ └── topbar_01.jpg │ │ │ │ │ │ │ │ └── topbg.gif │ │ │ │ │ │ │ ├── setpass.aspx │ │ │ │ │ │ │ ├── style │ │ │ │ │ │ │ │ ├── css.css │ │ │ │ │ │ │ │ └── style.css │ │ │ │ │ │ │ ├── userPass.aspx.cs │ │ │ │ │ │ │ ├── userPass.aspx.designer.cs │ │ │ │ │ │ │ ├── userPass.aspx.resx │ │ │ │ │ │ │ ├── userinfo.aspx │ │ │ │ │ │ │ ├── userinfo.aspx.cs │ │ │ │ │ │ │ ├── userinfo.aspx.designer.cs │ │ │ │ │ │ │ ├── userinfo.aspx.resx │ │ │ │ │ │ │ ├── usermodify.aspx │ │ │ │ │ │ │ ├── usermodify.aspx.cs │ │ │ │ │ │ │ ├── usermodify.aspx.designer.cs │ │ │ │ │ │ │ ├── usermodify.aspx.resx │ │ │ │ │ │ │ ├── userpass.aspx │ │ │ │ │ │ │ ├── userupdate.aspx │ │ │ │ │ │ │ ├── userupdate.aspx.cs │ │ │ │ │ │ │ ├── userupdate.aspx.designer.cs │ │ │ │ │ │ │ └── userupdate.aspx.resx │ │ │ │ │ │ ├── Images │ │ │ │ │ │ │ ├── Briefcase16.gif │ │ │ │ │ │ │ ├── Briefcase32.gif │ │ │ │ │ │ │ ├── Loading.gif │ │ │ │ │ │ │ ├── MenuImg │ │ │ │ │ │ │ │ ├── Programs16.gif │ │ │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ │ │ ├── folder16.gif │ │ │ │ │ │ │ │ ├── foldergreen_16.gif │ │ │ │ │ │ │ │ ├── ger16.gif │ │ │ │ │ │ │ │ ├── help16.gif │ │ │ │ │ │ │ │ ├── news16.gif │ │ │ │ │ │ │ │ ├── out16.gif │ │ │ │ │ │ │ │ ├── quanx16.gif │ │ │ │ │ │ │ │ ├── thumbnails.gif │ │ │ │ │ │ │ │ ├── times.gif │ │ │ │ │ │ │ │ ├── ts16.gif │ │ │ │ │ │ │ │ ├── user16.gif │ │ │ │ │ │ │ │ ├── xinx16.gif │ │ │ │ │ │ │ │ ├── zhut16.gif │ │ │ │ │ │ │ │ └── zjsp16.gif │ │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ │ ├── a_te01.gif │ │ │ │ │ │ │ ├── a_te02.gif │ │ │ │ │ │ │ ├── about16.gif │ │ │ │ │ │ │ ├── b1.gif │ │ │ │ │ │ │ ├── b11-1.gif │ │ │ │ │ │ │ ├── b11-2.gif │ │ │ │ │ │ │ ├── b11.gif │ │ │ │ │ │ │ ├── b12.gif │ │ │ │ │ │ │ ├── b13-1.gif │ │ │ │ │ │ │ ├── b13-2.gif │ │ │ │ │ │ │ ├── b13.gif │ │ │ │ │ │ │ ├── b3.gif │ │ │ │ │ │ │ ├── b4.gif │ │ │ │ │ │ │ ├── b5.gif │ │ │ │ │ │ │ ├── bar_00.gif │ │ │ │ │ │ │ ├── bar_01.gif │ │ │ │ │ │ │ ├── bar_02.gif │ │ │ │ │ │ │ ├── bar_03.gif │ │ │ │ │ │ │ ├── bar_04.gif │ │ │ │ │ │ │ ├── bar_05.gif │ │ │ │ │ │ │ ├── bar_06.gif │ │ │ │ │ │ │ ├── bar_07.gif │ │ │ │ │ │ │ ├── bar_08.gif │ │ │ │ │ │ │ ├── bar_10.gif │ │ │ │ │ │ │ ├── bg.gif │ │ │ │ │ │ │ ├── bg_01.gif │ │ │ │ │ │ │ ├── bg_02.gif │ │ │ │ │ │ │ ├── bg_03.gif │ │ │ │ │ │ │ ├── bgx.GIF │ │ │ │ │ │ │ ├── blank.gif │ │ │ │ │ │ │ ├── bottom_01.gif │ │ │ │ │ │ │ ├── bottom_02.gif │ │ │ │ │ │ │ ├── bottom_03.gif │ │ │ │ │ │ │ ├── button_edit.gif │ │ │ │ │ │ │ ├── button_search.GIF │ │ │ │ │ │ │ ├── c6.gif │ │ │ │ │ │ │ ├── card16.gif │ │ │ │ │ │ │ ├── card32.gif │ │ │ │ │ │ │ ├── company16.gif │ │ │ │ │ │ │ ├── css.css │ │ │ │ │ │ │ ├── desktop16.gif │ │ │ │ │ │ │ ├── desktop_01.gif │ │ │ │ │ │ │ ├── desktop_02.gif │ │ │ │ │ │ │ ├── desktop_03.gif │ │ │ │ │ │ │ ├── dsj16.gif │ │ │ │ │ │ │ ├── dsj32.gif │ │ │ │ │ │ │ ├── f3.gif │ │ │ │ │ │ │ ├── f4.gif │ │ │ │ │ │ │ ├── find16.gif │ │ │ │ │ │ │ ├── find32.gif │ │ │ │ │ │ │ ├── folder16.gif │ │ │ │ │ │ │ ├── folder32.gif │ │ │ │ │ │ │ ├── foldergreen_16.gif │ │ │ │ │ │ │ ├── gongg16.gif │ │ │ │ │ │ │ ├── help16.gif │ │ │ │ │ │ │ ├── help32.gif │ │ │ │ │ │ │ ├── in_bg.gif │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── left-1-1.gif │ │ │ │ │ │ │ ├── left-1-2.gif │ │ │ │ │ │ │ ├── left-1-3.gif │ │ │ │ │ │ │ ├── left-1.gif │ │ │ │ │ │ │ ├── left-2-1.gif │ │ │ │ │ │ │ ├── left-2-2.gif │ │ │ │ │ │ │ ├── left-2-3.gif │ │ │ │ │ │ │ ├── left-2.gif │ │ │ │ │ │ │ ├── left-3-1.gif │ │ │ │ │ │ │ ├── left-3-2.gif │ │ │ │ │ │ │ ├── left-3-3.gif │ │ │ │ │ │ │ ├── left-3.gif │ │ │ │ │ │ │ ├── left-bj-1.gif │ │ │ │ │ │ │ ├── left-bj-2.gif │ │ │ │ │ │ │ ├── left-bj-3.gif │ │ │ │ │ │ │ ├── left-bj.gif │ │ │ │ │ │ │ ├── login.css │ │ │ │ │ │ │ ├── login_p_img02.gif │ │ │ │ │ │ │ ├── login_p_img03.gif │ │ │ │ │ │ │ ├── login_p_img04.gif │ │ │ │ │ │ │ ├── login_p_img05.gif │ │ │ │ │ │ │ ├── login_p_img11.gif │ │ │ │ │ │ │ ├── mag16.gif │ │ │ │ │ │ │ ├── mail16.gif │ │ │ │ │ │ │ ├── main_01.gif │ │ │ │ │ │ │ ├── main_04.gif │ │ │ │ │ │ │ ├── main_05.gif │ │ │ │ │ │ │ ├── main_06.gif │ │ │ │ │ │ │ ├── main_08.gif │ │ │ │ │ │ │ ├── main_09.gif │ │ │ │ │ │ │ ├── member_t04.JPG │ │ │ │ │ │ │ ├── message16.gif │ │ │ │ │ │ │ ├── module16.gif │ │ │ │ │ │ │ ├── more1.gif │ │ │ │ │ │ │ ├── myfile16.gif │ │ │ │ │ │ │ ├── point07.gif │ │ │ │ │ │ │ ├── right-bj-1.gif │ │ │ │ │ │ │ ├── right-bj-2.gif │ │ │ │ │ │ │ ├── right-bj-3.gif │ │ │ │ │ │ │ ├── right-bj.gif │ │ │ │ │ │ │ ├── spacer.gif │ │ │ │ │ │ │ ├── style.css │ │ │ │ │ │ │ ├── top-1-1.gif │ │ │ │ │ │ │ ├── top-1-2.gif │ │ │ │ │ │ │ ├── top-1-3.gif │ │ │ │ │ │ │ ├── top-1.gif │ │ │ │ │ │ │ ├── top-2-1.gif │ │ │ │ │ │ │ ├── top-2-2.gif │ │ │ │ │ │ │ ├── top-2-3.gif │ │ │ │ │ │ │ ├── top-2.gif │ │ │ │ │ │ │ ├── top-3-1.gif │ │ │ │ │ │ │ ├── top-3-2.gif │ │ │ │ │ │ │ ├── top-3-3.gif │ │ │ │ │ │ │ ├── top-3.gif │ │ │ │ │ │ │ ├── top-4-1.gif │ │ │ │ │ │ │ ├── top-4-2.gif │ │ │ │ │ │ │ ├── top-4-3.gif │ │ │ │ │ │ │ ├── top-4.gif │ │ │ │ │ │ │ ├── top-5-1.gif │ │ │ │ │ │ │ ├── top-5-2.gif │ │ │ │ │ │ │ ├── top-5-3.gif │ │ │ │ │ │ │ ├── top-5.gif │ │ │ │ │ │ │ ├── top-bj-1.gif │ │ │ │ │ │ │ ├── top-bj-2.gif │ │ │ │ │ │ │ ├── top-bj-3.gif │ │ │ │ │ │ │ ├── top-bj.gif │ │ │ │ │ │ │ ├── topbar_01.jpg │ │ │ │ │ │ │ ├── topbar_02.jpg │ │ │ │ │ │ │ ├── topbar_03.jpg │ │ │ │ │ │ │ ├── user16.gif │ │ │ │ │ │ │ ├── vote16.gif │ │ │ │ │ │ │ ├── x16.gif │ │ │ │ │ │ │ ├── xinx16.gif │ │ │ │ │ │ │ ├── yw16.gif │ │ │ │ │ │ │ ├── zhut16.gif │ │ │ │ │ │ │ └── zjsp16.gif │ │ │ │ │ │ ├── Left.aspx │ │ │ │ │ │ ├── Left.aspx.cs │ │ │ │ │ │ ├── Left.aspx.designer.cs │ │ │ │ │ │ ├── Left.aspx.resx │ │ │ │ │ │ ├── Login.aspx │ │ │ │ │ │ ├── Login.aspx.cs │ │ │ │ │ │ ├── Login.aspx.designer.cs │ │ │ │ │ │ ├── Login.aspx.resx │ │ │ │ │ │ ├── Logout.aspx │ │ │ │ │ │ ├── Logout.aspx.cs │ │ │ │ │ │ ├── Logout.aspx.designer.cs │ │ │ │ │ │ ├── Logout.aspx.resx │ │ │ │ │ │ ├── Main.aspx │ │ │ │ │ │ ├── Main.aspx.cs │ │ │ │ │ │ ├── Main.aspx.designer.cs │ │ │ │ │ │ ├── Main.aspx.resx │ │ │ │ │ │ ├── Main.htm │ │ │ │ │ │ ├── Relogin.aspx │ │ │ │ │ │ ├── Relogin.aspx.cs │ │ │ │ │ │ ├── Relogin.aspx.designer.cs │ │ │ │ │ │ ├── Relogin.aspx.resx │ │ │ │ │ │ ├── ShowCallBoard.aspx │ │ │ │ │ │ ├── ShowCallBoard.aspx.cs │ │ │ │ │ │ ├── ShowCallBoard.aspx.designer.cs │ │ │ │ │ │ ├── ShowCallBoard.aspx.resx │ │ │ │ │ │ ├── Spliter.aspx │ │ │ │ │ │ ├── Spliter.aspx.cs │ │ │ │ │ │ ├── Spliter.aspx.designer.cs │ │ │ │ │ │ ├── Spliter.aspx.resx │ │ │ │ │ │ ├── Style.css │ │ │ │ │ │ ├── SysManage │ │ │ │ │ │ │ ├── CheckBox.js │ │ │ │ │ │ │ ├── LogIndex.aspx.cs │ │ │ │ │ │ │ ├── LogIndex.aspx.designer.cs │ │ │ │ │ │ │ ├── LogIndex.aspx.resx │ │ │ │ │ │ │ ├── LogShow.aspx.cs │ │ │ │ │ │ │ ├── LogShow.aspx.designer.cs │ │ │ │ │ │ │ ├── LogShow.aspx.resx │ │ │ │ │ │ │ ├── add.aspx │ │ │ │ │ │ │ ├── add.aspx.cs │ │ │ │ │ │ │ ├── add.aspx.designer.cs │ │ │ │ │ │ │ ├── add.aspx.resx │ │ │ │ │ │ │ ├── delete.aspx │ │ │ │ │ │ │ ├── delete.aspx.cs │ │ │ │ │ │ │ ├── delete.aspx.designer.cs │ │ │ │ │ │ │ ├── delete.aspx.resx │ │ │ │ │ │ │ ├── logindex.aspx │ │ │ │ │ │ │ ├── logshow.aspx │ │ │ │ │ │ │ ├── makesql.aspx │ │ │ │ │ │ │ ├── makesql.aspx.cs │ │ │ │ │ │ │ ├── makesql.aspx.designer.cs │ │ │ │ │ │ │ ├── makesql.aspx.resx │ │ │ │ │ │ │ ├── modify.aspx │ │ │ │ │ │ │ ├── modify.aspx.cs │ │ │ │ │ │ │ ├── modify.aspx.designer.cs │ │ │ │ │ │ │ ├── modify.aspx.resx │ │ │ │ │ │ │ ├── search.aspx │ │ │ │ │ │ │ ├── search.aspx.cs │ │ │ │ │ │ │ ├── search.aspx.designer.cs │ │ │ │ │ │ │ ├── search.aspx.resx │ │ │ │ │ │ │ ├── show.aspx │ │ │ │ │ │ │ ├── show.aspx.cs │ │ │ │ │ │ │ ├── show.aspx.designer.cs │ │ │ │ │ │ │ ├── show.aspx.resx │ │ │ │ │ │ │ ├── treelist.aspx │ │ │ │ │ │ │ ├── treelist.aspx.cs │ │ │ │ │ │ │ ├── treelist.aspx.designer.cs │ │ │ │ │ │ │ └── treelist.aspx.resx │ │ │ │ │ │ ├── Top.aspx │ │ │ │ │ │ ├── Top.aspx.cs │ │ │ │ │ │ ├── Top.aspx.designer.cs │ │ │ │ │ │ ├── Top.aspx.resx │ │ │ │ │ │ ├── toindex.aspx │ │ │ │ │ │ ├── toindex.aspx.cs │ │ │ │ │ │ ├── toindex.aspx.designer.cs │ │ │ │ │ │ └── toindex.aspx.resx │ │ │ │ │ ├── App_Themes │ │ │ │ │ │ ├── BlueTheme │ │ │ │ │ │ │ ├── Control.skin │ │ │ │ │ │ │ └── Default.css │ │ │ │ │ │ ├── Green2Theme │ │ │ │ │ │ │ ├── Control.skin │ │ │ │ │ │ │ └── Default.css │ │ │ │ │ │ ├── GreenTheme │ │ │ │ │ │ │ ├── Control.skin │ │ │ │ │ │ │ └── Default.css │ │ │ │ │ │ ├── PurpleTheme │ │ │ │ │ │ │ ├── Control.skin │ │ │ │ │ │ │ └── Default.css │ │ │ │ │ │ └── RedTheme │ │ │ │ │ │ │ ├── Control.skin │ │ │ │ │ │ │ └── Default.css │ │ │ │ │ ├── Controls │ │ │ │ │ │ ├── CheckRight.ascx.cs │ │ │ │ │ │ ├── CheckRight.ascx.designer.cs │ │ │ │ │ │ ├── CheckRight.ascx.resx │ │ │ │ │ │ ├── CopyRight.ascx.cs │ │ │ │ │ │ ├── CopyRight.ascx.designer.cs │ │ │ │ │ │ ├── CopyRight.ascx.resx │ │ │ │ │ │ ├── checkright.ascx │ │ │ │ │ │ └── copyright.ascx │ │ │ │ │ ├── Default.aspx │ │ │ │ │ ├── Default.aspx.cs │ │ │ │ │ ├── Default.aspx.designer.cs │ │ │ │ │ ├── Global.asax │ │ │ │ │ ├── Global.asax.cs │ │ │ │ │ ├── Global.asax.resx │ │ │ │ │ ├── Images │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ ├── code1.JPG │ │ │ │ │ │ ├── code2.JPG │ │ │ │ │ │ └── sts.gif │ │ │ │ │ ├── MasterPage.master │ │ │ │ │ ├── MasterPage.master.cs │ │ │ │ │ ├── MasterPage.master.designer.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ ├── Style.css │ │ │ │ │ ├── ValidateCode.aspx │ │ │ │ │ ├── ValidateCode.aspx.cs │ │ │ │ │ ├── ValidateCode.aspx.designer.cs │ │ │ │ │ ├── Web.config │ │ │ │ │ ├── Web.csproj │ │ │ │ │ ├── Web.csproj.user │ │ │ │ │ ├── bin │ │ │ │ │ │ ├── LTP.Accounts.dll │ │ │ │ │ │ ├── LtpPageControl.dll │ │ │ │ │ │ └── Microsoft.Web.UI.WebControls.dll │ │ │ │ │ ├── js │ │ │ │ │ │ ├── CheckBox.js │ │ │ │ │ │ └── calendar1.js │ │ │ │ │ └── webctrl_client │ │ │ │ │ │ └── 1_0 │ │ │ │ │ │ ├── Images │ │ │ │ │ │ ├── folder.gif │ │ │ │ │ │ ├── folderopen.gif │ │ │ │ │ │ ├── html.gif │ │ │ │ │ │ └── root.gif │ │ │ │ │ │ ├── MultiPage.htc │ │ │ │ │ │ ├── TabStrip.htc │ │ │ │ │ │ ├── TreeImages │ │ │ │ │ │ ├── L.gif │ │ │ │ │ │ ├── Lminus.gif │ │ │ │ │ │ ├── Lplus.gif │ │ │ │ │ │ ├── Rminus.gif │ │ │ │ │ │ ├── Rplus.gif │ │ │ │ │ │ ├── T.gif │ │ │ │ │ │ ├── Tminus.gif │ │ │ │ │ │ ├── Tplus.gif │ │ │ │ │ │ ├── f.gif │ │ │ │ │ │ ├── fminus.gif │ │ │ │ │ │ ├── fplus.gif │ │ │ │ │ │ ├── i.gif │ │ │ │ │ │ ├── minus.gif │ │ │ │ │ │ ├── plus.gif │ │ │ │ │ │ ├── r.gif │ │ │ │ │ │ ├── rtl │ │ │ │ │ │ │ ├── F.gif │ │ │ │ │ │ │ ├── Fminus.gif │ │ │ │ │ │ │ ├── Fplus.gif │ │ │ │ │ │ │ ├── I.gif │ │ │ │ │ │ │ ├── L.gif │ │ │ │ │ │ │ ├── Lminus.gif │ │ │ │ │ │ │ ├── Lplus.gif │ │ │ │ │ │ │ ├── Rminus.gif │ │ │ │ │ │ │ ├── Rplus.gif │ │ │ │ │ │ │ ├── T.gif │ │ │ │ │ │ │ ├── Tminus.gif │ │ │ │ │ │ │ ├── Tplus.gif │ │ │ │ │ │ │ ├── minus.gif │ │ │ │ │ │ │ ├── plus.gif │ │ │ │ │ │ │ ├── r.gif │ │ │ │ │ │ │ └── white.gif │ │ │ │ │ │ └── white.gif │ │ │ │ │ │ ├── toolbar.htc │ │ │ │ │ │ └── treeview.htc │ │ │ │ └── 说明.txt │ │ │ ├── CodematicDemoS3 │ │ │ │ ├── BLL │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── BLL.csproj │ │ │ │ │ └── BLL.csproj.user │ │ │ │ ├── CodematicDemoS3.sln │ │ │ │ ├── CodematicDemoS3.suo │ │ │ │ ├── DAL │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── DAL.csproj │ │ │ │ │ └── DAL.csproj.user │ │ │ │ ├── DBUtility │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── BaseSqlMapDao.cs │ │ │ │ │ ├── CommandInfo.cs │ │ │ │ │ ├── DBUtility.csproj │ │ │ │ │ ├── DBUtility.csproj.user │ │ │ │ │ ├── DBUtility.suo │ │ │ │ │ ├── DESEncrypt.cs │ │ │ │ │ ├── DbHelperMySQL.cs │ │ │ │ │ ├── DbHelperOleDb.cs │ │ │ │ │ ├── DbHelperOra.cs │ │ │ │ │ ├── DbHelperSQL.cs │ │ │ │ │ ├── DbHelperSQL2.cs │ │ │ │ │ ├── DbHelperSQLP.cs │ │ │ │ │ ├── DbHelperSQLite.cs │ │ │ │ │ ├── OracleHelper.cs │ │ │ │ │ ├── PubConstant.cs │ │ │ │ │ └── SQLHelper.cs │ │ │ │ ├── Lib │ │ │ │ │ ├── LTP.Accounts.dll │ │ │ │ │ ├── LtpPageControl.dll │ │ │ │ │ ├── Maticsoft.Common.dll │ │ │ │ │ ├── Microsoft.Practices.EnterpriseLibrary.Common.dll │ │ │ │ │ ├── Microsoft.Practices.EnterpriseLibrary.Data.dll │ │ │ │ │ ├── Microsoft.Web.UI.WebControls.dll │ │ │ │ │ ├── MySql.Data.dll │ │ │ │ │ ├── System.Data.SQLite.DLL │ │ │ │ │ └── System.Data.SQLite.lib │ │ │ │ ├── Model │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Model.csproj │ │ │ │ │ └── Model.csproj.user │ │ │ │ └── Web │ │ │ │ │ ├── App_Themes │ │ │ │ │ ├── BlueTheme │ │ │ │ │ │ ├── Control.skin │ │ │ │ │ │ └── Default.css │ │ │ │ │ ├── Green2Theme │ │ │ │ │ │ ├── Control.skin │ │ │ │ │ │ └── Default.css │ │ │ │ │ ├── GreenTheme │ │ │ │ │ │ ├── Control.skin │ │ │ │ │ │ └── Default.css │ │ │ │ │ ├── PurpleTheme │ │ │ │ │ │ ├── Control.skin │ │ │ │ │ │ └── Default.css │ │ │ │ │ └── RedTheme │ │ │ │ │ │ ├── Control.skin │ │ │ │ │ │ └── Default.css │ │ │ │ │ ├── Controls │ │ │ │ │ ├── CheckRight.ascx.cs │ │ │ │ │ ├── CheckRight.ascx.designer.cs │ │ │ │ │ ├── CheckRight.ascx.resx │ │ │ │ │ ├── CopyRight.ascx.cs │ │ │ │ │ ├── CopyRight.ascx.designer.cs │ │ │ │ │ ├── CopyRight.ascx.resx │ │ │ │ │ ├── checkright.ascx │ │ │ │ │ └── copyright.ascx │ │ │ │ │ ├── Default.aspx │ │ │ │ │ ├── Default.aspx.cs │ │ │ │ │ ├── Default.aspx.designer.cs │ │ │ │ │ ├── Global.asax │ │ │ │ │ ├── Global.asax.cs │ │ │ │ │ ├── Global.asax.resx │ │ │ │ │ ├── Images │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ ├── code2.JPG │ │ │ │ │ └── top1.gif │ │ │ │ │ ├── MasterPage.master │ │ │ │ │ ├── MasterPage.master.cs │ │ │ │ │ ├── MasterPage.master.designer.cs │ │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ ├── Style.css │ │ │ │ │ ├── Web.config │ │ │ │ │ ├── Web.csproj │ │ │ │ │ └── Web.csproj.user │ │ │ ├── CodematicDemoS3p │ │ │ │ ├── BLL │ │ │ │ │ ├── BLL.csproj │ │ │ │ │ ├── BLL.csproj.user │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ └── SysManage.cs │ │ │ │ ├── CodematicDemoS3.sln │ │ │ │ ├── CodematicDemoS3.suo │ │ │ │ ├── Common │ │ │ │ │ ├── Assistant.cs │ │ │ │ │ ├── ChartHelper.cs │ │ │ │ │ ├── Common.csproj │ │ │ │ │ ├── Common.csproj.user │ │ │ │ │ ├── Common.suo │ │ │ │ │ ├── ConfigHelper.cs │ │ │ │ │ ├── DEncrypt │ │ │ │ │ │ ├── DESEncrypt.cs │ │ │ │ │ │ ├── DEncrypt.cs │ │ │ │ │ │ ├── HashEncode.cs │ │ │ │ │ │ ├── RSACryption.cs │ │ │ │ │ │ └── vssver2.scc │ │ │ │ │ ├── DataCache.cs │ │ │ │ │ ├── DataToExcel.cs │ │ │ │ │ ├── HttpProc.cs │ │ │ │ │ ├── INIFile.cs │ │ │ │ │ ├── MailSender.cs │ │ │ │ │ ├── MessageBox.cs │ │ │ │ │ ├── PageBase.cs │ │ │ │ │ ├── PageValidate.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ ├── RMB.cs │ │ │ │ │ ├── StringPlus.cs │ │ │ │ │ ├── TimeParser.cs │ │ │ │ │ ├── UrlOper.cs │ │ │ │ │ └── vssver2.scc │ │ │ │ ├── DAL │ │ │ │ │ ├── DAL.csproj │ │ │ │ │ ├── DAL.csproj.user │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ └── SysManage.cs │ │ │ │ ├── DBUtility │ │ │ │ │ ├── BaseSqlMapDao.cs │ │ │ │ │ ├── CommandInfo.cs │ │ │ │ │ ├── DBUtility.csproj │ │ │ │ │ ├── DBUtility.csproj.user │ │ │ │ │ ├── DBUtility.suo │ │ │ │ │ ├── DESEncrypt.cs │ │ │ │ │ ├── DbHelperMySQL.cs │ │ │ │ │ ├── DbHelperOleDb.cs │ │ │ │ │ ├── DbHelperOra.cs │ │ │ │ │ ├── DbHelperSQL.cs │ │ │ │ │ ├── DbHelperSQL2.cs │ │ │ │ │ ├── DbHelperSQLP.cs │ │ │ │ │ ├── DbHelperSQLite.cs │ │ │ │ │ ├── OracleHelper.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ ├── PubConstant.cs │ │ │ │ │ └── SQLHelper.cs │ │ │ │ ├── Lib │ │ │ │ │ ├── COM.Excel.dll │ │ │ │ │ ├── Excel.dll │ │ │ │ │ ├── IBatisNet.Common.dll │ │ │ │ │ ├── IBatisNet.DataMapper.dll │ │ │ │ │ ├── LTP.Accounts.dll │ │ │ │ │ ├── LTP.Accounts.txt │ │ │ │ │ ├── LtpPageControl.dll │ │ │ │ │ ├── Microsoft.Practices.EnterpriseLibrary.Common.dll │ │ │ │ │ ├── Microsoft.Practices.EnterpriseLibrary.Data.dll │ │ │ │ │ ├── Microsoft.Web.UI.WebControls.dll │ │ │ │ │ ├── MySql.Data.dll │ │ │ │ │ ├── OWC10Chart.dll │ │ │ │ │ ├── OpenSmtp.dll │ │ │ │ │ ├── System.Data.SQLite.DLL │ │ │ │ │ └── System.Data.SQLite.lib │ │ │ │ ├── Model │ │ │ │ │ ├── Model.csproj │ │ │ │ │ ├── Model.csproj.user │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ └── SysNode.cs │ │ │ │ └── Web │ │ │ │ │ ├── Admin │ │ │ │ │ ├── Accounts │ │ │ │ │ │ ├── Add.aspx.cs │ │ │ │ │ │ ├── Add.aspx.designer.cs │ │ │ │ │ │ ├── Add.aspx.resx │ │ │ │ │ │ ├── Admin │ │ │ │ │ │ │ ├── EditRole.aspx.cs │ │ │ │ │ │ │ ├── EditRole.aspx.designer.cs │ │ │ │ │ │ │ ├── EditRole.aspx.resx │ │ │ │ │ │ │ ├── Index.aspx.cs │ │ │ │ │ │ │ ├── Index.aspx.designer.cs │ │ │ │ │ │ │ ├── Index.aspx.resx │ │ │ │ │ │ │ ├── PermissionAdmin.aspx.cs │ │ │ │ │ │ │ ├── PermissionAdmin.aspx.designer.cs │ │ │ │ │ │ │ ├── PermissionAdmin.aspx.resx │ │ │ │ │ │ │ ├── RoleAdmin.aspx │ │ │ │ │ │ │ ├── RoleAdmin.aspx.cs │ │ │ │ │ │ │ ├── RoleAdmin.aspx.designer.cs │ │ │ │ │ │ │ ├── RoleAdmin.aspx.resx │ │ │ │ │ │ │ ├── RoleAssignment.aspx.cs │ │ │ │ │ │ │ ├── RoleAssignment.aspx.designer.cs │ │ │ │ │ │ │ ├── RoleAssignment.aspx.resx │ │ │ │ │ │ │ ├── UserAdmin.aspx │ │ │ │ │ │ │ ├── UserAdmin.aspx.cs │ │ │ │ │ │ │ ├── UserAdmin.aspx.designer.cs │ │ │ │ │ │ │ ├── UserAdmin.aspx.resx │ │ │ │ │ │ │ ├── UserAdminList.aspx │ │ │ │ │ │ │ ├── UserAdminList.aspx.cs │ │ │ │ │ │ │ ├── UserAdminList.aspx.designer.cs │ │ │ │ │ │ │ ├── UserAssignmentRole.aspx │ │ │ │ │ │ │ ├── UserAssignmentRole.aspx.cs │ │ │ │ │ │ │ ├── UserAssignmentRole.aspx.designer.cs │ │ │ │ │ │ │ ├── UserRoleAssignment.aspx │ │ │ │ │ │ │ ├── UserRoleAssignment.aspx.cs │ │ │ │ │ │ │ ├── UserRoleAssignment.aspx.designer.cs │ │ │ │ │ │ │ ├── UserType.aspx │ │ │ │ │ │ │ ├── UserType.aspx.cs │ │ │ │ │ │ │ ├── UserType.aspx.designer.cs │ │ │ │ │ │ │ ├── editrole.aspx │ │ │ │ │ │ │ ├── index.aspx │ │ │ │ │ │ │ ├── permissionadmin.aspx │ │ │ │ │ │ │ └── roleassignment.aspx │ │ │ │ │ │ ├── SetPass.aspx.cs │ │ │ │ │ │ ├── SetPass.aspx.designer.cs │ │ │ │ │ │ ├── add.aspx │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── adminLeftArrow.gif │ │ │ │ │ │ │ ├── admin_top_bg.gif │ │ │ │ │ │ │ ├── bg.gif │ │ │ │ │ │ │ ├── bg1.gif │ │ │ │ │ │ │ ├── bg2.gif │ │ │ │ │ │ │ ├── bg3.gif │ │ │ │ │ │ │ ├── bottombg.gif │ │ │ │ │ │ │ ├── btnreview.GIF │ │ │ │ │ │ │ ├── button-join.gif │ │ │ │ │ │ │ ├── button-login.gif │ │ │ │ │ │ │ ├── button_add.gif │ │ │ │ │ │ │ ├── button_back.gif │ │ │ │ │ │ │ ├── button_cancel.gif │ │ │ │ │ │ │ ├── button_close.gif │ │ │ │ │ │ │ ├── button_del.gif │ │ │ │ │ │ │ ├── button_edit.gif │ │ │ │ │ │ │ ├── button_look.gif │ │ │ │ │ │ │ ├── button_ok.gif │ │ │ │ │ │ │ ├── button_save.gif │ │ │ │ │ │ │ ├── button_search.GIF │ │ │ │ │ │ │ ├── button_sift.gif │ │ │ │ │ │ │ ├── button_update.gif │ │ │ │ │ │ │ ├── lan1.gif │ │ │ │ │ │ │ ├── lan12.gif │ │ │ │ │ │ │ ├── loading.gif │ │ │ │ │ │ │ ├── navspacer.gif │ │ │ │ │ │ │ ├── skin2 │ │ │ │ │ │ │ │ ├── downbg.gif │ │ │ │ │ │ │ │ └── topbar_01.jpg │ │ │ │ │ │ │ └── topbg.gif │ │ │ │ │ │ ├── setpass.aspx │ │ │ │ │ │ ├── style │ │ │ │ │ │ │ ├── css.css │ │ │ │ │ │ │ └── style.css │ │ │ │ │ │ ├── userPass.aspx.cs │ │ │ │ │ │ ├── userPass.aspx.designer.cs │ │ │ │ │ │ ├── userPass.aspx.resx │ │ │ │ │ │ ├── userinfo.aspx │ │ │ │ │ │ ├── userinfo.aspx.cs │ │ │ │ │ │ ├── userinfo.aspx.designer.cs │ │ │ │ │ │ ├── userinfo.aspx.resx │ │ │ │ │ │ ├── usermodify.aspx │ │ │ │ │ │ ├── usermodify.aspx.cs │ │ │ │ │ │ ├── usermodify.aspx.designer.cs │ │ │ │ │ │ ├── usermodify.aspx.resx │ │ │ │ │ │ ├── userpass.aspx │ │ │ │ │ │ ├── userupdate.aspx │ │ │ │ │ │ ├── userupdate.aspx.cs │ │ │ │ │ │ ├── userupdate.aspx.designer.cs │ │ │ │ │ │ └── userupdate.aspx.resx │ │ │ │ │ ├── Images │ │ │ │ │ │ ├── Briefcase16.gif │ │ │ │ │ │ ├── Briefcase32.gif │ │ │ │ │ │ ├── Loading.gif │ │ │ │ │ │ ├── MenuImg │ │ │ │ │ │ │ ├── 288.GIF │ │ │ │ │ │ │ ├── Programs16.gif │ │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ │ ├── about16.gif │ │ │ │ │ │ │ ├── bbs16.gif │ │ │ │ │ │ │ ├── find16.gif │ │ │ │ │ │ │ ├── folder16.gif │ │ │ │ │ │ │ ├── foldergreen_16.gif │ │ │ │ │ │ │ ├── ger16.gif │ │ │ │ │ │ │ ├── help16.gif │ │ │ │ │ │ │ ├── news16.gif │ │ │ │ │ │ │ ├── out16.gif │ │ │ │ │ │ │ ├── quanx16.gif │ │ │ │ │ │ │ ├── thumbnails.gif │ │ │ │ │ │ │ ├── times.gif │ │ │ │ │ │ │ ├── ts16.gif │ │ │ │ │ │ │ ├── user16.gif │ │ │ │ │ │ │ ├── xinx16.gif │ │ │ │ │ │ │ ├── zhut16.gif │ │ │ │ │ │ │ └── zjsp16.gif │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ ├── a_te01.gif │ │ │ │ │ │ ├── a_te02.gif │ │ │ │ │ │ ├── about16.gif │ │ │ │ │ │ ├── add16.gif │ │ │ │ │ │ ├── b1.gif │ │ │ │ │ │ ├── b11-1.gif │ │ │ │ │ │ ├── b11-2.gif │ │ │ │ │ │ ├── b11.gif │ │ │ │ │ │ ├── b12.gif │ │ │ │ │ │ ├── b13-1.gif │ │ │ │ │ │ ├── b13-2.gif │ │ │ │ │ │ ├── b13.gif │ │ │ │ │ │ ├── b3.gif │ │ │ │ │ │ ├── b4.gif │ │ │ │ │ │ ├── b5.gif │ │ │ │ │ │ ├── bar_00.gif │ │ │ │ │ │ ├── bar_01.gif │ │ │ │ │ │ ├── bar_02.gif │ │ │ │ │ │ ├── bar_03.gif │ │ │ │ │ │ ├── bar_04.gif │ │ │ │ │ │ ├── bar_05.gif │ │ │ │ │ │ ├── bar_06.gif │ │ │ │ │ │ ├── bar_07.gif │ │ │ │ │ │ ├── bar_08.gif │ │ │ │ │ │ ├── bar_10.gif │ │ │ │ │ │ ├── bg.gif │ │ │ │ │ │ ├── bg_01.gif │ │ │ │ │ │ ├── bg_02.gif │ │ │ │ │ │ ├── bg_03.gif │ │ │ │ │ │ ├── bgx.GIF │ │ │ │ │ │ ├── blank.gif │ │ │ │ │ │ ├── bottom_01.gif │ │ │ │ │ │ ├── bottom_02.gif │ │ │ │ │ │ ├── bottom_03.gif │ │ │ │ │ │ ├── button_edit.gif │ │ │ │ │ │ ├── button_search.GIF │ │ │ │ │ │ ├── c6.gif │ │ │ │ │ │ ├── card16.gif │ │ │ │ │ │ ├── card32.gif │ │ │ │ │ │ ├── company16.gif │ │ │ │ │ │ ├── css.css │ │ │ │ │ │ ├── d2.gif │ │ │ │ │ │ ├── d3.gif │ │ │ │ │ │ ├── desktop16.gif │ │ │ │ │ │ ├── desktop32.gif │ │ │ │ │ │ ├── desktop_01.gif │ │ │ │ │ │ ├── desktop_02.gif │ │ │ │ │ │ ├── desktop_03.gif │ │ │ │ │ │ ├── dsj16.gif │ │ │ │ │ │ ├── dsj32.gif │ │ │ │ │ │ ├── f3.gif │ │ │ │ │ │ ├── f4.gif │ │ │ │ │ │ ├── find16.gif │ │ │ │ │ │ ├── find32.gif │ │ │ │ │ │ ├── folder16.gif │ │ │ │ │ │ ├── folder32.gif │ │ │ │ │ │ ├── foldergreen_16.gif │ │ │ │ │ │ ├── ger16.gif │ │ │ │ │ │ ├── ger32.gif │ │ │ │ │ │ ├── gongg16.gif │ │ │ │ │ │ ├── gongg32.gif │ │ │ │ │ │ ├── gongzkp16.gif │ │ │ │ │ │ ├── gongzkp32.gif │ │ │ │ │ │ ├── help16.gif │ │ │ │ │ │ ├── help32.gif │ │ │ │ │ │ ├── image.gif │ │ │ │ │ │ ├── in_bg.gif │ │ │ │ │ │ ├── left-1-1.gif │ │ │ │ │ │ ├── left-1-2.gif │ │ │ │ │ │ ├── left-1-3.gif │ │ │ │ │ │ ├── left-1.gif │ │ │ │ │ │ ├── left-2-1.gif │ │ │ │ │ │ ├── left-2-2.gif │ │ │ │ │ │ ├── left-2-3.gif │ │ │ │ │ │ ├── left-2.gif │ │ │ │ │ │ ├── left-3-1.gif │ │ │ │ │ │ ├── left-3-2.gif │ │ │ │ │ │ ├── left-3-3.gif │ │ │ │ │ │ ├── left-3.gif │ │ │ │ │ │ ├── left-bj-1.gif │ │ │ │ │ │ ├── left-bj-2.gif │ │ │ │ │ │ ├── left-bj-3.gif │ │ │ │ │ │ ├── left-bj.gif │ │ │ │ │ │ ├── login.css │ │ │ │ │ │ ├── login_p_img02.gif │ │ │ │ │ │ ├── login_p_img03.gif │ │ │ │ │ │ ├── login_p_img04.gif │ │ │ │ │ │ ├── login_p_img05.gif │ │ │ │ │ │ ├── login_p_img11.gif │ │ │ │ │ │ ├── mag16.gif │ │ │ │ │ │ ├── mail16.gif │ │ │ │ │ │ ├── main_01.gif │ │ │ │ │ │ ├── main_04.gif │ │ │ │ │ │ ├── main_05.gif │ │ │ │ │ │ ├── main_06.gif │ │ │ │ │ │ ├── main_08.gif │ │ │ │ │ │ ├── main_09.gif │ │ │ │ │ │ ├── member_t04.JPG │ │ │ │ │ │ ├── message16.gif │ │ │ │ │ │ ├── module16.gif │ │ │ │ │ │ ├── module32.gif │ │ │ │ │ │ ├── more1.gif │ │ │ │ │ │ ├── myfile16.gif │ │ │ │ │ │ ├── myfile32.gif │ │ │ │ │ │ ├── news16.gif │ │ │ │ │ │ ├── onecard16.gif │ │ │ │ │ │ ├── onecard32.gif │ │ │ │ │ │ ├── out16.gif │ │ │ │ │ │ ├── out32.gif │ │ │ │ │ │ ├── plan16.gif │ │ │ │ │ │ ├── plan32.gif │ │ │ │ │ │ ├── point07.gif │ │ │ │ │ │ ├── quanx16.gif │ │ │ │ │ │ ├── quanx32.gif │ │ │ │ │ │ ├── right-bj-1.gif │ │ │ │ │ │ ├── right-bj-2.gif │ │ │ │ │ │ ├── right-bj-3.gif │ │ │ │ │ │ ├── right-bj.gif │ │ │ │ │ │ ├── spacer.gif │ │ │ │ │ │ ├── style.css │ │ │ │ │ │ ├── top-1-1.gif │ │ │ │ │ │ ├── top-1-2.gif │ │ │ │ │ │ ├── top-1-3.gif │ │ │ │ │ │ ├── top-1.gif │ │ │ │ │ │ ├── top-2-1.gif │ │ │ │ │ │ ├── top-2-2.gif │ │ │ │ │ │ ├── top-2-3.gif │ │ │ │ │ │ ├── top-2.gif │ │ │ │ │ │ ├── top-3-1.gif │ │ │ │ │ │ ├── top-3-2.gif │ │ │ │ │ │ ├── top-3-3.gif │ │ │ │ │ │ ├── top-3.gif │ │ │ │ │ │ ├── top-4-1.gif │ │ │ │ │ │ ├── top-4-2.gif │ │ │ │ │ │ ├── top-4-3.gif │ │ │ │ │ │ ├── top-4.gif │ │ │ │ │ │ ├── top-5-1.gif │ │ │ │ │ │ ├── top-5-2.gif │ │ │ │ │ │ ├── top-5-3.gif │ │ │ │ │ │ ├── top-5.gif │ │ │ │ │ │ ├── top-bj-1.gif │ │ │ │ │ │ ├── top-bj-2.gif │ │ │ │ │ │ ├── top-bj-3.gif │ │ │ │ │ │ ├── top-bj.gif │ │ │ │ │ │ ├── topbar_01.jpg │ │ │ │ │ │ ├── topbar_02.jpg │ │ │ │ │ │ ├── topbar_03.jpg │ │ │ │ │ │ ├── tubiao_01.GIF │ │ │ │ │ │ ├── tubiao_02.gif │ │ │ │ │ │ ├── user16.gif │ │ │ │ │ │ ├── vote16.gif │ │ │ │ │ │ ├── x16.gif │ │ │ │ │ │ ├── xinx16.gif │ │ │ │ │ │ ├── xinx32.gif │ │ │ │ │ │ ├── yw16.gif │ │ │ │ │ │ ├── zhut16.gif │ │ │ │ │ │ └── zjsp16.gif │ │ │ │ │ ├── Left.aspx │ │ │ │ │ ├── Left.aspx.cs │ │ │ │ │ ├── Left.aspx.designer.cs │ │ │ │ │ ├── Left.aspx.resx │ │ │ │ │ ├── Login.aspx │ │ │ │ │ ├── Login.aspx.cs │ │ │ │ │ ├── Login.aspx.designer.cs │ │ │ │ │ ├── Logout.aspx │ │ │ │ │ ├── Logout.aspx.cs │ │ │ │ │ ├── Logout.aspx.designer.cs │ │ │ │ │ ├── Logout.aspx.resx │ │ │ │ │ ├── Main.aspx │ │ │ │ │ ├── Main.aspx.cs │ │ │ │ │ ├── Main.aspx.designer.cs │ │ │ │ │ ├── Main.aspx.resx │ │ │ │ │ ├── Main.htm │ │ │ │ │ ├── Relogin.aspx │ │ │ │ │ ├── Relogin.aspx.cs │ │ │ │ │ ├── Relogin.aspx.designer.cs │ │ │ │ │ ├── Relogin.aspx.resx │ │ │ │ │ ├── ShowCallBoard.aspx │ │ │ │ │ ├── ShowCallBoard.aspx.cs │ │ │ │ │ ├── ShowCallBoard.aspx.designer.cs │ │ │ │ │ ├── ShowCallBoard.aspx.resx │ │ │ │ │ ├── Spliter.aspx │ │ │ │ │ ├── Spliter.aspx.cs │ │ │ │ │ ├── Spliter.aspx.designer.cs │ │ │ │ │ ├── Spliter.aspx.resx │ │ │ │ │ ├── Style.css │ │ │ │ │ ├── SysManage │ │ │ │ │ │ ├── CheckBox.js │ │ │ │ │ │ ├── IndexTree.aspx │ │ │ │ │ │ ├── IndexTree.aspx.cs │ │ │ │ │ │ ├── IndexTree.aspx.designer.cs │ │ │ │ │ │ ├── LogIndex.aspx.cs │ │ │ │ │ │ ├── LogIndex.aspx.designer.cs │ │ │ │ │ │ ├── LogIndex.aspx.resx │ │ │ │ │ │ ├── LogShow.aspx.cs │ │ │ │ │ │ ├── LogShow.aspx.designer.cs │ │ │ │ │ │ ├── LogShow.aspx.resx │ │ │ │ │ │ ├── add.aspx │ │ │ │ │ │ ├── add.aspx.cs │ │ │ │ │ │ ├── add.aspx.designer.cs │ │ │ │ │ │ ├── add.aspx.resx │ │ │ │ │ │ ├── delete.aspx │ │ │ │ │ │ ├── delete.aspx.cs │ │ │ │ │ │ ├── delete.aspx.designer.cs │ │ │ │ │ │ ├── delete.aspx.resx │ │ │ │ │ │ ├── logindex.aspx │ │ │ │ │ │ ├── logshow.aspx │ │ │ │ │ │ ├── makesql.aspx │ │ │ │ │ │ ├── makesql.aspx.cs │ │ │ │ │ │ ├── makesql.aspx.designer.cs │ │ │ │ │ │ ├── makesql.aspx.resx │ │ │ │ │ │ ├── modify.aspx │ │ │ │ │ │ ├── modify.aspx.cs │ │ │ │ │ │ ├── modify.aspx.designer.cs │ │ │ │ │ │ ├── modify.aspx.resx │ │ │ │ │ │ ├── search.aspx │ │ │ │ │ │ ├── search.aspx.cs │ │ │ │ │ │ ├── search.aspx.designer.cs │ │ │ │ │ │ ├── search.aspx.resx │ │ │ │ │ │ ├── show.aspx │ │ │ │ │ │ ├── show.aspx.cs │ │ │ │ │ │ ├── show.aspx.designer.cs │ │ │ │ │ │ ├── show.aspx.resx │ │ │ │ │ │ ├── treelist.aspx │ │ │ │ │ │ ├── treelist.aspx.cs │ │ │ │ │ │ ├── treelist.aspx.designer.cs │ │ │ │ │ │ └── treelist.aspx.resx │ │ │ │ │ ├── Top.aspx │ │ │ │ │ ├── Top.aspx.cs │ │ │ │ │ ├── Top.aspx.designer.cs │ │ │ │ │ ├── Top.aspx.resx │ │ │ │ │ ├── toindex.aspx │ │ │ │ │ ├── toindex.aspx.cs │ │ │ │ │ ├── toindex.aspx.designer.cs │ │ │ │ │ └── toindex.aspx.resx │ │ │ │ │ ├── Config │ │ │ │ │ ├── SmtpSetting.config │ │ │ │ │ └── vssver2.scc │ │ │ │ │ ├── Controls │ │ │ │ │ ├── CopyRight.ascx.cs │ │ │ │ │ ├── CopyRight.ascx.designer.cs │ │ │ │ │ ├── checkright.ascx │ │ │ │ │ ├── checkright.ascx.cs │ │ │ │ │ ├── checkright.ascx.designer.cs │ │ │ │ │ └── copyright.ascx │ │ │ │ │ ├── Default.aspx │ │ │ │ │ ├── Default.aspx.cs │ │ │ │ │ ├── Default.aspx.designer.cs │ │ │ │ │ ├── Global.asax │ │ │ │ │ ├── Global.asax.cs │ │ │ │ │ ├── Global.asax.resx │ │ │ │ │ ├── Images │ │ │ │ │ └── Thumbs.db │ │ │ │ │ ├── MasterPage.master │ │ │ │ │ ├── MasterPage.master.cs │ │ │ │ │ ├── MasterPage.master.designer.cs │ │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ ├── Style.css │ │ │ │ │ ├── ValidateCode.aspx │ │ │ │ │ ├── ValidateCode.aspx.cs │ │ │ │ │ ├── ValidateCode.aspx.designer.cs │ │ │ │ │ ├── Web.config │ │ │ │ │ ├── Web.csproj │ │ │ │ │ ├── Web.csproj.user │ │ │ │ │ ├── bin │ │ │ │ │ ├── LTP.Accounts.dll │ │ │ │ │ ├── LtpPageControl.dll │ │ │ │ │ └── Microsoft.Web.UI.WebControls.dll │ │ │ │ │ ├── js │ │ │ │ │ ├── CheckBox.js │ │ │ │ │ └── calendar1.js │ │ │ │ │ └── webctrl_client │ │ │ │ │ └── 1_0 │ │ │ │ │ ├── Images │ │ │ │ │ ├── folder.gif │ │ │ │ │ ├── folderopen.gif │ │ │ │ │ ├── html.gif │ │ │ │ │ └── root.gif │ │ │ │ │ ├── MultiPage.htc │ │ │ │ │ ├── TabStrip.htc │ │ │ │ │ ├── TreeImages │ │ │ │ │ ├── L.gif │ │ │ │ │ ├── Lminus.gif │ │ │ │ │ ├── Lplus.gif │ │ │ │ │ ├── Rminus.gif │ │ │ │ │ ├── Rplus.gif │ │ │ │ │ ├── T.gif │ │ │ │ │ ├── Tminus.gif │ │ │ │ │ ├── Tplus.gif │ │ │ │ │ ├── f.gif │ │ │ │ │ ├── fminus.gif │ │ │ │ │ ├── fplus.gif │ │ │ │ │ ├── i.gif │ │ │ │ │ ├── minus.gif │ │ │ │ │ ├── plus.gif │ │ │ │ │ ├── r.gif │ │ │ │ │ ├── rtl │ │ │ │ │ │ ├── F.gif │ │ │ │ │ │ ├── Fminus.gif │ │ │ │ │ │ ├── Fplus.gif │ │ │ │ │ │ ├── I.gif │ │ │ │ │ │ ├── L.gif │ │ │ │ │ │ ├── Lminus.gif │ │ │ │ │ │ ├── Lplus.gif │ │ │ │ │ │ ├── Rminus.gif │ │ │ │ │ │ ├── Rplus.gif │ │ │ │ │ │ ├── T.gif │ │ │ │ │ │ ├── Tminus.gif │ │ │ │ │ │ ├── Tplus.gif │ │ │ │ │ │ ├── minus.gif │ │ │ │ │ │ ├── plus.gif │ │ │ │ │ │ ├── r.gif │ │ │ │ │ │ └── white.gif │ │ │ │ │ └── white.gif │ │ │ │ │ ├── toolbar.htc │ │ │ │ │ └── treeview.htc │ │ │ ├── Template.cmt │ │ │ ├── TemplateFile │ │ │ │ ├── Host对象示例.cmt │ │ │ │ ├── Nhibernate │ │ │ │ │ ├── Entity.cmt │ │ │ │ │ └── XmlMapping.cmt │ │ │ │ ├── 使用说明.txt │ │ │ │ ├── 工厂模式模板 │ │ │ │ │ ├── BLL.cmt │ │ │ │ │ ├── DALFactory.cmt │ │ │ │ │ ├── IDAL.cmt │ │ │ │ │ ├── Model.cmt │ │ │ │ │ └── SQLServerDAL.cmt │ │ │ │ ├── 模版示例.cmt │ │ │ │ ├── 简单三层模板 │ │ │ │ │ ├── BLL.cmt │ │ │ │ │ ├── DAL.cmt │ │ │ │ │ └── Model.cmt │ │ │ │ ├── 调用存储过程DAL.cmt │ │ │ │ └── 页面模板 │ │ │ │ │ ├── Web.cmt │ │ │ │ │ └── Web.cs.cmt │ │ │ ├── table.htm │ │ │ └── web │ │ │ │ ├── Add.aspx │ │ │ │ ├── Add.aspx.cs │ │ │ │ ├── Add.aspx.designer.cs │ │ │ │ ├── List.aspx │ │ │ │ ├── List.aspx.cs │ │ │ │ ├── List.aspx.designer.cs │ │ │ │ ├── Modify.aspx │ │ │ │ ├── Modify.aspx.cs │ │ │ │ ├── Modify.aspx.designer.cs │ │ │ │ ├── Show.aspx │ │ │ │ ├── Show.aspx.cs │ │ │ │ ├── Show.aspx.designer.cs │ │ │ │ ├── delete.aspx │ │ │ │ ├── delete.aspx.cs │ │ │ │ └── delete.aspx.designer.cs │ │ ├── TextStyle │ │ │ ├── ASPX.xshd │ │ │ ├── CPP-Mode.xshd │ │ │ ├── CSharp-Mode.xshd │ │ │ ├── HTML-Mode.xshd │ │ │ ├── ILAsm-Mode.xshd │ │ │ ├── Java-Mode.xshd │ │ │ ├── JavaScript-Mode.xshd │ │ │ ├── Mode.xsd │ │ │ ├── Mode.xsx │ │ │ ├── PHP-Mode.xshd │ │ │ ├── RightArrow.cur │ │ │ ├── SQL-Mode.xshd │ │ │ ├── SyntaxModes.xml │ │ │ ├── VBNET-Mode.xshd │ │ │ └── XML-Mode.xshd │ │ ├── UpdateVer.xml │ │ ├── Updatelist.ini │ │ ├── appconfig.config │ │ ├── cmcfg.ini │ │ ├── copyright.txt │ │ ├── datatype.ini │ │ ├── de │ │ │ └── Codematic.resources.dll │ │ ├── help.url │ │ ├── hotkey.config │ │ ├── img │ │ │ ├── Thumbs.db │ │ │ └── help.ico │ │ ├── language │ │ │ ├── en │ │ │ │ ├── BuilderBLLComm.lan │ │ │ │ ├── BuilderDALELParam.lan │ │ │ │ ├── BuilderDALELProc.lan │ │ │ │ ├── BuilderDALELSQL.lan │ │ │ │ ├── BuilderDALIBatisNet.lan │ │ │ │ ├── BuilderDALIBatisNetMapXML.lan │ │ │ │ ├── BuilderDALParam.lan │ │ │ │ ├── BuilderDALProc.lan │ │ │ │ ├── BuilderDALSQL.lan │ │ │ │ ├── BuilderDALTranParam.lan │ │ │ │ ├── BuilderFrameOne.lan │ │ │ │ ├── BuilderModel.lan │ │ │ │ └── SystemMenu.lan │ │ │ └── zh-cn │ │ │ │ ├── BuilderBLLComm.lan │ │ │ │ ├── BuilderDALELParam.lan │ │ │ │ ├── BuilderDALELProc.lan │ │ │ │ ├── BuilderDALELSQL.lan │ │ │ │ ├── BuilderDALIBatisNet.lan │ │ │ │ ├── BuilderDALIBatisNetMapXML.lan │ │ │ │ ├── BuilderDALParam.lan │ │ │ │ ├── BuilderDALProc.lan │ │ │ │ ├── BuilderDALSQL.lan │ │ │ │ ├── BuilderDALTranParam.lan │ │ │ │ ├── BuilderFrameOne.lan │ │ │ │ ├── BuilderModel.lan │ │ │ │ └── SystemMenu.lan │ │ ├── license.rtf │ │ ├── license.txt │ │ ├── logInfo.txt │ │ ├── tableTemplate.xslt │ │ ├── temprss.xml │ │ └── temptree.xml │ └── UpdateVer.xml ├── images │ ├── 098.GIF │ ├── 114.GIF │ ├── App0.GIF │ ├── Closed Folder yellow.ico │ ├── Exit.ico │ ├── Folderclose.gif │ ├── Folderopen.gif │ ├── LOGO1.gif │ ├── Menu │ │ ├── Thumbs.db │ │ ├── copy.gif │ │ ├── delete.gif │ │ ├── j.gif │ │ └── pa.gif │ ├── Network.ico │ ├── New │ │ ├── Thumbs.db │ │ ├── aspx.png │ │ ├── cs32.gif │ │ ├── f3.gif │ │ ├── htm.gif │ │ ├── one.gif │ │ ├── s3.gif │ │ ├── te.gif │ │ ├── temp.png │ │ ├── templatefile.png │ │ ├── txt.gif │ │ ├── vb.gif │ │ └── xml.gif │ ├── Open Folder yellow.ico │ ├── SlnView │ │ ├── Thumbs.db │ │ ├── VS2005.ico │ │ ├── batchcs.png │ │ ├── batchcs2.png │ │ ├── class.gif │ │ ├── classf.gif │ │ ├── cn.gif │ │ ├── cs.gif │ │ ├── cs.ico │ │ ├── cs.png │ │ ├── csproj.ico │ │ ├── interface.gif │ │ ├── k.gif │ │ ├── sln.ico │ │ ├── sln.png │ │ ├── sln2.ico │ │ ├── toolclass.gif │ │ └── toolsln.gif │ ├── SqlExe.gif │ ├── SqlQuery.ico │ ├── Thumbs.db │ ├── aboutbg.jpg │ ├── app.gif │ ├── app.ico │ ├── bg.png │ ├── build.gif │ ├── chat.ico │ ├── codeset.gif │ ├── computer2.ico │ ├── dbrow.gif │ ├── dbview │ │ ├── Addser.gif │ │ ├── SQL.png │ │ ├── Thumbs.db │ │ ├── addserver.png │ │ ├── db.JPG │ │ ├── db.gif │ │ ├── db.ico │ │ ├── dbadd.gif │ │ ├── field.ico │ │ ├── fild2.gif │ │ ├── noconnect.gif │ │ ├── noconnect.jpg │ │ ├── pk.gif │ │ ├── refrush.gif │ │ ├── server.ico │ │ ├── server0.gif │ │ ├── server1.gif │ │ ├── serverlist.gif │ │ ├── sp.gif │ │ ├── sp_p.gif │ │ ├── sp_return.gif │ │ ├── tab2.gif │ │ └── view.gif │ ├── difu.gif │ ├── exec.ico │ ├── fav.gif │ ├── file.ico │ ├── help.gif │ ├── help.ico │ ├── help2.gif │ ├── list.gif │ ├── loginsql.jpg │ ├── loginsql.png │ ├── loginsql2.jpg │ ├── logo.GIF │ ├── logo.jpg │ ├── oracle.ico │ ├── panal.gif │ ├── refrush.gif │ ├── rss1.gif │ ├── run.gif │ ├── run.jpg │ ├── sql.ico │ ├── sql2005.ico │ ├── sql2008.png │ ├── startpagehead.png │ ├── startpages.gif │ ├── task.gif │ ├── tb32.gif │ ├── tb482.jpg │ ├── temp.ico │ ├── temp │ │ ├── 12.JPG │ │ ├── CS.psd │ │ ├── Control Panel.ico │ │ ├── Open.ico │ │ ├── Redo.GIF │ │ ├── Thumbs.db │ │ ├── app.gif │ │ ├── chat.ico │ │ ├── clock.ico │ │ ├── dotNET.ico │ │ ├── dotNETconnectedtechnology.JPG │ │ └── download_manager.ico │ ├── template.png │ ├── toobar2.gif │ ├── toobar3.gif │ ├── toobar4.gif │ ├── toolbar.gif │ ├── toolbox.gif │ ├── toolsln.gif │ ├── uninstall.ico │ ├── upload.ico │ ├── word.ico │ └── xml.ico └── lib │ ├── ICSharpCode.TextEditor.dll │ ├── Interop.Word.dll │ ├── LTP.ConvertCS2VB.dll │ ├── LTP.SplashScrForm.dll │ ├── LTP.TextEditor.dll │ ├── MagicLibrary.dll │ ├── Microsoft.VisualStudio.TextTemplating.dll │ ├── MySql.Data.dll │ ├── PinkieControls.dll │ ├── System.Data.SQLite.DLL │ ├── System.Data.SQLite.Linq.dll │ ├── System.Data.SQLite.XML │ ├── System.Data.SQLite.exp │ ├── System.Data.SQLite.lib │ └── x64 │ ├── System.Data.SQLite.DLL │ ├── System.Data.SQLite.exp │ ├── System.Data.SQLite.lib │ ├── test.exe │ └── test.exe.config ├── Codemati.suo ├── Codematic.sln ├── Codematic.suo ├── DBFactory ├── DBFactory.cs ├── DBFactory.csproj ├── DBFactory.csproj.user ├── Properties │ └── AssemblyInfo.cs └── bin │ ├── Debug │ ├── Maticsoft.CmConfig.dll │ ├── Maticsoft.CodeHelper.dll │ ├── Maticsoft.DBFactory.dll │ ├── Maticsoft.IDBO.dll │ └── Maticsoft.Utility.dll │ └── Release │ ├── Maticsoft.CmConfig.dll │ ├── Maticsoft.CodeHelper.dll │ ├── Maticsoft.DBFactory.dll │ ├── Maticsoft.IDBO.dll │ └── Maticsoft.Utility.dll ├── DbObject ├── DbObjects.csproj ├── DbObjects.csproj.user ├── MySQL │ ├── DbObject.cs │ └── DbScriptBuilder.cs ├── Odbc │ ├── DbObject.cs │ └── DbScriptBuilder.cs ├── OleDb │ ├── DbObject.cs │ └── DbScriptBuilder.cs ├── Oracle │ ├── DbObject.cs │ └── DbScriptBuilder.cs ├── Properties │ └── AssemblyInfo.cs ├── SQL2000 │ ├── DbObject.cs │ └── DbScriptBuilder.cs ├── SQL2005 │ ├── DbObject.cs │ └── DbScriptBuilder.cs ├── SQL2008 │ ├── DbObject.cs │ └── DbScriptBuilder.cs ├── SQL2012 │ ├── DbObject.cs │ └── DbScriptBuilder.cs ├── SQLite │ ├── DbObject.cs │ └── DbScriptBuilder.cs └── bin │ ├── Debug │ ├── LTP.DbObject.dll │ ├── Maticsoft.CmConfig.dll │ ├── Maticsoft.CodeHelper.dll │ ├── Maticsoft.DbObjects.dll │ ├── Maticsoft.IDBO.dll │ ├── Maticsoft.Utility.dll │ ├── MySql.Data.dll │ ├── System.Data.SQLite.DLL │ └── System.Data.SQLite.xml │ └── Release │ ├── Maticsoft.CmConfig.dll │ ├── Maticsoft.CodeHelper.dll │ ├── Maticsoft.DbObjects.dll │ ├── Maticsoft.IDBO.dll │ ├── Maticsoft.Utility.dll │ ├── MySql.Data.dll │ ├── System.Data.SQLite.DLL │ └── System.Data.SQLite.xml ├── Engine ├── CodeGenerator.cs ├── DatabaseHost.cs ├── Engine.csproj ├── ProcedureHost.cs ├── Properties │ └── AssemblyInfo.cs ├── TableHost.cs ├── TemplateHost.cs └── bin │ ├── Debug │ ├── Maticsoft.CmConfig.dll │ ├── Maticsoft.CodeHelper.dll │ ├── Maticsoft.Engine.dll │ ├── Maticsoft.IDBO.dll │ └── Maticsoft.Utility.dll │ └── Release │ ├── Maticsoft.CmConfig.dll │ ├── Maticsoft.CodeHelper.dll │ ├── Maticsoft.Engine.dll │ ├── Maticsoft.IDBO.dll │ └── Maticsoft.Utility.dll ├── IBuilder ├── IBuilder.csproj ├── IBuilder.csproj.user ├── IBuilderAttribute.cs ├── IBuilderBLL.cs ├── IBuilderDAL.cs ├── IBuilderDALMTran.cs ├── IBuilderDALTran.cs ├── IBuilderIDAL.cs ├── IBuilderModel.cs ├── IBuilderWeb.cs ├── Properties │ └── AssemblyInfo.cs └── bin │ ├── Debug │ ├── Maticsoft.CmConfig.dll │ ├── Maticsoft.CodeHelper.dll │ ├── Maticsoft.IBuilder.dll │ ├── Maticsoft.IDBO.dll │ └── Maticsoft.Utility.dll │ └── Release │ ├── Maticsoft.CmConfig.dll │ ├── Maticsoft.CodeHelper.dll │ ├── Maticsoft.IBuilder.dll │ ├── Maticsoft.IDBO.dll │ └── Maticsoft.Utility.dll ├── IDbObject ├── IDBO.csproj ├── IDBO.csproj.user ├── IDbObject.cs ├── IDbScriptBuilder.cs ├── Properties │ └── AssemblyInfo.cs └── bin │ ├── Debug │ ├── Maticsoft.CmConfig.dll │ ├── Maticsoft.CodeHelper.dll │ ├── Maticsoft.IDBO.dll │ └── Maticsoft.Utility.dll │ └── Release │ ├── Maticsoft.CmConfig.dll │ ├── Maticsoft.CodeHelper.dll │ ├── Maticsoft.IDBO.dll │ └── Maticsoft.Utility.dll ├── LTPTextEditor ├── LTPTextEditor.csproj ├── LTPTextEditor.csproj.user ├── Properties │ └── AssemblyInfo.cs ├── SyntaxReader.cs ├── TextEditorControlWrapper.cs ├── TextEditorControlWrapper.resx └── bin │ ├── Debug │ ├── ICSharpCode.TextEditor.dll │ └── LTPTextEditor.dll │ └── Release │ ├── ICSharpCode.TextEditor.dll │ └── LTPTextEditor.dll ├── README.md ├── Setup2 └── Setup2.vdproj ├── SplashScreen ├── AssemblyInfo.cs ├── Img │ ├── logo.JPG │ ├── logo.bmp │ ├── logo2.JPG │ ├── logo3.JPG │ ├── 未标题-3.jpg │ └── 未标题-3.psd ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── SplashScrForm.csproj ├── SplashScrForm.csproj.user ├── SplashScreen.cs ├── SplashScreen.resx ├── SplashScreen.suo ├── Thumbs.db └── bin │ ├── Debug │ ├── LTP.SplashScrForm.dll │ └── Maticsoft.SplashScrForm.dll │ └── Release │ └── LTP.SplashScrForm.dll ├── UpdateApp ├── App.config ├── App.ico ├── AssemblyInfo.cs ├── Form1.cs ├── Form1.resx ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── Thumbs.db ├── UpdateApp.csproj ├── UpdateApp.csproj.user ├── UpdateVer.cs ├── Web References │ └── UpdateService │ │ ├── Reference.cs │ │ ├── Reference.map │ │ ├── UpServer.disco │ │ └── UpServer.wsdl └── bin │ ├── Debug │ ├── CodeDAL.addin │ ├── Codematic.exe │ ├── LTP.BuilderDALELParam.dll │ ├── LTP.BuilderDALELProc.dll │ ├── LTP.BuilderDALELSQL.dll │ ├── LTP.BuilderDALParam.dll │ ├── LTP.BuilderDALProc.dll │ ├── LTP.BuilderDALSQL.dll │ ├── LTP.BuilderDALTranParam.dll │ ├── LTP.CodeBuild.dll │ ├── LTP.CodeHelper.dll │ ├── LTP.DBFactory.dll │ ├── LTP.DbObjects.dll │ ├── LTP.IBuilder.dll │ ├── LTP.IDBO.dll │ ├── LTP.SplashScrForm.dll │ ├── LTP.Utility.dll │ ├── Maticsoft.AddInManager.dll │ ├── UpdateApp.exe │ ├── UpdateApp.exe.config │ ├── UpdateApp.vshost.exe │ ├── UpdateApp.vshost.exe.config │ ├── UpdateVer.xml │ ├── Updatelist.ini │ └── datatype.ini │ └── Release │ ├── UpdateApp.XmlSerializers.dll │ ├── UpdateApp.exe │ ├── UpdateApp.exe.config │ ├── UpdateVer.xml │ └── Updatelist.ini ├── Utility ├── Cache.cs ├── ConfigHelper.cs ├── INIFile.cs ├── Properties │ └── AssemblyInfo.cs ├── StringPlus.cs ├── Utility.csproj ├── Utility.csproj.user ├── VSProject.cs └── bin │ ├── Debug │ └── Maticsoft.Utility.dll │ └── Release │ └── Maticsoft.Utility.dll ├── VSProject ├── Config.cs ├── OtherProjectSettings.cs ├── Properties │ └── AssemblyInfo.cs ├── SolutionManager.cs ├── VSProject.csproj ├── VSProject.csproj.user ├── VisualStudioProject.cs └── bin │ ├── Debug │ └── VSProject.dll │ └── Release │ └── VSProject.dll └── uninstall ├── App.ico ├── AssemblyInfo.cs ├── Form1.cs ├── Form1.resx ├── Thumbs.db ├── bin ├── Debug │ ├── uninstall.exe │ └── uninstall.vshost.exe └── Release │ ├── uninstall.exe │ ├── uninstall.vshost.exe │ └── uninstall.vshost.exe.manifest ├── uninstall.csproj └── uninstall.csproj.user /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /AddInManager/AddIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/AddInManager/AddIn.cs -------------------------------------------------------------------------------- /AddInManager/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/AddInManager/MainForm.cs -------------------------------------------------------------------------------- /AddInManager/bin/Debug/Maticsoft.AddInManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/AddInManager/bin/Debug/Maticsoft.AddInManager.dll -------------------------------------------------------------------------------- /AddInManager/bin/Debug/Maticsoft.AddInManager.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/AddInManager/bin/Debug/Maticsoft.AddInManager.exe -------------------------------------------------------------------------------- /AddInManager/bin/Debug/Maticsoft.AddInManager.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/AddInManager/bin/Debug/Maticsoft.AddInManager.vshost.exe -------------------------------------------------------------------------------- /AddInManager/bin/Debug/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/AddInManager/bin/Debug/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /AddInManager/bin/Release/Maticsoft.AddInManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/AddInManager/bin/Release/Maticsoft.AddInManager.dll -------------------------------------------------------------------------------- /AddInManager/bin/Release/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/AddInManager/bin/Release/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /Builder/BuilderBLLComm/BuilderBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderBLLComm/BuilderBLL.cs -------------------------------------------------------------------------------- /Builder/BuilderBLLComm/bin/Debug/Maticsoft.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderBLLComm/bin/Debug/Maticsoft.CmConfig.dll -------------------------------------------------------------------------------- /Builder/BuilderBLLComm/bin/Debug/Maticsoft.CodeHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderBLLComm/bin/Debug/Maticsoft.CodeHelper.dll -------------------------------------------------------------------------------- /Builder/BuilderBLLComm/bin/Debug/Maticsoft.IBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderBLLComm/bin/Debug/Maticsoft.IBuilder.dll -------------------------------------------------------------------------------- /Builder/BuilderBLLComm/bin/Debug/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderBLLComm/bin/Debug/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /Builder/BuilderBLLComm/bin/Debug/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderBLLComm/bin/Debug/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /Builder/BuilderBLLComm/bin/Release/Maticsoft.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderBLLComm/bin/Release/Maticsoft.CmConfig.dll -------------------------------------------------------------------------------- /Builder/BuilderBLLComm/bin/Release/Maticsoft.CodeHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderBLLComm/bin/Release/Maticsoft.CodeHelper.dll -------------------------------------------------------------------------------- /Builder/BuilderBLLComm/bin/Release/Maticsoft.IBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderBLLComm/bin/Release/Maticsoft.IBuilder.dll -------------------------------------------------------------------------------- /Builder/BuilderBLLComm/bin/Release/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderBLLComm/bin/Release/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /Builder/BuilderBLLComm/bin/Release/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderBLLComm/bin/Release/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /Builder/BuilderBLLCommMatic/BuilderBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderBLLCommMatic/BuilderBLL.cs -------------------------------------------------------------------------------- /Builder/BuilderBLLCommMatic/bin/Debug/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderBLLCommMatic/bin/Debug/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /Builder/BuilderBLLCommMatic/bin/Debug/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderBLLCommMatic/bin/Debug/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /Builder/BuilderBLLCommMatic/bin/Release/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderBLLCommMatic/bin/Release/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /Builder/BuilderBLLCommRiasy/BuilderBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderBLLCommRiasy/BuilderBLL.cs -------------------------------------------------------------------------------- /Builder/BuilderBLLCommRiasy/bin/Debug/LTP.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderBLLCommRiasy/bin/Debug/LTP.CmConfig.dll -------------------------------------------------------------------------------- /Builder/BuilderBLLCommRiasy/bin/Debug/LTP.CodeHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderBLLCommRiasy/bin/Debug/LTP.CodeHelper.dll -------------------------------------------------------------------------------- /Builder/BuilderBLLCommRiasy/bin/Debug/LTP.IBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderBLLCommRiasy/bin/Debug/LTP.IBuilder.dll -------------------------------------------------------------------------------- /Builder/BuilderBLLCommRiasy/bin/Debug/LTP.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderBLLCommRiasy/bin/Debug/LTP.IDBO.dll -------------------------------------------------------------------------------- /Builder/BuilderBLLCommRiasy/bin/Debug/LTP.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderBLLCommRiasy/bin/Debug/LTP.Utility.dll -------------------------------------------------------------------------------- /Builder/BuilderBLLCommRiasy/bin/Release/LTP.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderBLLCommRiasy/bin/Release/LTP.CmConfig.dll -------------------------------------------------------------------------------- /Builder/BuilderBLLCommRiasy/bin/Release/LTP.CodeHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderBLLCommRiasy/bin/Release/LTP.CodeHelper.dll -------------------------------------------------------------------------------- /Builder/BuilderBLLCommRiasy/bin/Release/LTP.IBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderBLLCommRiasy/bin/Release/LTP.IBuilder.dll -------------------------------------------------------------------------------- /Builder/BuilderBLLCommRiasy/bin/Release/LTP.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderBLLCommRiasy/bin/Release/LTP.IDBO.dll -------------------------------------------------------------------------------- /Builder/BuilderBLLCommRiasy/bin/Release/LTP.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderBLLCommRiasy/bin/Release/LTP.Utility.dll -------------------------------------------------------------------------------- /Builder/BuilderDAELLProc/BuilderDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDAELLProc/BuilderDAL.cs -------------------------------------------------------------------------------- /Builder/BuilderDAELLProc/bin/Debug/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDAELLProc/bin/Debug/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /Builder/BuilderDAELLProc/bin/Debug/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDAELLProc/bin/Debug/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /Builder/BuilderDAELLProc/bin/Release/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDAELLProc/bin/Release/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /Builder/BuilderDALELParam/BuilderDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALELParam/BuilderDAL.cs -------------------------------------------------------------------------------- /Builder/BuilderDALELParam/BuilderDALELParam.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALELParam/BuilderDALELParam.suo -------------------------------------------------------------------------------- /Builder/BuilderDALELParam/BuilderDALParam.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALELParam/BuilderDALParam.suo -------------------------------------------------------------------------------- /Builder/BuilderDALELParam/bin/Debug/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALELParam/bin/Debug/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /Builder/BuilderDALELParam/bin/Release/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALELParam/bin/Release/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /Builder/BuilderDALELSQL/BuilderDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALELSQL/BuilderDAL.cs -------------------------------------------------------------------------------- /Builder/BuilderDALELSQL/bin/Debug/Maticsoft.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALELSQL/bin/Debug/Maticsoft.CmConfig.dll -------------------------------------------------------------------------------- /Builder/BuilderDALELSQL/bin/Debug/Maticsoft.IBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALELSQL/bin/Debug/Maticsoft.IBuilder.dll -------------------------------------------------------------------------------- /Builder/BuilderDALELSQL/bin/Debug/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALELSQL/bin/Debug/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /Builder/BuilderDALELSQL/bin/Debug/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALELSQL/bin/Debug/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /Builder/BuilderDALELSQL/bin/Release/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALELSQL/bin/Release/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /Builder/BuilderDALIBatisNet/BuilderDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALIBatisNet/BuilderDAL.cs -------------------------------------------------------------------------------- /Builder/BuilderDALIBatisNet/bin/Debug/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALIBatisNet/bin/Debug/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /Builder/BuilderDALIBatisNetMapXML/BuilderDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALIBatisNetMapXML/BuilderDAL.cs -------------------------------------------------------------------------------- /Builder/BuilderDALParam/BuilderDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALParam/BuilderDAL.cs -------------------------------------------------------------------------------- /Builder/BuilderDALParam/bin/Debug/Maticsoft.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALParam/bin/Debug/Maticsoft.CmConfig.dll -------------------------------------------------------------------------------- /Builder/BuilderDALParam/bin/Debug/Maticsoft.IBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALParam/bin/Debug/Maticsoft.IBuilder.dll -------------------------------------------------------------------------------- /Builder/BuilderDALParam/bin/Debug/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALParam/bin/Debug/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /Builder/BuilderDALParam/bin/Debug/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALParam/bin/Debug/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /Builder/BuilderDALParam/bin/Release/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALParam/bin/Release/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /Builder/BuilderDALParamRiasy/BuilderDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALParamRiasy/BuilderDAL.cs -------------------------------------------------------------------------------- /Builder/BuilderDALParamRiasy/bin/Debug/LTP.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALParamRiasy/bin/Debug/LTP.CmConfig.dll -------------------------------------------------------------------------------- /Builder/BuilderDALParamRiasy/bin/Debug/LTP.IBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALParamRiasy/bin/Debug/LTP.IBuilder.dll -------------------------------------------------------------------------------- /Builder/BuilderDALParamRiasy/bin/Debug/LTP.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALParamRiasy/bin/Debug/LTP.IDBO.dll -------------------------------------------------------------------------------- /Builder/BuilderDALParamRiasy/bin/Debug/LTP.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALParamRiasy/bin/Debug/LTP.Utility.dll -------------------------------------------------------------------------------- /Builder/BuilderDALParamRiasy/bin/Release/LTP.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALParamRiasy/bin/Release/LTP.IDBO.dll -------------------------------------------------------------------------------- /Builder/BuilderDALParamRiasy/bin/Release/LTP.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALParamRiasy/bin/Release/LTP.Utility.dll -------------------------------------------------------------------------------- /Builder/BuilderDALProc/BuilderDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALProc/BuilderDAL.cs -------------------------------------------------------------------------------- /Builder/BuilderDALProc/bin/Debug/Maticsoft.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALProc/bin/Debug/Maticsoft.CmConfig.dll -------------------------------------------------------------------------------- /Builder/BuilderDALProc/bin/Debug/Maticsoft.IBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALProc/bin/Debug/Maticsoft.IBuilder.dll -------------------------------------------------------------------------------- /Builder/BuilderDALProc/bin/Debug/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALProc/bin/Debug/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /Builder/BuilderDALProc/bin/Debug/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALProc/bin/Debug/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /Builder/BuilderDALProc/bin/Release/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALProc/bin/Release/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /Builder/BuilderDALProc/bin/Release/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALProc/bin/Release/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /Builder/BuilderDALSQL/BuilderDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALSQL/BuilderDAL.cs -------------------------------------------------------------------------------- /Builder/BuilderDALSQL/bin/Debug/Maticsoft.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALSQL/bin/Debug/Maticsoft.CmConfig.dll -------------------------------------------------------------------------------- /Builder/BuilderDALSQL/bin/Debug/Maticsoft.CodeHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALSQL/bin/Debug/Maticsoft.CodeHelper.dll -------------------------------------------------------------------------------- /Builder/BuilderDALSQL/bin/Debug/Maticsoft.IBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALSQL/bin/Debug/Maticsoft.IBuilder.dll -------------------------------------------------------------------------------- /Builder/BuilderDALSQL/bin/Debug/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALSQL/bin/Debug/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /Builder/BuilderDALSQL/bin/Debug/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALSQL/bin/Debug/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /Builder/BuilderDALSQL/bin/Release/Maticsoft.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALSQL/bin/Release/Maticsoft.CmConfig.dll -------------------------------------------------------------------------------- /Builder/BuilderDALSQL/bin/Release/Maticsoft.IBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALSQL/bin/Release/Maticsoft.IBuilder.dll -------------------------------------------------------------------------------- /Builder/BuilderDALSQL/bin/Release/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALSQL/bin/Release/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /Builder/BuilderDALSQL/bin/Release/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALSQL/bin/Release/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /Builder/BuilderDALTranMParam/BuilderDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALTranMParam/BuilderDAL.cs -------------------------------------------------------------------------------- /Builder/BuilderDALTranParam/BuilderDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALTranParam/BuilderDAL.cs -------------------------------------------------------------------------------- /Builder/BuilderDALTranParam/bin/Debug/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALTranParam/bin/Debug/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /Builder/BuilderDALTranProc/BuilderDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALTranProc/BuilderDAL.cs -------------------------------------------------------------------------------- /Builder/BuilderDALTranProc/bin/Release/LTP.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALTranProc/bin/Release/LTP.CmConfig.dll -------------------------------------------------------------------------------- /Builder/BuilderDALTranProc/bin/Release/LTP.IBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALTranProc/bin/Release/LTP.IBuilder.dll -------------------------------------------------------------------------------- /Builder/BuilderDALTranProc/bin/Release/LTP.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALTranProc/bin/Release/LTP.IDBO.dll -------------------------------------------------------------------------------- /Builder/BuilderDALTranProc/bin/Release/LTP.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALTranProc/bin/Release/LTP.Utility.dll -------------------------------------------------------------------------------- /Builder/BuilderDALTranSQL/BuilderDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALTranSQL/BuilderDAL.cs -------------------------------------------------------------------------------- /Builder/BuilderDALTranSQL/bin/Release/LTP.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALTranSQL/bin/Release/LTP.CmConfig.dll -------------------------------------------------------------------------------- /Builder/BuilderDALTranSQL/bin/Release/LTP.CodeHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALTranSQL/bin/Release/LTP.CodeHelper.dll -------------------------------------------------------------------------------- /Builder/BuilderDALTranSQL/bin/Release/LTP.IBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALTranSQL/bin/Release/LTP.IBuilder.dll -------------------------------------------------------------------------------- /Builder/BuilderDALTranSQL/bin/Release/LTP.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALTranSQL/bin/Release/LTP.IDBO.dll -------------------------------------------------------------------------------- /Builder/BuilderDALTranSQL/bin/Release/LTP.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderDALTranSQL/bin/Release/LTP.Utility.dll -------------------------------------------------------------------------------- /Builder/BuilderIDAL/bin/Debug/Maticsoft.BuilderIDAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderIDAL/bin/Debug/Maticsoft.BuilderIDAL.dll -------------------------------------------------------------------------------- /Builder/BuilderIDAL/bin/Debug/Maticsoft.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderIDAL/bin/Debug/Maticsoft.CmConfig.dll -------------------------------------------------------------------------------- /Builder/BuilderIDAL/bin/Debug/Maticsoft.CodeHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderIDAL/bin/Debug/Maticsoft.CodeHelper.dll -------------------------------------------------------------------------------- /Builder/BuilderIDAL/bin/Debug/Maticsoft.IBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderIDAL/bin/Debug/Maticsoft.IBuilder.dll -------------------------------------------------------------------------------- /Builder/BuilderIDAL/bin/Debug/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderIDAL/bin/Debug/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /Builder/BuilderIDAL/bin/Debug/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderIDAL/bin/Debug/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /Builder/BuilderIDAL/bin/Release/Maticsoft.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderIDAL/bin/Release/Maticsoft.CmConfig.dll -------------------------------------------------------------------------------- /Builder/BuilderIDAL/bin/Release/Maticsoft.CodeHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderIDAL/bin/Release/Maticsoft.CodeHelper.dll -------------------------------------------------------------------------------- /Builder/BuilderIDAL/bin/Release/Maticsoft.IBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderIDAL/bin/Release/Maticsoft.IBuilder.dll -------------------------------------------------------------------------------- /Builder/BuilderIDAL/bin/Release/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderIDAL/bin/Release/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /Builder/BuilderIDAL/bin/Release/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderIDAL/bin/Release/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /Builder/BuilderModel/BuilderModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderModel/BuilderModel.cs -------------------------------------------------------------------------------- /Builder/BuilderModel/BuilderModelT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderModel/BuilderModelT.cs -------------------------------------------------------------------------------- /Builder/BuilderModel/bin/Debug/Maticsoft.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderModel/bin/Debug/Maticsoft.CmConfig.dll -------------------------------------------------------------------------------- /Builder/BuilderModel/bin/Debug/Maticsoft.CodeHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderModel/bin/Debug/Maticsoft.CodeHelper.dll -------------------------------------------------------------------------------- /Builder/BuilderModel/bin/Debug/Maticsoft.IBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderModel/bin/Debug/Maticsoft.IBuilder.dll -------------------------------------------------------------------------------- /Builder/BuilderModel/bin/Debug/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderModel/bin/Debug/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /Builder/BuilderModel/bin/Debug/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderModel/bin/Debug/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /Builder/BuilderModel/bin/Release/Maticsoft.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderModel/bin/Release/Maticsoft.CmConfig.dll -------------------------------------------------------------------------------- /Builder/BuilderModel/bin/Release/Maticsoft.IBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderModel/bin/Release/Maticsoft.IBuilder.dll -------------------------------------------------------------------------------- /Builder/BuilderModel/bin/Release/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderModel/bin/Release/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /Builder/BuilderModel/bin/Release/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderModel/bin/Release/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /Builder/BuilderWeb/BuilderWeb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderWeb/BuilderWeb.cs -------------------------------------------------------------------------------- /Builder/BuilderWeb/bin/Debug/Maticsoft.BuilderWeb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderWeb/bin/Debug/Maticsoft.BuilderWeb.dll -------------------------------------------------------------------------------- /Builder/BuilderWeb/bin/Debug/Maticsoft.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderWeb/bin/Debug/Maticsoft.CmConfig.dll -------------------------------------------------------------------------------- /Builder/BuilderWeb/bin/Debug/Maticsoft.CodeHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderWeb/bin/Debug/Maticsoft.CodeHelper.dll -------------------------------------------------------------------------------- /Builder/BuilderWeb/bin/Debug/Maticsoft.IBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderWeb/bin/Debug/Maticsoft.IBuilder.dll -------------------------------------------------------------------------------- /Builder/BuilderWeb/bin/Debug/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderWeb/bin/Debug/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /Builder/BuilderWeb/bin/Debug/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderWeb/bin/Debug/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /Builder/BuilderWeb/bin/Release/Maticsoft.BuilderWeb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderWeb/bin/Release/Maticsoft.BuilderWeb.dll -------------------------------------------------------------------------------- /Builder/BuilderWeb/bin/Release/Maticsoft.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderWeb/bin/Release/Maticsoft.CmConfig.dll -------------------------------------------------------------------------------- /Builder/BuilderWeb/bin/Release/Maticsoft.CodeHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderWeb/bin/Release/Maticsoft.CodeHelper.dll -------------------------------------------------------------------------------- /Builder/BuilderWeb/bin/Release/Maticsoft.IBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderWeb/bin/Release/Maticsoft.IBuilder.dll -------------------------------------------------------------------------------- /Builder/BuilderWeb/bin/Release/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderWeb/bin/Release/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /Builder/BuilderWeb/bin/Release/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderWeb/bin/Release/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /Builder/BuilderWebMVC/bin/Debug/Maticsoft.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderWebMVC/bin/Debug/Maticsoft.CmConfig.dll -------------------------------------------------------------------------------- /Builder/BuilderWebMVC/bin/Debug/Maticsoft.CodeHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderWebMVC/bin/Debug/Maticsoft.CodeHelper.dll -------------------------------------------------------------------------------- /Builder/BuilderWebMVC/bin/Debug/Maticsoft.IBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderWebMVC/bin/Debug/Maticsoft.IBuilder.dll -------------------------------------------------------------------------------- /Builder/BuilderWebMVC/bin/Debug/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderWebMVC/bin/Debug/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /Builder/BuilderWebMVC/bin/Debug/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderWebMVC/bin/Debug/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /Builder/BuilderWebMVC/bin/Release/Maticsoft.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderWebMVC/bin/Release/Maticsoft.CmConfig.dll -------------------------------------------------------------------------------- /Builder/BuilderWebMVC/bin/Release/Maticsoft.IBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderWebMVC/bin/Release/Maticsoft.IBuilder.dll -------------------------------------------------------------------------------- /Builder/BuilderWebMVC/bin/Release/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderWebMVC/bin/Release/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /Builder/BuilderWebMVC/bin/Release/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderWebMVC/bin/Release/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /Builder/BuilderWebRiasy/BuilderWeb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderWebRiasy/BuilderWeb.cs -------------------------------------------------------------------------------- /Builder/BuilderWebRiasy/bin/Debug/LTP.BuilderWeb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderWebRiasy/bin/Debug/LTP.BuilderWeb.dll -------------------------------------------------------------------------------- /Builder/BuilderWebRiasy/bin/Debug/LTP.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderWebRiasy/bin/Debug/LTP.CmConfig.dll -------------------------------------------------------------------------------- /Builder/BuilderWebRiasy/bin/Debug/LTP.CodeHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderWebRiasy/bin/Debug/LTP.CodeHelper.dll -------------------------------------------------------------------------------- /Builder/BuilderWebRiasy/bin/Debug/LTP.IBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderWebRiasy/bin/Debug/LTP.IBuilder.dll -------------------------------------------------------------------------------- /Builder/BuilderWebRiasy/bin/Debug/LTP.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderWebRiasy/bin/Debug/LTP.IDBO.dll -------------------------------------------------------------------------------- /Builder/BuilderWebRiasy/bin/Debug/LTP.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderWebRiasy/bin/Debug/LTP.Utility.dll -------------------------------------------------------------------------------- /Builder/BuilderWebRiasy/bin/Release/LTP.BuilderWeb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderWebRiasy/bin/Release/LTP.BuilderWeb.dll -------------------------------------------------------------------------------- /Builder/BuilderWebRiasy/bin/Release/LTP.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderWebRiasy/bin/Release/LTP.CmConfig.dll -------------------------------------------------------------------------------- /Builder/BuilderWebRiasy/bin/Release/LTP.CodeHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderWebRiasy/bin/Release/LTP.CodeHelper.dll -------------------------------------------------------------------------------- /Builder/BuilderWebRiasy/bin/Release/LTP.IBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderWebRiasy/bin/Release/LTP.IBuilder.dll -------------------------------------------------------------------------------- /Builder/BuilderWebRiasy/bin/Release/LTP.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderWebRiasy/bin/Release/LTP.IDBO.dll -------------------------------------------------------------------------------- /Builder/BuilderWebRiasy/bin/Release/LTP.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/BuilderWebRiasy/bin/Release/LTP.Utility.dll -------------------------------------------------------------------------------- /Builder/Lib/Maticsoft.BuilderBLLComm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/Lib/Maticsoft.BuilderBLLComm.dll -------------------------------------------------------------------------------- /Builder/Lib/Maticsoft.BuilderBLLCommMatic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/Lib/Maticsoft.BuilderBLLCommMatic.dll -------------------------------------------------------------------------------- /Builder/Lib/Maticsoft.BuilderDALELParam.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/Lib/Maticsoft.BuilderDALELParam.dll -------------------------------------------------------------------------------- /Builder/Lib/Maticsoft.BuilderDALELProc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/Lib/Maticsoft.BuilderDALELProc.dll -------------------------------------------------------------------------------- /Builder/Lib/Maticsoft.BuilderDALELSQL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/Lib/Maticsoft.BuilderDALELSQL.dll -------------------------------------------------------------------------------- /Builder/Lib/Maticsoft.BuilderDALIBatisNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/Lib/Maticsoft.BuilderDALIBatisNet.dll -------------------------------------------------------------------------------- /Builder/Lib/Maticsoft.BuilderDALIBatisNetMapXML.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/Lib/Maticsoft.BuilderDALIBatisNetMapXML.dll -------------------------------------------------------------------------------- /Builder/Lib/Maticsoft.BuilderDALParam.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/Lib/Maticsoft.BuilderDALParam.dll -------------------------------------------------------------------------------- /Builder/Lib/Maticsoft.BuilderDALProc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/Lib/Maticsoft.BuilderDALProc.dll -------------------------------------------------------------------------------- /Builder/Lib/Maticsoft.BuilderDALSQL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/Lib/Maticsoft.BuilderDALSQL.dll -------------------------------------------------------------------------------- /Builder/Lib/Maticsoft.BuilderDALTranMParam.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/Lib/Maticsoft.BuilderDALTranMParam.dll -------------------------------------------------------------------------------- /Builder/Lib/Maticsoft.BuilderDALTranParam.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/Lib/Maticsoft.BuilderDALTranParam.dll -------------------------------------------------------------------------------- /Builder/Lib/Maticsoft.BuilderIDAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/Lib/Maticsoft.BuilderIDAL.dll -------------------------------------------------------------------------------- /Builder/Lib/Maticsoft.BuilderModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/Lib/Maticsoft.BuilderModel.dll -------------------------------------------------------------------------------- /Builder/Lib/Maticsoft.BuilderWeb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/Lib/Maticsoft.BuilderWeb.dll -------------------------------------------------------------------------------- /Builder/Lib/Maticsoft.BuilderWebMVC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/Lib/Maticsoft.BuilderWebMVC.dll -------------------------------------------------------------------------------- /Builder/Lib/Maticsoft.CodeHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/Lib/Maticsoft.CodeHelper.dll -------------------------------------------------------------------------------- /Builder/Lib/Maticsoft.IBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/Lib/Maticsoft.IBuilder.dll -------------------------------------------------------------------------------- /Builder/Lib/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/Lib/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /Builder/Lib/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Builder/Lib/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /CmConfig/AppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CmConfig/AppConfig.cs -------------------------------------------------------------------------------- /CmConfig/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CmConfig/Config.cs -------------------------------------------------------------------------------- /CmConfig/DbConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CmConfig/DbConfig.cs -------------------------------------------------------------------------------- /CmConfig/ProjectCfg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CmConfig/ProjectCfg.cs -------------------------------------------------------------------------------- /CmConfig/bin/Debug/Maticsoft.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CmConfig/bin/Debug/Maticsoft.CmConfig.dll -------------------------------------------------------------------------------- /CmConfig/bin/Release/Maticsoft.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CmConfig/bin/Release/Maticsoft.CmConfig.dll -------------------------------------------------------------------------------- /CodeBuild/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/AssemblyInfo.cs -------------------------------------------------------------------------------- /CodeBuild/BuilderBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/BuilderBLL.cs -------------------------------------------------------------------------------- /CodeBuild/BuilderDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/BuilderDAL.cs -------------------------------------------------------------------------------- /CodeBuild/BuilderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/BuilderFactory.cs -------------------------------------------------------------------------------- /CodeBuild/BuilderFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/BuilderFrame.cs -------------------------------------------------------------------------------- /CodeBuild/BuilderFrameF3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/BuilderFrameF3.cs -------------------------------------------------------------------------------- /CodeBuild/BuilderFrameOne.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/BuilderFrameOne.cs -------------------------------------------------------------------------------- /CodeBuild/BuilderFrameS3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/BuilderFrameS3.cs -------------------------------------------------------------------------------- /CodeBuild/BuilderModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/BuilderModel.cs -------------------------------------------------------------------------------- /CodeBuild/BuilderModelT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/BuilderModelT.cs -------------------------------------------------------------------------------- /CodeBuild/BuilderTemp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/BuilderTemp.cs -------------------------------------------------------------------------------- /CodeBuild/BuilderWeb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/BuilderWeb.cs -------------------------------------------------------------------------------- /CodeBuild/CodeBuilders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/CodeBuilders.cs -------------------------------------------------------------------------------- /CodeBuild/CodeCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/CodeCommon.cs -------------------------------------------------------------------------------- /CodeBuild/bin/Debug/CodeBuild.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/bin/Debug/CodeBuild.dll -------------------------------------------------------------------------------- /CodeBuild/bin/Debug/Maticsoft.AddInManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/bin/Debug/Maticsoft.AddInManager.dll -------------------------------------------------------------------------------- /CodeBuild/bin/Debug/Maticsoft.AddInManager.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/bin/Debug/Maticsoft.AddInManager.exe -------------------------------------------------------------------------------- /CodeBuild/bin/Debug/Maticsoft.BuilderModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/bin/Debug/Maticsoft.BuilderModel.dll -------------------------------------------------------------------------------- /CodeBuild/bin/Debug/Maticsoft.BuilderWeb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/bin/Debug/Maticsoft.BuilderWeb.dll -------------------------------------------------------------------------------- /CodeBuild/bin/Debug/Maticsoft.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/bin/Debug/Maticsoft.CmConfig.dll -------------------------------------------------------------------------------- /CodeBuild/bin/Debug/Maticsoft.CodeBuild.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/bin/Debug/Maticsoft.CodeBuild.dll -------------------------------------------------------------------------------- /CodeBuild/bin/Debug/Maticsoft.CodeHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/bin/Debug/Maticsoft.CodeHelper.dll -------------------------------------------------------------------------------- /CodeBuild/bin/Debug/Maticsoft.DBFactory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/bin/Debug/Maticsoft.DBFactory.dll -------------------------------------------------------------------------------- /CodeBuild/bin/Debug/Maticsoft.Engine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/bin/Debug/Maticsoft.Engine.dll -------------------------------------------------------------------------------- /CodeBuild/bin/Debug/Maticsoft.IBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/bin/Debug/Maticsoft.IBuilder.dll -------------------------------------------------------------------------------- /CodeBuild/bin/Debug/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/bin/Debug/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /CodeBuild/bin/Debug/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/bin/Debug/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /CodeBuild/bin/Release/Maticsoft.AddInManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/bin/Release/Maticsoft.AddInManager.dll -------------------------------------------------------------------------------- /CodeBuild/bin/Release/Maticsoft.BuilderModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/bin/Release/Maticsoft.BuilderModel.dll -------------------------------------------------------------------------------- /CodeBuild/bin/Release/Maticsoft.BuilderWeb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/bin/Release/Maticsoft.BuilderWeb.dll -------------------------------------------------------------------------------- /CodeBuild/bin/Release/Maticsoft.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/bin/Release/Maticsoft.CmConfig.dll -------------------------------------------------------------------------------- /CodeBuild/bin/Release/Maticsoft.CodeBuild.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/bin/Release/Maticsoft.CodeBuild.dll -------------------------------------------------------------------------------- /CodeBuild/bin/Release/Maticsoft.CodeHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/bin/Release/Maticsoft.CodeHelper.dll -------------------------------------------------------------------------------- /CodeBuild/bin/Release/Maticsoft.DBFactory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/bin/Release/Maticsoft.DBFactory.dll -------------------------------------------------------------------------------- /CodeBuild/bin/Release/Maticsoft.Engine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/bin/Release/Maticsoft.Engine.dll -------------------------------------------------------------------------------- /CodeBuild/bin/Release/Maticsoft.IBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/bin/Release/Maticsoft.IBuilder.dll -------------------------------------------------------------------------------- /CodeBuild/bin/Release/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/bin/Release/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /CodeBuild/bin/Release/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeBuild/bin/Release/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /CodeHelper/CodeCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeHelper/CodeCommon.cs -------------------------------------------------------------------------------- /CodeHelper/CodeKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeHelper/CodeKeys.cs -------------------------------------------------------------------------------- /CodeHelper/ColumnInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeHelper/ColumnInfo.cs -------------------------------------------------------------------------------- /CodeHelper/NameRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeHelper/NameRule.cs -------------------------------------------------------------------------------- /CodeHelper/TableInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeHelper/TableInfo.cs -------------------------------------------------------------------------------- /CodeHelper/bin/Debug/Maticsoft.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeHelper/bin/Debug/Maticsoft.CmConfig.dll -------------------------------------------------------------------------------- /CodeHelper/bin/Debug/Maticsoft.CodeHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeHelper/bin/Debug/Maticsoft.CodeHelper.dll -------------------------------------------------------------------------------- /CodeHelper/bin/Debug/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeHelper/bin/Debug/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /CodeHelper/bin/Release/Maticsoft.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeHelper/bin/Release/Maticsoft.CmConfig.dll -------------------------------------------------------------------------------- /CodeHelper/bin/Release/Maticsoft.CodeHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeHelper/bin/Release/Maticsoft.CodeHelper.dll -------------------------------------------------------------------------------- /CodeHelper/bin/Release/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeHelper/bin/Release/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /CodeMatic/ClassView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/ClassView.cs -------------------------------------------------------------------------------- /CodeMatic/CommonDialogs/FrmGotoLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/CommonDialogs/FrmGotoLine.cs -------------------------------------------------------------------------------- /CodeMatic/CommonDialogs/FrmSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/CommonDialogs/FrmSearch.cs -------------------------------------------------------------------------------- /CodeMatic/Components/FormCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/Components/FormCommon.cs -------------------------------------------------------------------------------- /CodeMatic/Components/LogInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/Components/LogInfo.cs -------------------------------------------------------------------------------- /CodeMatic/Components/ObjHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/Components/ObjHelper.cs -------------------------------------------------------------------------------- /CodeMatic/Config/AppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/Config/AppConfig.cs -------------------------------------------------------------------------------- /CodeMatic/Config/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/Config/Config.cs -------------------------------------------------------------------------------- /CodeMatic/Config/DbConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/Config/DbConfig.cs -------------------------------------------------------------------------------- /CodeMatic/Config/ProjectCfg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/Config/ProjectCfg.cs -------------------------------------------------------------------------------- /CodeMatic/DbOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/DbOption.cs -------------------------------------------------------------------------------- /CodeMatic/DbToCode.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/DbToCode.suo -------------------------------------------------------------------------------- /CodeMatic/DbView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/DbView.cs -------------------------------------------------------------------------------- /CodeMatic/FormAbout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/FormAbout.cs -------------------------------------------------------------------------------- /CodeMatic/LoginForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/LoginForm.cs -------------------------------------------------------------------------------- /CodeMatic/LoginMySQL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/LoginMySQL.cs -------------------------------------------------------------------------------- /CodeMatic/LoginOledb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/LoginOledb.cs -------------------------------------------------------------------------------- /CodeMatic/LoginOra.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/LoginOra.cs -------------------------------------------------------------------------------- /CodeMatic/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/MainForm.cs -------------------------------------------------------------------------------- /CodeMatic/NewFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/NewFile.cs -------------------------------------------------------------------------------- /CodeMatic/NewProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/NewProject.cs -------------------------------------------------------------------------------- /CodeMatic/NewProjectDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/NewProjectDB.cs -------------------------------------------------------------------------------- /CodeMatic/NewProjectSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/NewProjectSet.cs -------------------------------------------------------------------------------- /CodeMatic/OptionFrm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/OptionFrm.cs -------------------------------------------------------------------------------- /CodeMatic/Resources/Control.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/Resources/Control.gif -------------------------------------------------------------------------------- /CodeMatic/Resources/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/Resources/Thumbs.db -------------------------------------------------------------------------------- /CodeMatic/Resources/about.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/Resources/about.gif -------------------------------------------------------------------------------- /CodeMatic/Resources/about3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/Resources/about3.jpg -------------------------------------------------------------------------------- /CodeMatic/Resources/ajax-loader1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/Resources/ajax-loader1.gif -------------------------------------------------------------------------------- /CodeMatic/Resources/loginmysql.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/Resources/loginmysql.jpg -------------------------------------------------------------------------------- /CodeMatic/Resources/n2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/Resources/n2.png -------------------------------------------------------------------------------- /CodeMatic/Resources/option.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/Resources/option.gif -------------------------------------------------------------------------------- /CodeMatic/Resources/startpagetop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/Resources/startpagetop.png -------------------------------------------------------------------------------- /CodeMatic/SolutionExplorer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/SolutionExplorer.cs -------------------------------------------------------------------------------- /CodeMatic/TabPages/CodeEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/TabPages/CodeEditor.cs -------------------------------------------------------------------------------- /CodeMatic/TabPages/CodeMaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/TabPages/CodeMaker.cs -------------------------------------------------------------------------------- /CodeMatic/TabPages/CodeMakerM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/TabPages/CodeMakerM.cs -------------------------------------------------------------------------------- /CodeMatic/TabPages/CodeTemp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/TabPages/CodeTemp.cs -------------------------------------------------------------------------------- /CodeMatic/TabPages/CodeTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/TabPages/CodeTemplate.cs -------------------------------------------------------------------------------- /CodeMatic/TabPages/DataList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/TabPages/DataList.cs -------------------------------------------------------------------------------- /CodeMatic/TabPages/DbBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/TabPages/DbBrowser.cs -------------------------------------------------------------------------------- /CodeMatic/TabPages/DbQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/TabPages/DbQuery.cs -------------------------------------------------------------------------------- /CodeMatic/TabPages/IEView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/TabPages/IEView.cs -------------------------------------------------------------------------------- /CodeMatic/TabPages/StartPageForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/TabPages/StartPageForm.cs -------------------------------------------------------------------------------- /CodeMatic/TempView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/TempView.cs -------------------------------------------------------------------------------- /CodeMatic/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/Thumbs.db -------------------------------------------------------------------------------- /CodeMatic/Tool/CodeExport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/Tool/CodeExport.cs -------------------------------------------------------------------------------- /CodeMatic/Tool/ConverteCS2VB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/Tool/ConverteCS2VB.cs -------------------------------------------------------------------------------- /CodeMatic/Tool/DataExport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/Tool/DataExport.cs -------------------------------------------------------------------------------- /CodeMatic/Tool/DbToScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/Tool/DbToScript.cs -------------------------------------------------------------------------------- /CodeMatic/Tool/DbToWord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/Tool/DbToWord.cs -------------------------------------------------------------------------------- /CodeMatic/Tool/FrmAddToSnippet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/Tool/FrmAddToSnippet.cs -------------------------------------------------------------------------------- /CodeMatic/Tool/Loading.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/Tool/Loading.cs -------------------------------------------------------------------------------- /CodeMatic/Tool/ProjectExp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/Tool/ProjectExp.cs -------------------------------------------------------------------------------- /CodeMatic/Tool/ProjectExpadd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/Tool/ProjectExpadd.cs -------------------------------------------------------------------------------- /CodeMatic/Tool/ProjectSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/Tool/ProjectSet.cs -------------------------------------------------------------------------------- /CodeMatic/Tool/RenameFrm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/Tool/RenameFrm.cs -------------------------------------------------------------------------------- /CodeMatic/UserControls/DALTypeAddIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/UserControls/DALTypeAddIn.cs -------------------------------------------------------------------------------- /CodeMatic/UserControls/UcAddInManage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/UserControls/UcAddInManage.cs -------------------------------------------------------------------------------- /CodeMatic/UserControls/UcCSSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/UserControls/UcCSSet.cs -------------------------------------------------------------------------------- /CodeMatic/UserControls/UcCodeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/UserControls/UcCodeView.cs -------------------------------------------------------------------------------- /CodeMatic/UserControls/UcDatatype.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/UserControls/UcDatatype.cs -------------------------------------------------------------------------------- /CodeMatic/UserControls/UcDatatypeMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/UserControls/UcDatatypeMap.cs -------------------------------------------------------------------------------- /CodeMatic/UserControls/UcOptionStartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/UserControls/UcOptionStartUp.cs -------------------------------------------------------------------------------- /CodeMatic/UserControls/UcOptionsEnviroments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/UserControls/UcOptionsEnviroments.cs -------------------------------------------------------------------------------- /CodeMatic/UserControls/UcOptionsQuerySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/UserControls/UcOptionsQuerySettings.cs -------------------------------------------------------------------------------- /CodeMatic/UserControls/UcSysManage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/UserControls/UcSysManage.cs -------------------------------------------------------------------------------- /CodeMatic/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/app.ico -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/BaseClass/ConfigHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/BaseClass/ConfigHelper.cs -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/BaseClass/DataCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/BaseClass/DataCache.cs -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/BaseClass/DbHelperOleDb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/BaseClass/DbHelperOleDb.cs -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/BaseClass/DbHelperOra.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/BaseClass/DbHelperOra.cs -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/BaseClass/DbHelperSQL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/BaseClass/DbHelperSQL.cs -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/BaseClass/MessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/BaseClass/MessageBox.cs -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/BaseClass/PageValidate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/BaseClass/PageValidate.cs -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/BaseClass/UP_GetRecordByPage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/BaseClass/UP_GetRecordByPage.txt -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/CodeDAL.addin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/CodeDAL.addin -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Codematic.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/Codematic.exe -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/ICSharpCode.TextEditor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/ICSharpCode.TextEditor.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/LTP.ConvertCS2VB.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/LTP.ConvertCS2VB.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/LTP.TextEditor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/LTP.TextEditor.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/LTPTextEditor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/LTPTextEditor.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/MagicLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/MagicLibrary.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Maticsoft.AddInManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/Maticsoft.AddInManager.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Maticsoft.BuilderBLLComm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/Maticsoft.BuilderBLLComm.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Maticsoft.BuilderDALELParam.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/Maticsoft.BuilderDALELParam.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Maticsoft.BuilderDALELProc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/Maticsoft.BuilderDALELProc.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Maticsoft.BuilderDALELSQL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/Maticsoft.BuilderDALELSQL.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Maticsoft.BuilderDALIBatisNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/Maticsoft.BuilderDALIBatisNet.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Maticsoft.BuilderDALParam.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/Maticsoft.BuilderDALParam.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Maticsoft.BuilderDALProc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/Maticsoft.BuilderDALProc.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Maticsoft.BuilderDALSQL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/Maticsoft.BuilderDALSQL.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Maticsoft.BuilderDALTranMParam.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/Maticsoft.BuilderDALTranMParam.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Maticsoft.BuilderDALTranParam.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/Maticsoft.BuilderDALTranParam.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Maticsoft.BuilderIDAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/Maticsoft.BuilderIDAL.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Maticsoft.BuilderModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/Maticsoft.BuilderModel.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Maticsoft.BuilderWeb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/Maticsoft.BuilderWeb.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Maticsoft.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/Maticsoft.CmConfig.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Maticsoft.CodeBuild.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/Maticsoft.CodeBuild.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Maticsoft.CodeHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/Maticsoft.CodeHelper.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Maticsoft.DBFactory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/Maticsoft.DBFactory.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Maticsoft.DbObjects.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/Maticsoft.DbObjects.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Maticsoft.Engine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/Maticsoft.Engine.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Maticsoft.IBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/Maticsoft.IBuilder.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/MySql.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/MySql.Data.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/PinkieControls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/PinkieControls.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/System.Data.SQLite.DLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/System.Data.SQLite.DLL -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Template/Class1.vb: -------------------------------------------------------------------------------- 1 | Imports Microsoft.VisualBasic 2 | 3 | Public Class Class1 4 | 5 | End Class 6 | -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Template/CodematicDemoF3/Web/Admin/Style.css: -------------------------------------------------------------------------------- 1 | td { font-size: 9pt} 2 | a { color: #000000; text-decoration: none} 3 | a:hover { color:#E78a29; text-decoration: none} -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Template/CodematicDemoF3/Web/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="<$$namespace$$>.Web.Global" %> 2 | -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Template/CodematicDemoF3/说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/Template/CodematicDemoF3/说明.txt -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Template/CodematicDemoS3/Web/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="<$$namespace$$>.Web.Global" %> 2 | -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Template/CodematicDemoS3/Web/Style.css: -------------------------------------------------------------------------------- 1 | td { font-size: 9pt} 2 | a { color: #000000; text-decoration: none} 3 | a:hover { color:#E78a29; text-decoration: none} -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Template/CodematicDemoS3p/Web/Admin/Style.css: -------------------------------------------------------------------------------- 1 | td { font-size: 9pt} 2 | a { color: #000000; text-decoration: none} 3 | a:hover { color:#E78a29; text-decoration: none} -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Template/CodematicDemoS3p/Web/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="<$$namespace$$>.Web.Global" %> 2 | -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Template/CodematicDemoS3p/Web/Style.css: -------------------------------------------------------------------------------- 1 | td { font-size: 9pt} 2 | a { color: #000000; text-decoration: none} 3 | a:hover { color:#E78a29; text-decoration: none} -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Template/CodematicDemoS3p/Web/ValidateCode.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ValidateCode.aspx.cs" Inherits="<$$namespace$$>.Web.ValidateCode" %> 2 | 3 | -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Template/TemplateFile/简单三层模板/BLL.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/Template/TemplateFile/简单三层模板/BLL.cmt -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Template/table.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/Template/table.htm -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/Template/web/delete.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="delete.aspx.cs" Inherits="<$$namespace$$>.Web.Demo.delete" %> 2 | 3 | -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/TextStyle/Mode.xsx: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/TextStyle/RightArrow.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/TextStyle/RightArrow.cur -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/de/Codematic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/de/Codematic.resources.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/hotkey.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 88 4 | -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/img/i.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/img/i.bmp -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/language/en/BuilderBLLComm.lan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/language/en/BuilderBLLComm.lan -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/language/en/SystemMenu.lan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/language/en/SystemMenu.lan -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/language/zh-cn/BuilderBLLComm.lan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/language/zh-cn/BuilderBLLComm.lan -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/language/zh-cn/BuilderDALELParam.lan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/language/zh-cn/BuilderDALELParam.lan -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/language/zh-cn/BuilderDALELProc.lan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/language/zh-cn/BuilderDALELProc.lan -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/language/zh-cn/BuilderDALELSQL.lan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/language/zh-cn/BuilderDALELSQL.lan -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/language/zh-cn/BuilderDALParam.lan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/language/zh-cn/BuilderDALParam.lan -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/language/zh-cn/BuilderDALProc.lan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/language/zh-cn/BuilderDALProc.lan -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/language/zh-cn/BuilderDALSQL.lan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/language/zh-cn/BuilderDALSQL.lan -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/language/zh-cn/BuilderFrameOne.lan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/language/zh-cn/BuilderFrameOne.lan -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/language/zh-cn/BuilderModel.lan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/language/zh-cn/BuilderModel.lan -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/language/zh-cn/SystemMenu.lan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/language/zh-cn/SystemMenu.lan -------------------------------------------------------------------------------- /CodeMatic/bin/Debug/tempnewtxt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Debug/tempnewtxt.txt -------------------------------------------------------------------------------- /CodeMatic/bin/FileList.txt: -------------------------------------------------------------------------------- 1 | Codematic2.msi 2 | DatatypeMap.cfg 3 | UpdateVer.xml -------------------------------------------------------------------------------- /CodeMatic/bin/Release/CodeDAL.addin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/CodeDAL.addin -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Codematic.XmlSerializers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/Codematic.XmlSerializers.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Codematic.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/Codematic.exe -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Codematic.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/Codematic.vshost.exe -------------------------------------------------------------------------------- /CodeMatic/bin/Release/DbSetting.config: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CodeMatic/bin/Release/ICSharpCode.TextEditor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/ICSharpCode.TextEditor.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Release/LTP.ConvertCS2VB.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/LTP.ConvertCS2VB.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Release/LTP.TextEditor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/LTP.TextEditor.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Release/LTPTextEditor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/LTPTextEditor.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Release/MagicLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/MagicLibrary.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Maticsoft.AddInManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/Maticsoft.AddInManager.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Maticsoft.BuilderBLLComm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/Maticsoft.BuilderBLLComm.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Maticsoft.BuilderDALELParam.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/Maticsoft.BuilderDALELParam.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Maticsoft.BuilderDALELProc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/Maticsoft.BuilderDALELProc.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Maticsoft.BuilderDALELSQL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/Maticsoft.BuilderDALELSQL.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Maticsoft.BuilderDALIBatisNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/Maticsoft.BuilderDALIBatisNet.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Maticsoft.BuilderDALParam.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/Maticsoft.BuilderDALParam.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Maticsoft.BuilderDALProc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/Maticsoft.BuilderDALProc.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Maticsoft.BuilderDALSQL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/Maticsoft.BuilderDALSQL.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Maticsoft.BuilderDALTranMParam.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/Maticsoft.BuilderDALTranMParam.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Maticsoft.BuilderDALTranParam.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/Maticsoft.BuilderDALTranParam.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Maticsoft.BuilderIDAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/Maticsoft.BuilderIDAL.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Maticsoft.BuilderModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/Maticsoft.BuilderModel.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Maticsoft.BuilderWeb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/Maticsoft.BuilderWeb.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Maticsoft.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/Maticsoft.CmConfig.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Maticsoft.CodeBuild.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/Maticsoft.CodeBuild.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Maticsoft.CodeHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/Maticsoft.CodeHelper.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Maticsoft.DBFactory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/Maticsoft.DBFactory.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Maticsoft.DbObjects.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/Maticsoft.DbObjects.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Maticsoft.Engine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/Maticsoft.Engine.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Maticsoft.IBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/Maticsoft.IBuilder.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Release/MySql.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/MySql.Data.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Release/PinkieControls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/PinkieControls.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Release/System.Data.SQLite.DLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/System.Data.SQLite.DLL -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Template/Class1.vb: -------------------------------------------------------------------------------- 1 | Imports Microsoft.VisualBasic 2 | 3 | Public Class Class1 4 | 5 | End Class 6 | -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Template/CodematicDemoF3/Web/Admin/Style.css: -------------------------------------------------------------------------------- 1 | td { font-size: 9pt} 2 | a { color: #000000; text-decoration: none} 3 | a:hover { color:#E78a29; text-decoration: none} -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Template/CodematicDemoF3/Web/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="<$$namespace$$>.Web.Global" %> 2 | -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Template/CodematicDemoF3/说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/Template/CodematicDemoF3/说明.txt -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Template/CodematicDemoS3/Web/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="<$$namespace$$>.Web.Global" %> 2 | -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Template/CodematicDemoS3/Web/Style.css: -------------------------------------------------------------------------------- 1 | td { font-size: 9pt} 2 | a { color: #000000; text-decoration: none} 3 | a:hover { color:#E78a29; text-decoration: none} -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Template/CodematicDemoS3p/Web/Admin/Style.css: -------------------------------------------------------------------------------- 1 | td { font-size: 9pt} 2 | a { color: #000000; text-decoration: none} 3 | a:hover { color:#E78a29; text-decoration: none} -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Template/CodematicDemoS3p/Web/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="<$$namespace$$>.Web.Global" %> 2 | -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Template/CodematicDemoS3p/Web/Style.css: -------------------------------------------------------------------------------- 1 | td { font-size: 9pt} 2 | a { color: #000000; text-decoration: none} 3 | a:hover { color:#E78a29; text-decoration: none} -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Template/TemplateFile/使用说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/Template/TemplateFile/使用说明.txt -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Template/table.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/Template/table.htm -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Template/web/delete.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="delete.aspx.cs" Inherits="<$$namespace$$>.Web.Demo.delete" %> 2 | 3 | -------------------------------------------------------------------------------- /CodeMatic/bin/Release/TextStyle/Mode.xsx: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /CodeMatic/bin/Release/TextStyle/RightArrow.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/TextStyle/RightArrow.cur -------------------------------------------------------------------------------- /CodeMatic/bin/Release/Updatelist.ini: -------------------------------------------------------------------------------- 1 | UpdateVer.xml 2 | LTP.CodeBuild.dll 3 | LTP.IDBO.dll 4 | LTP.DbObjects.dll 5 | Codematic.exe 6 | UpdateApp.exe -------------------------------------------------------------------------------- /CodeMatic/bin/Release/de/Codematic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/de/Codematic.resources.dll -------------------------------------------------------------------------------- /CodeMatic/bin/Release/hotkey.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 88 4 | -------------------------------------------------------------------------------- /CodeMatic/bin/Release/img/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/img/Thumbs.db -------------------------------------------------------------------------------- /CodeMatic/bin/Release/img/help.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/img/help.ico -------------------------------------------------------------------------------- /CodeMatic/bin/Release/language/en/BuilderBLLComm.lan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/language/en/BuilderBLLComm.lan -------------------------------------------------------------------------------- /CodeMatic/bin/Release/language/en/SystemMenu.lan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/language/en/SystemMenu.lan -------------------------------------------------------------------------------- /CodeMatic/bin/Release/language/zh-cn/BuilderBLLComm.lan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/language/zh-cn/BuilderBLLComm.lan -------------------------------------------------------------------------------- /CodeMatic/bin/Release/language/zh-cn/BuilderDALELSQL.lan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/language/zh-cn/BuilderDALELSQL.lan -------------------------------------------------------------------------------- /CodeMatic/bin/Release/language/zh-cn/BuilderDALParam.lan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/language/zh-cn/BuilderDALParam.lan -------------------------------------------------------------------------------- /CodeMatic/bin/Release/language/zh-cn/BuilderDALProc.lan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/language/zh-cn/BuilderDALProc.lan -------------------------------------------------------------------------------- /CodeMatic/bin/Release/language/zh-cn/BuilderDALSQL.lan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/language/zh-cn/BuilderDALSQL.lan -------------------------------------------------------------------------------- /CodeMatic/bin/Release/language/zh-cn/BuilderFrameOne.lan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/language/zh-cn/BuilderFrameOne.lan -------------------------------------------------------------------------------- /CodeMatic/bin/Release/language/zh-cn/BuilderModel.lan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/language/zh-cn/BuilderModel.lan -------------------------------------------------------------------------------- /CodeMatic/bin/Release/language/zh-cn/SystemMenu.lan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/bin/Release/language/zh-cn/SystemMenu.lan -------------------------------------------------------------------------------- /CodeMatic/images/098.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/098.GIF -------------------------------------------------------------------------------- /CodeMatic/images/114.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/114.GIF -------------------------------------------------------------------------------- /CodeMatic/images/App0.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/App0.GIF -------------------------------------------------------------------------------- /CodeMatic/images/Closed Folder yellow.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/Closed Folder yellow.ico -------------------------------------------------------------------------------- /CodeMatic/images/Exit.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/Exit.ico -------------------------------------------------------------------------------- /CodeMatic/images/Folderclose.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/Folderclose.gif -------------------------------------------------------------------------------- /CodeMatic/images/Folderopen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/Folderopen.gif -------------------------------------------------------------------------------- /CodeMatic/images/LOGO1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/LOGO1.gif -------------------------------------------------------------------------------- /CodeMatic/images/Menu/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/Menu/Thumbs.db -------------------------------------------------------------------------------- /CodeMatic/images/Menu/copy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/Menu/copy.gif -------------------------------------------------------------------------------- /CodeMatic/images/Menu/delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/Menu/delete.gif -------------------------------------------------------------------------------- /CodeMatic/images/Menu/j.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/Menu/j.gif -------------------------------------------------------------------------------- /CodeMatic/images/Menu/pa.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/Menu/pa.gif -------------------------------------------------------------------------------- /CodeMatic/images/Network.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/Network.ico -------------------------------------------------------------------------------- /CodeMatic/images/New/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/New/Thumbs.db -------------------------------------------------------------------------------- /CodeMatic/images/New/aspx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/New/aspx.png -------------------------------------------------------------------------------- /CodeMatic/images/New/cs32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/New/cs32.gif -------------------------------------------------------------------------------- /CodeMatic/images/New/f3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/New/f3.gif -------------------------------------------------------------------------------- /CodeMatic/images/New/htm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/New/htm.gif -------------------------------------------------------------------------------- /CodeMatic/images/New/one.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/New/one.gif -------------------------------------------------------------------------------- /CodeMatic/images/New/s3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/New/s3.gif -------------------------------------------------------------------------------- /CodeMatic/images/New/te.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/New/te.gif -------------------------------------------------------------------------------- /CodeMatic/images/New/temp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/New/temp.png -------------------------------------------------------------------------------- /CodeMatic/images/New/templatefile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/New/templatefile.png -------------------------------------------------------------------------------- /CodeMatic/images/New/txt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/New/txt.gif -------------------------------------------------------------------------------- /CodeMatic/images/New/vb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/New/vb.gif -------------------------------------------------------------------------------- /CodeMatic/images/New/xml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/New/xml.gif -------------------------------------------------------------------------------- /CodeMatic/images/Open Folder yellow.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/Open Folder yellow.ico -------------------------------------------------------------------------------- /CodeMatic/images/SlnView/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/SlnView/Thumbs.db -------------------------------------------------------------------------------- /CodeMatic/images/SlnView/VS2005.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/SlnView/VS2005.ico -------------------------------------------------------------------------------- /CodeMatic/images/SlnView/batchcs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/SlnView/batchcs.png -------------------------------------------------------------------------------- /CodeMatic/images/SlnView/batchcs2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/SlnView/batchcs2.png -------------------------------------------------------------------------------- /CodeMatic/images/SlnView/class.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/SlnView/class.gif -------------------------------------------------------------------------------- /CodeMatic/images/SlnView/classf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/SlnView/classf.gif -------------------------------------------------------------------------------- /CodeMatic/images/SlnView/cn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/SlnView/cn.gif -------------------------------------------------------------------------------- /CodeMatic/images/SlnView/cs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/SlnView/cs.gif -------------------------------------------------------------------------------- /CodeMatic/images/SlnView/cs.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/SlnView/cs.ico -------------------------------------------------------------------------------- /CodeMatic/images/SlnView/cs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/SlnView/cs.png -------------------------------------------------------------------------------- /CodeMatic/images/SlnView/csproj.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/SlnView/csproj.ico -------------------------------------------------------------------------------- /CodeMatic/images/SlnView/interface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/SlnView/interface.gif -------------------------------------------------------------------------------- /CodeMatic/images/SlnView/k.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/SlnView/k.gif -------------------------------------------------------------------------------- /CodeMatic/images/SlnView/sln.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/SlnView/sln.ico -------------------------------------------------------------------------------- /CodeMatic/images/SlnView/sln.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/SlnView/sln.png -------------------------------------------------------------------------------- /CodeMatic/images/SlnView/sln2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/SlnView/sln2.ico -------------------------------------------------------------------------------- /CodeMatic/images/SlnView/toolclass.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/SlnView/toolclass.gif -------------------------------------------------------------------------------- /CodeMatic/images/SlnView/toolsln.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/SlnView/toolsln.gif -------------------------------------------------------------------------------- /CodeMatic/images/SqlExe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/SqlExe.gif -------------------------------------------------------------------------------- /CodeMatic/images/SqlQuery.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/SqlQuery.ico -------------------------------------------------------------------------------- /CodeMatic/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/Thumbs.db -------------------------------------------------------------------------------- /CodeMatic/images/aboutbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/aboutbg.jpg -------------------------------------------------------------------------------- /CodeMatic/images/app.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/app.gif -------------------------------------------------------------------------------- /CodeMatic/images/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/app.ico -------------------------------------------------------------------------------- /CodeMatic/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/bg.png -------------------------------------------------------------------------------- /CodeMatic/images/build.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/build.gif -------------------------------------------------------------------------------- /CodeMatic/images/chat.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/chat.ico -------------------------------------------------------------------------------- /CodeMatic/images/codeset.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/codeset.gif -------------------------------------------------------------------------------- /CodeMatic/images/computer2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/computer2.ico -------------------------------------------------------------------------------- /CodeMatic/images/dbrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/dbrow.gif -------------------------------------------------------------------------------- /CodeMatic/images/dbview/Addser.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/dbview/Addser.gif -------------------------------------------------------------------------------- /CodeMatic/images/dbview/SQL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/dbview/SQL.png -------------------------------------------------------------------------------- /CodeMatic/images/dbview/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/dbview/Thumbs.db -------------------------------------------------------------------------------- /CodeMatic/images/dbview/addserver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/dbview/addserver.png -------------------------------------------------------------------------------- /CodeMatic/images/dbview/db.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/dbview/db.JPG -------------------------------------------------------------------------------- /CodeMatic/images/dbview/db.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/dbview/db.gif -------------------------------------------------------------------------------- /CodeMatic/images/dbview/db.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/dbview/db.ico -------------------------------------------------------------------------------- /CodeMatic/images/dbview/dbadd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/dbview/dbadd.gif -------------------------------------------------------------------------------- /CodeMatic/images/dbview/field.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/dbview/field.ico -------------------------------------------------------------------------------- /CodeMatic/images/dbview/fild2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/dbview/fild2.gif -------------------------------------------------------------------------------- /CodeMatic/images/dbview/noconnect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/dbview/noconnect.gif -------------------------------------------------------------------------------- /CodeMatic/images/dbview/noconnect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/dbview/noconnect.jpg -------------------------------------------------------------------------------- /CodeMatic/images/dbview/pk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/dbview/pk.gif -------------------------------------------------------------------------------- /CodeMatic/images/dbview/refrush.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/dbview/refrush.gif -------------------------------------------------------------------------------- /CodeMatic/images/dbview/server.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/dbview/server.ico -------------------------------------------------------------------------------- /CodeMatic/images/dbview/server0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/dbview/server0.gif -------------------------------------------------------------------------------- /CodeMatic/images/dbview/server1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/dbview/server1.gif -------------------------------------------------------------------------------- /CodeMatic/images/dbview/serverlist.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/dbview/serverlist.gif -------------------------------------------------------------------------------- /CodeMatic/images/dbview/sp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/dbview/sp.gif -------------------------------------------------------------------------------- /CodeMatic/images/dbview/sp_p.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/dbview/sp_p.gif -------------------------------------------------------------------------------- /CodeMatic/images/dbview/sp_return.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/dbview/sp_return.gif -------------------------------------------------------------------------------- /CodeMatic/images/dbview/tab2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/dbview/tab2.gif -------------------------------------------------------------------------------- /CodeMatic/images/dbview/view.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/dbview/view.gif -------------------------------------------------------------------------------- /CodeMatic/images/difu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/difu.gif -------------------------------------------------------------------------------- /CodeMatic/images/exec.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/exec.ico -------------------------------------------------------------------------------- /CodeMatic/images/fav.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/fav.gif -------------------------------------------------------------------------------- /CodeMatic/images/file.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/file.ico -------------------------------------------------------------------------------- /CodeMatic/images/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/help.gif -------------------------------------------------------------------------------- /CodeMatic/images/help.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/help.ico -------------------------------------------------------------------------------- /CodeMatic/images/help2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/help2.gif -------------------------------------------------------------------------------- /CodeMatic/images/list.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/list.gif -------------------------------------------------------------------------------- /CodeMatic/images/loginsql.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/loginsql.jpg -------------------------------------------------------------------------------- /CodeMatic/images/loginsql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/loginsql.png -------------------------------------------------------------------------------- /CodeMatic/images/loginsql2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/loginsql2.jpg -------------------------------------------------------------------------------- /CodeMatic/images/logo.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/logo.GIF -------------------------------------------------------------------------------- /CodeMatic/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/logo.jpg -------------------------------------------------------------------------------- /CodeMatic/images/oracle.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/oracle.ico -------------------------------------------------------------------------------- /CodeMatic/images/panal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/panal.gif -------------------------------------------------------------------------------- /CodeMatic/images/refrush.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/refrush.gif -------------------------------------------------------------------------------- /CodeMatic/images/rss1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/rss1.gif -------------------------------------------------------------------------------- /CodeMatic/images/run.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/run.gif -------------------------------------------------------------------------------- /CodeMatic/images/run.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/run.jpg -------------------------------------------------------------------------------- /CodeMatic/images/sql.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/sql.ico -------------------------------------------------------------------------------- /CodeMatic/images/sql2005.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/sql2005.ico -------------------------------------------------------------------------------- /CodeMatic/images/sql2008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/sql2008.png -------------------------------------------------------------------------------- /CodeMatic/images/startpagehead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/startpagehead.png -------------------------------------------------------------------------------- /CodeMatic/images/startpages.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/startpages.gif -------------------------------------------------------------------------------- /CodeMatic/images/task.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/task.gif -------------------------------------------------------------------------------- /CodeMatic/images/tb32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/tb32.gif -------------------------------------------------------------------------------- /CodeMatic/images/tb482.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/tb482.jpg -------------------------------------------------------------------------------- /CodeMatic/images/temp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/temp.ico -------------------------------------------------------------------------------- /CodeMatic/images/temp/12.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/temp/12.JPG -------------------------------------------------------------------------------- /CodeMatic/images/temp/CS.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/temp/CS.psd -------------------------------------------------------------------------------- /CodeMatic/images/temp/Control Panel.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/temp/Control Panel.ico -------------------------------------------------------------------------------- /CodeMatic/images/temp/Open.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/temp/Open.ico -------------------------------------------------------------------------------- /CodeMatic/images/temp/Redo.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/temp/Redo.GIF -------------------------------------------------------------------------------- /CodeMatic/images/temp/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/temp/Thumbs.db -------------------------------------------------------------------------------- /CodeMatic/images/temp/app.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/temp/app.gif -------------------------------------------------------------------------------- /CodeMatic/images/temp/chat.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/temp/chat.ico -------------------------------------------------------------------------------- /CodeMatic/images/temp/clock.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/temp/clock.ico -------------------------------------------------------------------------------- /CodeMatic/images/temp/dotNET.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/temp/dotNET.ico -------------------------------------------------------------------------------- /CodeMatic/images/temp/dotNETconnectedtechnology.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/temp/dotNETconnectedtechnology.JPG -------------------------------------------------------------------------------- /CodeMatic/images/temp/download_manager.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/temp/download_manager.ico -------------------------------------------------------------------------------- /CodeMatic/images/template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/template.png -------------------------------------------------------------------------------- /CodeMatic/images/toobar2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/toobar2.gif -------------------------------------------------------------------------------- /CodeMatic/images/toobar3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/toobar3.gif -------------------------------------------------------------------------------- /CodeMatic/images/toobar4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/toobar4.gif -------------------------------------------------------------------------------- /CodeMatic/images/toolbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/toolbar.gif -------------------------------------------------------------------------------- /CodeMatic/images/toolbox.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/toolbox.gif -------------------------------------------------------------------------------- /CodeMatic/images/toolsln.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/toolsln.gif -------------------------------------------------------------------------------- /CodeMatic/images/uninstall.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/uninstall.ico -------------------------------------------------------------------------------- /CodeMatic/images/upload.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/upload.ico -------------------------------------------------------------------------------- /CodeMatic/images/word.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/word.ico -------------------------------------------------------------------------------- /CodeMatic/images/xml.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/images/xml.ico -------------------------------------------------------------------------------- /CodeMatic/lib/ICSharpCode.TextEditor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/lib/ICSharpCode.TextEditor.dll -------------------------------------------------------------------------------- /CodeMatic/lib/Interop.Word.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/lib/Interop.Word.dll -------------------------------------------------------------------------------- /CodeMatic/lib/LTP.ConvertCS2VB.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/lib/LTP.ConvertCS2VB.dll -------------------------------------------------------------------------------- /CodeMatic/lib/LTP.SplashScrForm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/lib/LTP.SplashScrForm.dll -------------------------------------------------------------------------------- /CodeMatic/lib/LTP.TextEditor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/lib/LTP.TextEditor.dll -------------------------------------------------------------------------------- /CodeMatic/lib/MagicLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/lib/MagicLibrary.dll -------------------------------------------------------------------------------- /CodeMatic/lib/Microsoft.VisualStudio.TextTemplating.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/lib/Microsoft.VisualStudio.TextTemplating.dll -------------------------------------------------------------------------------- /CodeMatic/lib/MySql.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/lib/MySql.Data.dll -------------------------------------------------------------------------------- /CodeMatic/lib/PinkieControls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/lib/PinkieControls.dll -------------------------------------------------------------------------------- /CodeMatic/lib/System.Data.SQLite.DLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/lib/System.Data.SQLite.DLL -------------------------------------------------------------------------------- /CodeMatic/lib/System.Data.SQLite.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/lib/System.Data.SQLite.Linq.dll -------------------------------------------------------------------------------- /CodeMatic/lib/System.Data.SQLite.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/lib/System.Data.SQLite.exp -------------------------------------------------------------------------------- /CodeMatic/lib/System.Data.SQLite.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/lib/System.Data.SQLite.lib -------------------------------------------------------------------------------- /CodeMatic/lib/x64/System.Data.SQLite.DLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/lib/x64/System.Data.SQLite.DLL -------------------------------------------------------------------------------- /CodeMatic/lib/x64/System.Data.SQLite.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/lib/x64/System.Data.SQLite.exp -------------------------------------------------------------------------------- /CodeMatic/lib/x64/System.Data.SQLite.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/lib/x64/System.Data.SQLite.lib -------------------------------------------------------------------------------- /CodeMatic/lib/x64/test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/CodeMatic/lib/x64/test.exe -------------------------------------------------------------------------------- /Codemati.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Codemati.suo -------------------------------------------------------------------------------- /Codematic.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Codematic.suo -------------------------------------------------------------------------------- /DBFactory/DBFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DBFactory/DBFactory.cs -------------------------------------------------------------------------------- /DBFactory/bin/Debug/Maticsoft.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DBFactory/bin/Debug/Maticsoft.CmConfig.dll -------------------------------------------------------------------------------- /DBFactory/bin/Debug/Maticsoft.CodeHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DBFactory/bin/Debug/Maticsoft.CodeHelper.dll -------------------------------------------------------------------------------- /DBFactory/bin/Debug/Maticsoft.DBFactory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DBFactory/bin/Debug/Maticsoft.DBFactory.dll -------------------------------------------------------------------------------- /DBFactory/bin/Debug/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DBFactory/bin/Debug/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /DBFactory/bin/Debug/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DBFactory/bin/Debug/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /DBFactory/bin/Release/Maticsoft.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DBFactory/bin/Release/Maticsoft.CmConfig.dll -------------------------------------------------------------------------------- /DBFactory/bin/Release/Maticsoft.CodeHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DBFactory/bin/Release/Maticsoft.CodeHelper.dll -------------------------------------------------------------------------------- /DBFactory/bin/Release/Maticsoft.DBFactory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DBFactory/bin/Release/Maticsoft.DBFactory.dll -------------------------------------------------------------------------------- /DBFactory/bin/Release/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DBFactory/bin/Release/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /DBFactory/bin/Release/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DBFactory/bin/Release/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /DbObject/MySQL/DbObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DbObject/MySQL/DbObject.cs -------------------------------------------------------------------------------- /DbObject/MySQL/DbScriptBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DbObject/MySQL/DbScriptBuilder.cs -------------------------------------------------------------------------------- /DbObject/Odbc/DbObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DbObject/Odbc/DbObject.cs -------------------------------------------------------------------------------- /DbObject/Odbc/DbScriptBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DbObject/Odbc/DbScriptBuilder.cs -------------------------------------------------------------------------------- /DbObject/OleDb/DbObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DbObject/OleDb/DbObject.cs -------------------------------------------------------------------------------- /DbObject/OleDb/DbScriptBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DbObject/OleDb/DbScriptBuilder.cs -------------------------------------------------------------------------------- /DbObject/Oracle/DbObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DbObject/Oracle/DbObject.cs -------------------------------------------------------------------------------- /DbObject/Oracle/DbScriptBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DbObject/Oracle/DbScriptBuilder.cs -------------------------------------------------------------------------------- /DbObject/SQL2000/DbObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DbObject/SQL2000/DbObject.cs -------------------------------------------------------------------------------- /DbObject/SQL2000/DbScriptBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DbObject/SQL2000/DbScriptBuilder.cs -------------------------------------------------------------------------------- /DbObject/SQL2005/DbObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DbObject/SQL2005/DbObject.cs -------------------------------------------------------------------------------- /DbObject/SQL2005/DbScriptBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DbObject/SQL2005/DbScriptBuilder.cs -------------------------------------------------------------------------------- /DbObject/SQL2008/DbObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DbObject/SQL2008/DbObject.cs -------------------------------------------------------------------------------- /DbObject/SQL2008/DbScriptBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DbObject/SQL2008/DbScriptBuilder.cs -------------------------------------------------------------------------------- /DbObject/SQL2012/DbObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DbObject/SQL2012/DbObject.cs -------------------------------------------------------------------------------- /DbObject/SQL2012/DbScriptBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DbObject/SQL2012/DbScriptBuilder.cs -------------------------------------------------------------------------------- /DbObject/SQLite/DbObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DbObject/SQLite/DbObject.cs -------------------------------------------------------------------------------- /DbObject/SQLite/DbScriptBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DbObject/SQLite/DbScriptBuilder.cs -------------------------------------------------------------------------------- /DbObject/bin/Debug/LTP.DbObject.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DbObject/bin/Debug/LTP.DbObject.dll -------------------------------------------------------------------------------- /DbObject/bin/Debug/Maticsoft.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DbObject/bin/Debug/Maticsoft.CmConfig.dll -------------------------------------------------------------------------------- /DbObject/bin/Debug/Maticsoft.CodeHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DbObject/bin/Debug/Maticsoft.CodeHelper.dll -------------------------------------------------------------------------------- /DbObject/bin/Debug/Maticsoft.DbObjects.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DbObject/bin/Debug/Maticsoft.DbObjects.dll -------------------------------------------------------------------------------- /DbObject/bin/Debug/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DbObject/bin/Debug/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /DbObject/bin/Debug/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DbObject/bin/Debug/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /DbObject/bin/Debug/MySql.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DbObject/bin/Debug/MySql.Data.dll -------------------------------------------------------------------------------- /DbObject/bin/Debug/System.Data.SQLite.DLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DbObject/bin/Debug/System.Data.SQLite.DLL -------------------------------------------------------------------------------- /DbObject/bin/Release/Maticsoft.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DbObject/bin/Release/Maticsoft.CmConfig.dll -------------------------------------------------------------------------------- /DbObject/bin/Release/Maticsoft.CodeHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DbObject/bin/Release/Maticsoft.CodeHelper.dll -------------------------------------------------------------------------------- /DbObject/bin/Release/Maticsoft.DbObjects.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DbObject/bin/Release/Maticsoft.DbObjects.dll -------------------------------------------------------------------------------- /DbObject/bin/Release/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DbObject/bin/Release/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /DbObject/bin/Release/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DbObject/bin/Release/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /DbObject/bin/Release/MySql.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DbObject/bin/Release/MySql.Data.dll -------------------------------------------------------------------------------- /DbObject/bin/Release/System.Data.SQLite.DLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/DbObject/bin/Release/System.Data.SQLite.DLL -------------------------------------------------------------------------------- /Engine/bin/Debug/Maticsoft.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Engine/bin/Debug/Maticsoft.CmConfig.dll -------------------------------------------------------------------------------- /Engine/bin/Debug/Maticsoft.CodeHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Engine/bin/Debug/Maticsoft.CodeHelper.dll -------------------------------------------------------------------------------- /Engine/bin/Debug/Maticsoft.Engine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Engine/bin/Debug/Maticsoft.Engine.dll -------------------------------------------------------------------------------- /Engine/bin/Debug/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Engine/bin/Debug/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /Engine/bin/Debug/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Engine/bin/Debug/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /Engine/bin/Release/Maticsoft.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Engine/bin/Release/Maticsoft.CmConfig.dll -------------------------------------------------------------------------------- /Engine/bin/Release/Maticsoft.CodeHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Engine/bin/Release/Maticsoft.CodeHelper.dll -------------------------------------------------------------------------------- /Engine/bin/Release/Maticsoft.Engine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Engine/bin/Release/Maticsoft.Engine.dll -------------------------------------------------------------------------------- /Engine/bin/Release/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Engine/bin/Release/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /Engine/bin/Release/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Engine/bin/Release/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /IBuilder/IBuilderAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/IBuilder/IBuilderAttribute.cs -------------------------------------------------------------------------------- /IBuilder/IBuilderBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/IBuilder/IBuilderBLL.cs -------------------------------------------------------------------------------- /IBuilder/IBuilderDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/IBuilder/IBuilderDAL.cs -------------------------------------------------------------------------------- /IBuilder/IBuilderDALMTran.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/IBuilder/IBuilderDALMTran.cs -------------------------------------------------------------------------------- /IBuilder/IBuilderDALTran.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/IBuilder/IBuilderDALTran.cs -------------------------------------------------------------------------------- /IBuilder/IBuilderModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/IBuilder/IBuilderModel.cs -------------------------------------------------------------------------------- /IBuilder/IBuilderWeb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/IBuilder/IBuilderWeb.cs -------------------------------------------------------------------------------- /IBuilder/bin/Debug/Maticsoft.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/IBuilder/bin/Debug/Maticsoft.CmConfig.dll -------------------------------------------------------------------------------- /IBuilder/bin/Debug/Maticsoft.CodeHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/IBuilder/bin/Debug/Maticsoft.CodeHelper.dll -------------------------------------------------------------------------------- /IBuilder/bin/Debug/Maticsoft.IBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/IBuilder/bin/Debug/Maticsoft.IBuilder.dll -------------------------------------------------------------------------------- /IBuilder/bin/Debug/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/IBuilder/bin/Debug/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /IBuilder/bin/Debug/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/IBuilder/bin/Debug/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /IBuilder/bin/Release/Maticsoft.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/IBuilder/bin/Release/Maticsoft.CmConfig.dll -------------------------------------------------------------------------------- /IBuilder/bin/Release/Maticsoft.CodeHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/IBuilder/bin/Release/Maticsoft.CodeHelper.dll -------------------------------------------------------------------------------- /IBuilder/bin/Release/Maticsoft.IBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/IBuilder/bin/Release/Maticsoft.IBuilder.dll -------------------------------------------------------------------------------- /IBuilder/bin/Release/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/IBuilder/bin/Release/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /IBuilder/bin/Release/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/IBuilder/bin/Release/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /IDbObject/IDbObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/IDbObject/IDbObject.cs -------------------------------------------------------------------------------- /IDbObject/IDbScriptBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/IDbObject/IDbScriptBuilder.cs -------------------------------------------------------------------------------- /IDbObject/bin/Debug/Maticsoft.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/IDbObject/bin/Debug/Maticsoft.CmConfig.dll -------------------------------------------------------------------------------- /IDbObject/bin/Debug/Maticsoft.CodeHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/IDbObject/bin/Debug/Maticsoft.CodeHelper.dll -------------------------------------------------------------------------------- /IDbObject/bin/Debug/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/IDbObject/bin/Debug/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /IDbObject/bin/Debug/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/IDbObject/bin/Debug/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /IDbObject/bin/Release/Maticsoft.CmConfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/IDbObject/bin/Release/Maticsoft.CmConfig.dll -------------------------------------------------------------------------------- /IDbObject/bin/Release/Maticsoft.CodeHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/IDbObject/bin/Release/Maticsoft.CodeHelper.dll -------------------------------------------------------------------------------- /IDbObject/bin/Release/Maticsoft.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/IDbObject/bin/Release/Maticsoft.IDBO.dll -------------------------------------------------------------------------------- /IDbObject/bin/Release/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/IDbObject/bin/Release/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /LTPTextEditor/bin/Debug/ICSharpCode.TextEditor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/LTPTextEditor/bin/Debug/ICSharpCode.TextEditor.dll -------------------------------------------------------------------------------- /LTPTextEditor/bin/Debug/LTPTextEditor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/LTPTextEditor/bin/Debug/LTPTextEditor.dll -------------------------------------------------------------------------------- /LTPTextEditor/bin/Release/ICSharpCode.TextEditor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/LTPTextEditor/bin/Release/ICSharpCode.TextEditor.dll -------------------------------------------------------------------------------- /LTPTextEditor/bin/Release/LTPTextEditor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/LTPTextEditor/bin/Release/LTPTextEditor.dll -------------------------------------------------------------------------------- /SplashScreen/Img/logo.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/SplashScreen/Img/logo.JPG -------------------------------------------------------------------------------- /SplashScreen/Img/logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/SplashScreen/Img/logo.bmp -------------------------------------------------------------------------------- /SplashScreen/Img/logo2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/SplashScreen/Img/logo2.JPG -------------------------------------------------------------------------------- /SplashScreen/Img/logo3.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/SplashScreen/Img/logo3.JPG -------------------------------------------------------------------------------- /SplashScreen/Img/未标题-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/SplashScreen/Img/未标题-3.jpg -------------------------------------------------------------------------------- /SplashScreen/Img/未标题-3.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/SplashScreen/Img/未标题-3.psd -------------------------------------------------------------------------------- /SplashScreen/SplashScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/SplashScreen/SplashScreen.cs -------------------------------------------------------------------------------- /SplashScreen/SplashScreen.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/SplashScreen/SplashScreen.suo -------------------------------------------------------------------------------- /SplashScreen/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/SplashScreen/Thumbs.db -------------------------------------------------------------------------------- /SplashScreen/bin/Debug/LTP.SplashScrForm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/SplashScreen/bin/Debug/LTP.SplashScrForm.dll -------------------------------------------------------------------------------- /SplashScreen/bin/Debug/Maticsoft.SplashScrForm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/SplashScreen/bin/Debug/Maticsoft.SplashScrForm.dll -------------------------------------------------------------------------------- /SplashScreen/bin/Release/LTP.SplashScrForm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/SplashScreen/bin/Release/LTP.SplashScrForm.dll -------------------------------------------------------------------------------- /UpdateApp/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /UpdateApp/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/UpdateApp/App.ico -------------------------------------------------------------------------------- /UpdateApp/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/UpdateApp/AssemblyInfo.cs -------------------------------------------------------------------------------- /UpdateApp/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/UpdateApp/Form1.cs -------------------------------------------------------------------------------- /UpdateApp/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/UpdateApp/Thumbs.db -------------------------------------------------------------------------------- /UpdateApp/UpdateVer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/UpdateApp/UpdateVer.cs -------------------------------------------------------------------------------- /UpdateApp/bin/Debug/CodeDAL.addin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/UpdateApp/bin/Debug/CodeDAL.addin -------------------------------------------------------------------------------- /UpdateApp/bin/Debug/Codematic.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/UpdateApp/bin/Debug/Codematic.exe -------------------------------------------------------------------------------- /UpdateApp/bin/Debug/LTP.BuilderDALELParam.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/UpdateApp/bin/Debug/LTP.BuilderDALELParam.dll -------------------------------------------------------------------------------- /UpdateApp/bin/Debug/LTP.BuilderDALELProc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/UpdateApp/bin/Debug/LTP.BuilderDALELProc.dll -------------------------------------------------------------------------------- /UpdateApp/bin/Debug/LTP.BuilderDALELSQL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/UpdateApp/bin/Debug/LTP.BuilderDALELSQL.dll -------------------------------------------------------------------------------- /UpdateApp/bin/Debug/LTP.BuilderDALParam.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/UpdateApp/bin/Debug/LTP.BuilderDALParam.dll -------------------------------------------------------------------------------- /UpdateApp/bin/Debug/LTP.BuilderDALProc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/UpdateApp/bin/Debug/LTP.BuilderDALProc.dll -------------------------------------------------------------------------------- /UpdateApp/bin/Debug/LTP.BuilderDALSQL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/UpdateApp/bin/Debug/LTP.BuilderDALSQL.dll -------------------------------------------------------------------------------- /UpdateApp/bin/Debug/LTP.BuilderDALTranParam.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/UpdateApp/bin/Debug/LTP.BuilderDALTranParam.dll -------------------------------------------------------------------------------- /UpdateApp/bin/Debug/LTP.CodeBuild.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/UpdateApp/bin/Debug/LTP.CodeBuild.dll -------------------------------------------------------------------------------- /UpdateApp/bin/Debug/LTP.CodeHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/UpdateApp/bin/Debug/LTP.CodeHelper.dll -------------------------------------------------------------------------------- /UpdateApp/bin/Debug/LTP.DBFactory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/UpdateApp/bin/Debug/LTP.DBFactory.dll -------------------------------------------------------------------------------- /UpdateApp/bin/Debug/LTP.DbObjects.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/UpdateApp/bin/Debug/LTP.DbObjects.dll -------------------------------------------------------------------------------- /UpdateApp/bin/Debug/LTP.IBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/UpdateApp/bin/Debug/LTP.IBuilder.dll -------------------------------------------------------------------------------- /UpdateApp/bin/Debug/LTP.IDBO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/UpdateApp/bin/Debug/LTP.IDBO.dll -------------------------------------------------------------------------------- /UpdateApp/bin/Debug/LTP.SplashScrForm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/UpdateApp/bin/Debug/LTP.SplashScrForm.dll -------------------------------------------------------------------------------- /UpdateApp/bin/Debug/LTP.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/UpdateApp/bin/Debug/LTP.Utility.dll -------------------------------------------------------------------------------- /UpdateApp/bin/Debug/Maticsoft.AddInManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/UpdateApp/bin/Debug/Maticsoft.AddInManager.dll -------------------------------------------------------------------------------- /UpdateApp/bin/Debug/UpdateApp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/UpdateApp/bin/Debug/UpdateApp.exe -------------------------------------------------------------------------------- /UpdateApp/bin/Debug/UpdateApp.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /UpdateApp/bin/Debug/UpdateApp.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/UpdateApp/bin/Debug/UpdateApp.vshost.exe -------------------------------------------------------------------------------- /UpdateApp/bin/Debug/UpdateApp.vshost.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /UpdateApp/bin/Release/UpdateApp.XmlSerializers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/UpdateApp/bin/Release/UpdateApp.XmlSerializers.dll -------------------------------------------------------------------------------- /UpdateApp/bin/Release/UpdateApp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/UpdateApp/bin/Release/UpdateApp.exe -------------------------------------------------------------------------------- /UpdateApp/bin/Release/UpdateApp.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Utility/Cache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Utility/Cache.cs -------------------------------------------------------------------------------- /Utility/ConfigHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Utility/ConfigHelper.cs -------------------------------------------------------------------------------- /Utility/INIFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Utility/INIFile.cs -------------------------------------------------------------------------------- /Utility/StringPlus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Utility/StringPlus.cs -------------------------------------------------------------------------------- /Utility/VSProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Utility/VSProject.cs -------------------------------------------------------------------------------- /Utility/bin/Debug/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Utility/bin/Debug/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /Utility/bin/Release/Maticsoft.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/Utility/bin/Release/Maticsoft.Utility.dll -------------------------------------------------------------------------------- /VSProject/SolutionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/VSProject/SolutionManager.cs -------------------------------------------------------------------------------- /VSProject/bin/Debug/VSProject.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/VSProject/bin/Debug/VSProject.dll -------------------------------------------------------------------------------- /VSProject/bin/Release/VSProject.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/VSProject/bin/Release/VSProject.dll -------------------------------------------------------------------------------- /uninstall/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/uninstall/App.ico -------------------------------------------------------------------------------- /uninstall/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/uninstall/AssemblyInfo.cs -------------------------------------------------------------------------------- /uninstall/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/uninstall/Form1.cs -------------------------------------------------------------------------------- /uninstall/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/uninstall/Thumbs.db -------------------------------------------------------------------------------- /uninstall/bin/Debug/uninstall.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/uninstall/bin/Debug/uninstall.exe -------------------------------------------------------------------------------- /uninstall/bin/Debug/uninstall.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/uninstall/bin/Debug/uninstall.vshost.exe -------------------------------------------------------------------------------- /uninstall/bin/Release/uninstall.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/uninstall/bin/Release/uninstall.exe -------------------------------------------------------------------------------- /uninstall/bin/Release/uninstall.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltpcode/Codematic2/e45805eb2671fa48febf3a3bb3fef1d438ebbd55/uninstall/bin/Release/uninstall.vshost.exe --------------------------------------------------------------------------------