实例介绍
大学计算机基础考试系统
【实例截图】
【核心代码】
4744302543009652848.rar
└── 200710261211644
├── 使用说明.txt
├── 免费『商业源码』.url
├── 『源码天空』.url
└── 计算机考试系统
├── Help
│ ├── About.htm
│ ├── DataBase.htm
│ ├── default.htm
│ ├── help.chm
│ ├── images
│ │ ├── About.JPG
│ │ ├── Add1.JPG
│ │ ├── Add2.JPG
│ │ ├── Add3.JPG
│ │ ├── Add4.JPG
│ │ ├── Add.JPG
│ │ ├── Login.JPG
│ │ ├── LoginSetup.JPG
│ │ ├── main2.JPG
│ │ ├── main.JPG
│ │ ├── resume.jpg
│ │ ├── RightClick.JPG
│ │ ├── SqlServer.JPG
│ │ ├── 考场监视.JPG
│ │ └── 考试参数.JPG
│ ├── index.htm
│ ├── resume.htm
│ └── setParameter.htm
├── ReadMe.txt
├── Tester
│ ├── Tester
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── 101105003
│ │ │ ├── 101105032
│ │ │ ├── 64405131
│ │ │ ├── Doc1.doc
│ │ │ ├── Excel.dll
│ │ │ ├── ExcelManager.dll
│ │ │ ├── ExcelPaper.xls
│ │ │ ├── help.chm
│ │ │ ├── Office.dll
│ │ │ ├── PowerPoint.dll
│ │ │ ├── PptManager.dll
│ │ │ ├── Tester.exe
│ │ │ ├── Tester.pdb
│ │ │ ├── Tester.vshost.exe
│ │ │ ├── VBIDE.dll
│ │ │ ├── Word.dll
│ │ │ └── WordManager.dll
│ │ ├── CommonClass
│ │ │ ├── Help.cs
│ │ │ └── Tester.cs
│ │ ├── frmMain.cs
│ │ ├── frmMain.Designer.cs
│ │ ├── frmMain.resx
│ │ ├── GradePaper
│ │ │ ├── GradeExcel.cs
│ │ │ ├── GradePowerPoint.cs
│ │ │ ├── GradeWindows.cs
│ │ │ ├── GradeWord.cs
│ │ │ └── HelpGrade.cs
│ │ ├── Login
│ │ │ ├── frmLogin.cs
│ │ │ ├── frmLogin.Designer.cs
│ │ │ ├── frmLogin.resx
│ │ │ └── Help.cs
│ │ ├── Logo.ico
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── Refactor
│ │ │ │ ├── TempPE
│ │ │ │ │ ├── Paper.Designer.cs.dll
│ │ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ │ ├── Tester.csproj.GenerateResource.Cache
│ │ │ │ ├── Tester.exe
│ │ │ │ ├── Tester.frmMain.resources
│ │ │ │ ├── Tester.Login.frmLogin.resources
│ │ │ │ ├── Tester.OtherForm.StudentReadme.resources
│ │ │ │ ├── Tester.pdb
│ │ │ │ └── Tester.Properties.Resources.resources
│ │ │ └── Tester.csproj.FileList.txt
│ │ ├── OtherForm
│ │ │ ├── StudentReadme.cs
│ │ │ ├── StudentReadme.Designer.cs
│ │ │ └── StudentReadme.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Resource
│ │ │ ├── CONSTRUC.ICO
│ │ │ ├── MSN.ICO
│ │ │ ├── Thumbs.db
│ │ │ └── Trophy.ICO
│ │ ├── Tester.csproj
│ │ ├── Tester.csproj.user
│ │ ├── Tester.sln
│ │ ├── Tester.suo
│ │ └── Thumbs.db
│ ├── 注册
│ │ └── Registry.reg
│ └── 说明.txt
├── TestingMIS
│ ├── TestingMIS
│ │ ├── app.config
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── help.chm
│ │ │ ├── NoPaperExamMIS.pdb
│ │ │ ├── TestingMIS.exe
│ │ │ ├── TestingMIS.exe.config
│ │ │ ├── TestingMIS.pdb
│ │ │ ├── TestingMIS.vshost.exe
│ │ │ └── TestingMIS.vshost.exe.config
│ │ ├── CommonClass
│ │ │ └── TestingData.cs
│ │ ├── dsLogin.Designer.cs
│ │ ├── dsLogin.xsc
│ │ ├── dsLogin.xsd
│ │ ├── dsLogin.xss
│ │ ├── dsSubject.Designer.cs
│ │ ├── dsSubject.xsc
│ │ ├── dsSubject.xsd
│ │ ├── dsSubject.xss
│ │ ├── dsSysSetting.Designer.cs
│ │ ├── dsSysSetting.xsc
│ │ ├── dsSysSetting.xsd
│ │ ├── dsSysSetting.xss
│ │ ├── frmMain.cs
│ │ ├── frmMain.Designer.cs
│ │ ├── frmMain.resx
│ │ ├── Help
│ │ │ ├── frmAbout.cs
│ │ │ ├── frmAbout.Designer.cs
│ │ │ └── frmAbout.resx
│ │ ├── Login
│ │ │ ├── frmLogin.cs
│ │ │ ├── frmLogin.Designer.cs
│ │ │ ├── frmLogin.resx
│ │ │ └── Help.cs
│ │ ├── Logo.ico
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── NoPaperTestingMIS.csproj.GenerateResource.Cache
│ │ │ │ ├── Refactor
│ │ │ │ ├── TempPE
│ │ │ │ │ ├── daSetting.Designer.cs.dll
│ │ │ │ │ ├── daSysSetting.Designer.cs.dll
│ │ │ │ │ ├── dsExamScore.Designer.cs.dll
│ │ │ │ │ ├── dsLogin.Designer.cs.dll
│ │ │ │ │ ├── dsSubject.Designer.cs.dll
│ │ │ │ │ ├── dsSysSetting.Designer.cs.dll
│ │ │ │ │ ├── NoPaperTesingMISDataSet.Designer.cs.dll
│ │ │ │ │ ├── Properties.Resources.Designer.cs.dll
│ │ │ │ │ └── Report.ClassScore.cs.dll
│ │ │ │ ├── TestingMIS.csproj.GenerateResource.Cache
│ │ │ │ ├── TestingMIS.exe
│ │ │ │ ├── TestingMIS.frmMain.resources
│ │ │ │ ├── TestingMIS.Help.frmAbout.resources
│ │ │ │ ├── TestingMIS.Login.frmLogin.resources
│ │ │ │ ├── TestingMIS.pdb
│ │ │ │ ├── TestingMIS.Properties.Resources.resources
│ │ │ │ ├── TestingMIS.Query.frmClassScoreQuery.resources
│ │ │ │ ├── TestingMIS.Query.frmStudentInfoQuery.resources
│ │ │ │ ├── TestingMIS.Query.frmStudentScoreQuery.resources
│ │ │ │ ├── TestingMIS.Query.frmSubjectQuery.resources
│ │ │ │ ├── TestingMIS.Student.frmPaperRecheck.resources
│ │ │ │ ├── TestingMIS.Student.frmReexam.resources
│ │ │ │ ├── TestingMIS.Student.frmRelogin.resources
│ │ │ │ ├── TestingMIS.Student.frmStuInfo.resources
│ │ │ │ ├── TestingMIS.Subject.frmChineseType.resources
│ │ │ │ ├── TestingMIS.Subject.frmChoose.resources
│ │ │ │ ├── TestingMIS.Subject.frmEnglishType.resources
│ │ │ │ ├── TestingMIS.Subject.frmExcel.resources
│ │ │ │ ├── TestingMIS.Subject.frmJudgement.resources
│ │ │ │ ├── TestingMIS.Subject.frmPowerPoint.resources
│ │ │ │ ├── TestingMIS.Subject.frmWindows.resources
│ │ │ │ ├── TestingMIS.Subject.frmWord.resources
│ │ │ │ ├── TestingMIS.SysSetting.frmChangePassword.resources
│ │ │ │ ├── TestingMIS.SysSetting.frmSetParam.resources
│ │ │ │ ├── TestingMIS.SysSetting.frmTestMonitor.resources
│ │ │ │ └── TestingMIS.SysSetting.frmUserManagement.resources
│ │ │ ├── NoPaperTestingMIS.csproj.FileList.txt
│ │ │ └── TestingMIS.csproj.FileList.txt
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Query
│ │ │ ├── frmClassScoreQuery.cs
│ │ │ ├── frmClassScoreQuery.Designer.cs
│ │ │ ├── frmClassScoreQuery.resx
│ │ │ ├── frmStudentInfoQuery.cs
│ │ │ ├── frmStudentInfoQuery.Designer.cs
│ │ │ ├── frmStudentInfoQuery.resx
│ │ │ ├── frmStudentScoreQuery.cs
│ │ │ ├── frmStudentScoreQuery.Designer.cs
│ │ │ ├── frmStudentScoreQuery.resx
│ │ │ ├── frmSubjectQuery.cs
│ │ │ ├── frmSubjectQuery.Designer.cs
│ │ │ ├── frmSubjectQuery.resx
│ │ │ ├── HelpScoreQuery.cs
│ │ │ ├── HelpStudentInfoQuery.cs
│ │ │ └── HelpSubject.cs
│ │ ├── Report
│ │ ├── Resources
│ │ │ ├── advance.bmp
│ │ │ ├── Logo.ico
│ │ │ ├── Thumbs.db
│ │ │ └── title.bmp
│ │ ├── Student
│ │ │ ├── frmPaperRecheck.cs
│ │ │ ├── frmPaperRecheck.Designer.cs
│ │ │ ├── frmPaperRecheck.resx
│ │ │ ├── frmReexam.cs
│ │ │ ├── frmReexam.Designer.cs
│ │ │ ├── frmReexam.resx
│ │ │ ├── frmRelogin.cs
│ │ │ ├── frmRelogin.Designer.cs
│ │ │ ├── frmRelogin.resx
│ │ │ ├── frmStuInfo.cs
│ │ │ ├── frmStuInfo.Designer.cs
│ │ │ ├── frmStuInfo.resx
│ │ │ ├── Help.cs
│ │ │ ├── HelpRelogin.cs
│ │ │ └── HelpStuInfo.cs
│ │ ├── Subject
│ │ │ ├── frmChineseType.cs
│ │ │ ├── frmChineseType.Designer.cs
│ │ │ ├── frmChineseType.resx
│ │ │ ├── frmChoose.cs
│ │ │ ├── frmChoose.Designer.cs
│ │ │ ├── frmChoose.resx
│ │ │ ├── frmEnglishType.cs
│ │ │ ├── frmEnglishType.Designer.cs
│ │ │ ├── frmEnglishType.resx
│ │ │ ├── frmExcel.cs
│ │ │ ├── frmExcel.Designer.cs
│ │ │ ├── frmExcel.resx
│ │ │ ├── frmJudgement.cs
│ │ │ ├── frmJudgement.Designer.cs
│ │ │ ├── frmJudgement.resx
│ │ │ ├── frmPowerPoint.cs
│ │ │ ├── frmPowerPoint.Designer.cs
│ │ │ ├── frmPowerPoint.resx
│ │ │ ├── frmWindows.cs
│ │ │ ├── frmWindows.Designer.cs
│ │ │ ├── frmWindows.resx
│ │ │ ├── frmWord.cs
│ │ │ ├── frmWord.Designer.cs
│ │ │ ├── frmWord.resx
│ │ │ └── Help.cs
│ │ ├── SysSetting
│ │ │ ├── frmChangePassword.cs
│ │ │ ├── frmChangePassword.Designer.cs
│ │ │ ├── frmChangePassword.resx
│ │ │ ├── frmSetParam.cs
│ │ │ ├── frmSetParam.Designer.cs
│ │ │ ├── frmSetParam.resx
│ │ │ ├── frmTestMonitor.cs
│ │ │ ├── frmTestMonitor.Designer.cs
│ │ │ ├── frmTestMonitor.resx
│ │ │ ├── frmUserManagement.cs
│ │ │ ├── frmUserManagement.Designer.cs
│ │ │ ├── frmUserManagement.resx
│ │ │ └── Help.cs
│ │ ├── TestingMIS.csproj
│ │ ├── TestingMIS.csproj.user
│ │ ├── TestingMIS.sln
│ │ ├── TestingMIS.suo
│ │ └── Thumbs.db
│ ├── 注册
│ │ └── Registry.reg
│ └── 说明.txt
├── 作用说明.txt
├── 使用说明.txt
├── 免费『商业源码』.url
├── 数据库
│ ├── NoPaperTesingMIS_Data.MDF
│ ├── NoPaperTesingMIS_Log.LDF
│ └── 说明.txt
└── 『源码天空』.url
42 directories, 248 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论