12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- using UAS_MES_NEW.DataOperate;
- using UAS_MES_NEW.Entity;
- using UAS_MES_NEW.PublicMethod;
- namespace UAS_MES_NEW.Query
- {
- public partial class Query_SOP : Form
- {
- DataHelper dh = SystemInf.dh;
- public Query_SOP()
- {
- InitializeComponent();
- }
- private void Export_Click(object sender, EventArgs e)
- {
- }
-
- private void ExcelExport(string DataOrTemplet)
- {
- }
- private void Query_SpecialReport_Load(object sender, EventArgs e)
- {
- }
- private void Sn_KeyDown(object sender, KeyEventArgs e)
- {
- if (e.KeyData == Keys.Enter)
- {
- dh.ExecuteSql("update craftmaterial set cm_status=-1 where cm_barcode='" + Sn.Text + "'", "update");
- MessageBox.Show("解绑成功");
-
-
-
-
-
-
-
-
-
-
-
- }
- }
- }
- }
|