超市管理系统代码(共10页)_第1页
超市管理系统代码(共10页)_第2页
超市管理系统代码(共10页)_第3页
超市管理系统代码(共10页)_第4页
超市管理系统代码(共10页)_第5页
已阅读5页,还剩5页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、精选优质文档-倾情为你奉上using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;namespace 超市管理信息系统 public partial class f_供应商基本信息 : Form /公有变量记录选定数据 public string strOldNO = "" public string strOldNa

2、me = "" public string strOldAdd = "" public f_供应商基本信息() InitializeComponent(); private void f_供应商基本信息_Load(object sender, EventArgs e) / TODO: 这行代码将数据加载到表“连锁超市管理信息数据库DataSet.供应商”中。您可以根据需要移动或移除它。 this.供应商TableAdapter.Fill(this.连锁超市管理信息数据库DataSet.供应商); /新增数据单击事件 private void btnIns

3、ert_Click(object sender, EventArgs e) /获取前台数据 string strName = txtName.Text; string strAdd = txtAdd.Text; string strNO = txtNO.Text; int iNO = 0; int iErrCode = 0; /对前台编号数据的格式审核 try iNO = Convert.ToInt32(txtNO.Text.Trim(); catch (Exception eINO) iErrCode = 1; /对前台名称数据的格式审核 if (strName.Length > 20

4、) iErrCode = 2; if (strAdd.Length > 30) iErrCode = 3; if (iErrCode != 0) MessageBox.Show("你所输入的数据有误,请核查!"); else try /新增写入数据库 this.供应商TableAdapter.Insert(iNO, strName, strAdd); catch (Exception exInsert) MessageBox.Show("新增数据发生错误,请与管理员联系!"); /刷新数据列数 this.供应商TableAdapter.Fill(t

5、his.连锁超市管理信息数据库DataSet.供应商); /单击数据表单元格触发事件 private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e) /获取对应行的各个单元格数据 string strNO = this.dataGridView1.Rowse.RowIndex.Cells0.Value.ToString(); string strName = this.dataGridView1.Rowse.RowIndex.Cells1.Value.ToString(); string strA

6、dd = this.dataGridView1.Rowse.RowIndex.Cells2.Value.ToString(); /填充回对应的文本框 txtNO.Text = strNO; txtName.Text = strName; txtAdd.Text = strAdd; /将原数据值赋予公有变量 strOldNO = strNO; strOldName = strName; strOldAdd = strAdd; /删除按钮事件 private void btnDelete_Click(object sender, EventArgs e) /获取前台数据 string strNam

7、e = txtName.Text; string strAdd = txtAdd.Text; string strNO = txtNO.Text; int iNO = 0; int iErrCode = 0; /对前台编号数据的格式审核 try iNO = Convert.ToInt32(txtNO.Text.Trim(); catch (Exception eINO) iErrCode = 1; /对前台名称数据的格式审核 if (strName.Length > 20) iErrCode = 2; if (strAdd.Length > 30) iErrCode = 3; if

8、 (iErrCode != 0) MessageBox.Show("你所输入的数据有误,请核查!"); else try /新增写入数据库 this.供应商TableAdapter.Delete(iNO, strName, strAdd); catch (Exception exInsert) MessageBox.Show("删除数据发生错误,请与管理员联系!"); /刷新数据列数 this.供应商TableAdapter.Fill(this.连锁超市管理信息数据库DataSet.供应商); /修改按钮事件 private void btnUpdate

9、_Click(object sender, EventArgs e) /获取前台数据 string strName = txtName.Text; string strAdd = txtAdd.Text; string strNO = txtNO.Text; int iNO = 0; int iErrCode = 0; /对前台编号数据的格式审核 try iNO = Convert.ToInt32(txtNO.Text.Trim(); catch (Exception eINO) iErrCode = 1; /对前台名称数据的格式审核 if (strName.Length > 20) i

10、ErrCode = 2; if (strAdd.Length > 30) iErrCode = 3; if (iErrCode != 0) MessageBox.Show("你所输入的数据有误,请核查!"); else try this.供应商TableAdapter.Update(iNO, strName, strAdd, Convert.ToInt32(strOldNO), strOldName, strOldAdd); catch (Exception exUpdate) MessageBox.Show("修改数据发生错误,请与管理员联系!"

11、); /刷新数据列数 this.供应商TableAdapter.Fill(this.连锁超市管理信息数据库DataSet.供应商); using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;namespace 超市管理信息系统 public partial class f_供应商基本信息 : Form /公有变量记录选定数据 public

12、 string strOldNO = "" public string strOldName = "" public string strOldAdd = "" public f_供应商基本信息() InitializeComponent(); private void f_供应商基本信息_Load(object sender, EventArgs e) / TODO: 这行代码将数据加载到表“连锁超市管理信息数据库DataSet.供应商”中。您可以根据需要移动或移除它。 this.供应商TableAdapter.Fill(this.

13、连锁超市管理信息数据库DataSet.供应商); /新增数据单击事件 private void btnInsert_Click(object sender, EventArgs e) /获取前台数据 string strName = txtName.Text; string strAdd = txtAdd.Text; string strNO = txtNO.Text; int iNO = 0; int iErrCode = 0; /对前台编号数据的格式审核 try iNO = Convert.ToInt32(txtNO.Text.Trim(); catch (Exception eINO)

14、iErrCode = 1; /对前台名称数据的格式审核 if (strName.Length > 20) iErrCode = 2; if (strAdd.Length > 30) iErrCode = 3; if (iErrCode != 0) MessageBox.Show("你所输入的数据有误,请核查!"); else try /新增写入数据库 this.供应商TableAdapter.Insert(iNO, strName, strAdd); catch (Exception exInsert) MessageBox.Show("新增数据发生错

15、误,请与管理员联系!"); /刷新数据列数 this.供应商TableAdapter.Fill(this.连锁超市管理信息数据库DataSet.供应商); /单击数据表单元格触发事件 private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e) /获取对应行的各个单元格数据 string strNO = this.dataGridView1.Rowse.RowIndex.Cells0.Value.ToString(); string strName = this.dataGridVie

16、w1.Rowse.RowIndex.Cells1.Value.ToString(); string strAdd = this.dataGridView1.Rowse.RowIndex.Cells2.Value.ToString(); /填充回对应的文本框 txtNO.Text = strNO; txtName.Text = strName; txtAdd.Text = strAdd; /将原数据值赋予公有变量 strOldNO = strNO; strOldName = strName; strOldAdd = strAdd; /删除按钮事件 private void btnDelete_C

17、lick(object sender, EventArgs e) /获取前台数据 string strName = txtName.Text; string strAdd = txtAdd.Text; string strNO = txtNO.Text; int iNO = 0; int iErrCode = 0; /对前台编号数据的格式审核 try iNO = Convert.ToInt32(txtNO.Text.Trim(); catch (Exception eINO) iErrCode = 1; /对前台名称数据的格式审核 if (strName.Length > 20) iEr

18、rCode = 2; if (strAdd.Length > 30) iErrCode = 3; if (iErrCode != 0) MessageBox.Show("你所输入的数据有误,请核查!"); else try /新增写入数据库 this.供应商TableAdapter.Delete(iNO, strName, strAdd); catch (Exception exInsert) MessageBox.Show("删除数据发生错误,请与管理员联系!"); /刷新数据列数 this.供应商TableAdapter.Fill(this.连锁超市管理信息数据库DataSet.供应商); /修改按钮事件 private void btnUpdate_Click(object sender, EventArgs e) /获取前台数据 string strName = txt

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论