找传奇、传世资源到传世资源站!

winform+SQL 的超市管理

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

超市管理系统,模拟其他实例制作,界面有点雷同,但是代码不一样。只要用于初学者掌握winform 的控件的应用,SQL的数据库操作winform+SQL 的超市管理 C#数据库操作-第1张winform+SQL 的超市管理 C#数据库操作-第2张winform+SQL 的超市管理 C#数据库操作-第3张using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Data.SqlClient;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows.Forms;using System.Windows.Forms.VisualStyles;using Wingtech.SuperMarket.BaseFunction;namespace Wingtech.SuperMarket{ public partial class Login : Form { public Login() { InitializeComponent(); btnCancel.Click = BtnCancel_Click; btnOK.Click = BtnOK_Click; this.Load = Login_Load; } private void Login_Load(object sender, EventArgs e) { } private void BtnOK_Click(object sender, EventArgs e) { if (txtUserName.Text!="" && txtPwd.Text!="") { string sql ="select count(*) from tb_EmpInfo where EmpLoginName=@EmpLoginName and EmpLoginPwd=@EmpLoginPwd"; if ((int)(SqlHelper.ExecuteScalar(SqlHelper.connectionString,CommandType.Text,sql, new SqlParameter[] { new SqlParameter("@EmpLoginName",txtUserName.Text.Trim()), new SqlParameter("@EmpLoginPwd",txtPwd.Text.Trim()) }))==1) { this.Hide(); Main main = new Main(); main.toolStripStatusUser.Text = txtUserName.Text; main.EmpLoginName = txtUserName.Text.Trim(); main.Show(); } else { MessageBox.Show("UserName or Pwd Error!"); return; } } else { MessageBox.Show("UserName or Pwd is Empoty!"); return; } } private void BtnCancel_Click(object sender, EventArgs e) { this.Close(); } }}

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复