宜昌华友-原料库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

267 lines
10 KiB

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using Microsoft.VisualBasic;
using DBFactory;
namespace SystemConfig
{
public partial class FrmLaneGateEdit : Form
{
bool IfUpdate = false;
DBOperator dbo = CStaticClass.dbo;
private static FrmLaneGateEdit _formInstance;
public static FrmLaneGateEdit FormInstance
{
get
{
if (_formInstance == null)
{
_formInstance = new FrmLaneGateEdit();
}
return _formInstance;
}
set {_formInstance = value; }
}
public FrmLaneGateEdit()
{
InitializeComponent();
_formInstance =this;
dbo.Open();
}
private void FrmLaneGateEdit_Load(object sender, EventArgs e)
{
}
private void btLaneGateDeviceIndex_Click(object sender, EventArgs e)
{
FrmDeviceEdit.FormInstance.LaneGateDeviceIndex = true;
FrmDeviceEdit.FormInstance.LaneIndex = false;
FrmDeviceEdit.FormInstance.IsSelected = true;
FrmDeviceEdit.FormInstance.ShowDialog();
}
private void btLaneIndex_Click(object sender, EventArgs e)
{
FrmDeviceEdit.FormInstance.LaneIndex= true;
FrmDeviceEdit.FormInstance.LaneGateDeviceIndex = false;
FrmDeviceEdit.FormInstance.IsSelected = true;
FrmDeviceEdit.FormInstance.ShowDialog();
}
private void btNull_Click(object sender, EventArgs e)
{
this.tbLaneGateDeviceIndex.Text = "";
this.tbLaneIndex.Text = "";
this.tbX.Text = "";
this.tbY.Text = "";
this.tbZ.Text = "";
this.chbInput.Checked = false;
this.chbOutput.Checked = false;
}
private void btBack_Click(object sender, EventArgs e)
{
this.Close();
}
private void btSave_Click(object sender, EventArgs e)
{
if (MessageBox.Show("��ȷ��Ҫ��������������Ϣ����", "������ʾ��", MessageBoxButtons.OKCancel, MessageBoxIcon.Question) != DialogResult.OK)
{
return;
}
if (Information.IsNumeric(this.tbLaneGateDeviceIndex.Text) == false)
{
MessageBox.Show("�����ڴ���Ӧ���豸����ֻ�����������ͣ�", "��������ʾ��", MessageBoxButtons.OK, MessageBoxIcon.Warning);
tbLaneGateDeviceIndex.Focus();
return;
}
if (Information.IsNumeric(this.tbLaneIndex.Text) == false)
{
MessageBox.Show("������Ӧ���豸����ֻ�����������ͣ�", "��������ʾ��", MessageBoxButtons.OK, MessageBoxIcon.Warning);
this.tbLaneIndex.Focus();
return;
}
if (Information.IsNumeric(this.tbX.Text) == false)
{
MessageBox.Show("�����ڣ�����ֻ�����������ͣ�", "��������ʾ��", MessageBoxButtons.OK, MessageBoxIcon.Warning);
this.tbX.Focus();
return;
}
if (Information.IsNumeric(this.tbY.Text) == false)
{
MessageBox.Show("������Y����ֻ�����������ͣ�", "��������ʾ��", MessageBoxButtons.OK, MessageBoxIcon.Warning);
this.tbY.Focus();
return;
}
if (Information.IsNumeric(this.tbZ.Text) == false)
{
MessageBox.Show("������Z����ֻ�����������ͣ�", "��������ʾ��", MessageBoxButtons.OK, MessageBoxIcon.Warning);
this.tbZ.Focus();
return;
}
if ((this.chbInput.Checked == false) && (this.chbOutput.Checked == false))
{
MessageBox.Show("����ѡ�����dz����ڡ��͡��������ڡ���", "��������ʾ��", MessageBoxButtons.OK, MessageBoxIcon.Warning);
return;
}
try
{
DataSet ds;
string sql;
char inp, outp;
if (this.chbInput.Checked == true)
{
inp = '1';
}
else
{
inp = '0';
}
if (this.chbOutput.Checked == true)
{
outp = '1';
}
else
{
outp = '0';
}
if (IfUpdate == true)
{
sql = "UPDATE T_Base_Lane_Gate SET F_LaneIndex =" + Convert.ToInt32(this.tbLaneIndex.Text)
+ ", F_XYZ ='" + tbX.Text + ";" + tbY.Text + ";" + tbZ.Text + "', F_Input =" + inp +
", F_Output =" + outp + " where F_LaneGateDeviceIndex=" + Convert.ToInt32(this.tbLaneGateDeviceIndex.Text);
dbo.ExceSQL(sql);
MessageBox.Show("����������Ϣ�޸ijɹ���", "������ʾ��", MessageBoxButtons.OK, MessageBoxIcon.Information);
IfUpdate = false;
}
else
{
sql = "SELECT F_LaneGateDeviceIndex FROM T_Base_Lane_Gate where F_LaneGateDeviceIndex=" + Convert.ToInt32(this.tbLaneGateDeviceIndex.Text);
ds = dbo.ExceSQL(sql);
if (ds.Tables[0].DefaultView.Count > 0)
{
MessageBox.Show("�����ڴ���Ӧ���豸���������ݿ��Ѿ����ڣ��벻Ҫ�ظ�¼�����ݣ�", "��������ʾ��", MessageBoxButtons.OK, MessageBoxIcon.Warning);
tbLaneGateDeviceIndex.Focus();
return;
}
ds.Clear();
sql = "INSERT INTO T_Base_Lane_Gate(F_LaneGateDeviceIndex, F_LaneIndex, F_XYZ, F_Input, F_Output)VALUES" +
" (" + Convert.ToInt32(this.tbLaneGateDeviceIndex.Text) + "," + Convert.ToInt32(this.tbLaneIndex.Text)
+ ",'" + tbX.Text + ";" + tbY.Text + ";" + tbZ.Text + "'," + inp + "," + outp + ")";
dbo.ExceSQL(sql);
MessageBox.Show("����������Ϣ¼���ɹ���", "������ʾ��", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
sql = "SELECT F_LaneGateDeviceIndex AS �����ڴ���Ӧ���豸����,F_LaneIndex AS ������Ӧ���豸����, F_XYZ AS " +
" [�����ڣ�������������], F_Input AS ��������, F_Output AS �dz����� FROM T_Base_Lane_Gate where "+
" F_LaneGateDeviceIndex="+Convert.ToInt32(this.tbLaneGateDeviceIndex.Text );
ds = dbo.ExceSQL(sql);
this.dataGridView1.DataSource = ds.Tables[0].DefaultView;
}
catch (Exception ex)
{
throw ex;
}
}
private void btNullQuery_Click(object sender, EventArgs e)
{
this.tbContent.Text = "";
this.cbField.Text = "";
}
private void btQuery_Click(object sender, EventArgs e)
{
if (tbContent.Text.Trim() == "") return;
string df,sql;
if (this.cbField.Text == "������Ӧ���豸����")
{
df = "F_LaneIndex";
}
else
{
df = "F_LaneGateDeviceIndex";
}
sql = "SELECT F_LaneGateDeviceIndex AS �����ڴ���Ӧ���豸����,F_LaneIndex AS ������Ӧ���豸����, F_XYZ AS " +
" [�����ڣ�������������], F_Input AS ��������, F_Output AS �dz����� FROM T_Base_Lane_Gate where " +
" " + df + "='" + Convert.ToInt32(this.tbContent.Text) +"'";
DataSet ds = dbo.ExceSQL(sql);
this.dataGridView1.DataSource = ds.Tables[0].DefaultView ;
}
private void tsmEdit_Click(object sender, EventArgs e)
{
if (dataGridView1.RowCount <= 0)
{
return;
}
char[] cc = new char[1] { ';'};
string[] spl;
spl = this.dataGridView1.CurrentRow.Cells[2].Value.ToString().Split(cc);
this.tabControl1.SelectTab("tabPage1");
this.tbLaneIndex.Text = this.dataGridView1.CurrentRow.Cells[1].Value.ToString() + "";
this.tbLaneGateDeviceIndex.Text = this.dataGridView1.CurrentRow.Cells[0].Value.ToString() + "";
this.tbX.Text = spl[0];
this.tbY.Text = spl[1];
this.tbZ.Text = spl[2];
if (this.dataGridView1.CurrentRow.Cells[3].Value.ToString() == "1")
{
this.chbInput.Checked = true;
}
else
{
this.chbInput.Checked = false;
}
if (this.dataGridView1.CurrentRow.Cells[4].Value.ToString() == "1")
{
this.chbOutput.Checked = true;
}
else
{
this.chbOutput.Checked = false;
}
IfUpdate = true;
}
private void tsmDel_Click(object sender, EventArgs e)
{
if (dataGridView1.RowCount <= 0)
{
return;
}
if (MessageBox.Show("��ȷ��Ҫɾ��ѡ���еġ��������ڣ�" + this.dataGridView1.CurrentRow.Cells[0].Value.ToString() + "����Ϣ����", "������ʾ��", MessageBoxButtons.OKCancel, MessageBoxIcon.Question) != DialogResult.OK)
{
return;
}
dbo.ExceSQL("delete from T_Base_Lane_Gate where F_LaneGateDeviceIndex =" + Convert.ToInt32(this.dataGridView1.CurrentRow.Cells[0].Value));
button2_Click(sender, e);
}
private void button1_Click(object sender, EventArgs e)
{
IfUpdate = false;
}
private void button2_Click(object sender, EventArgs e)
{
string sql = "SELECT F_LaneGateDeviceIndex AS �����ڴ���Ӧ���豸����,F_LaneIndex AS ������Ӧ���豸����, F_XYZ AS " +
" [�����ڣ�������������], F_Input AS ��������, F_Output AS �dz����� FROM T_Base_Lane_Gate";
DataSet ds = dbo.ExceSQL(sql);
this.dataGridView1.DataSource = ds.Tables[0].DefaultView;
}
}
}