欢迎来到天天文库
浏览记录
ID:47469604
大小:522.50 KB
页数:20页
时间:2020-01-11
《仓库管理系统方案》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、.....仓库管理信息系统学习参考.....目录一、功能模块图……………………………………………………3二、登陆……………………………………………………………3三、主界面…………………………………………………………5四、对仓库进行管理………………………………………………81、库存查询………………………………………………………82、货物入库………………………………………………………93、删除产品信息…………………………………………………114、修改产品信息…………………………………………………13五、用户管理…………………………
2、……………………………151、添加用户………………………………………………………152、查看用户………………………………………………………163、修改用户密码…………………………………………………18六、总结…………………………………………………………20学习参考.....一、功能模块图登陆对仓库进行管理管理人员信息管理修改密码查询产品信息删除修改信息添加产品查看管理员添加管理员二、登陆实习代码如下:namespace仓库信息管理系统1{publicpartialclassLogin:Form{学习参考.....publicL
3、ogin(){InitializeComponent();}privatevoidbtLogin_Click(objectsender,EventArgse){stringusername=用户名.Text.Trim();//取出账号stringpw=密码.Text.Trim();//取出密码stringconstr="datasource=(local);"+"InitialCatalog=仓库管理信息系统;"+"IntegratedSecurity=SSPI;";//设置连接字符串SqlConnectionmycon=ne
4、wSqlConnection(constr);//实例化连接对象SqlCommandmycom=mycon.CreateCommand();//创建SQL命令执行对象strings1="selectUserName,UserRightfromUserinfowhereUserName='"+username+"'andUserRight='"+pw+"'";//编写SQL命令mycom.CommandText=s1;//执行SQL命令SqlDataAdaptermyDA=newSqlDataAdapter();//实例化数据适
5、配器myDA.SelectCommand=mycom;//让适配器执行SELECT命令DataSetmyDS=newDataSet();//实例化结果数据集intn=myDA.Fill(myDS,"Userinfo");//将结果放入数据适配器,返回元祖个数if(n!=0){MessageBox.Show("欢迎使用!");//登录成功Mainmain=newMain();this.Hide();main.Show();}else{MessageBox.Show("用户名或密码有错。请重新输入!");用户名.Text="";/
6、/清空账号密码.Text="";//清空密码?用户名.Focus();//光标括设置在账号上}}privatevoidbtExit_Click(objectsender,EventArgse){if(MessageBox.Show("您真的要退出本系统吗?","提示",MessageBoxButtons.OKCancel,MessageBoxIcon.Information)==DialogResult.OK){Application.Exit();}else{学习参考.....this.btLogin.Enabled=tru
7、e;this.Hide();Loginlogin=newLogin();login.Show();}}}}三、主界面实现代码如下:namespace仓库信息管理系统1{publicpartialclassMain:Form{privateintchildFormNumber=0;publicMain(){InitializeComponent();}privatevoidShowNewForm(objectsender,EventArgse){FormchildForm=newForm();学习参考.....childForm
8、.MdiParent=this;childForm.Text="窗口"+childFormNumber++;childForm.Show();}privatevoidOpenFile(objectsender,EventArgse){OpenFileDialogopenFil
此文档下载收益归作者所有