目录
第一章. 概述 1
1.1概述 1
1.2意义 1
1.3任务 1
第二章. 系统的可行性研究与需求分析 2
2.1可行性研究 2
2.1.1经济可行性 2
2.1.2技术可行性 2
2.1.3操作可行性 2
2.2需求分析 2
2.2.1功能需求 2
2.2.2数据需求 3
2.2.3性能需求 3
2.2.4数据库逻辑结构 6
第三章. 系统的总体设计 7
3.1系统软件结构设计 7
3.1.1软件结构 7
3.2系统流程图 9
第四章. 系统的详细设计 10
4.1.1程序流程图 11
第五章. 系统的实现与调试 18
5.1应用系统的开发及测试 18
5.1.1系统首页 18
5.1.2用户登录及访问权限 19
5.1.3车次信息查询 21
5.1.4售票 21
5.15退票 22
结束语 23
致谢.....................................................................24
参考文献 25
附录A...............................................................................26附录B...............................................................................30
附录C............................................................................. 32
附录
登陆窗
#region Windows 窗体设计器生成的代码
private void InitializeComponent()
{
this.lblID = new System.Windows.Forms.Label();
this.lblPassWord = new System.Windows.Forms.Label();
this.cbSelect = new System.Windows.Forms.ComboBox();
this.lblSelect = new System.Windows.Forms.Label();
this.txtID = new System.Windows.Forms.TextBox();
this.txtPassWord = new System.Windows.Forms.TextBox();
this.btnCancel = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.skinEngine1 = new Sunisoft.IrisSkin.SkinEngine(((System.ComponentModel.Component)(this)));
this.btnEnter = new System.Windows.Forms.Button();
this.SuspendLayout();
// LoginForm
// this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoValidate = System.Windows.Forms.AutoValidate.EnablePreventFocusChange;
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.ClientSize = new System.Drawing.Size(322, 312);
this.Controls.Add(this.label1);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnEnter);
this.Controls.Add(this.txtPassWord);
1