/WIP/Users/TungTT/PC Commander v1.03/PC Commander/PC Commander/AddNewLedTable.cs
http://cpro-wia.googlecode.com/ · C# · 164 lines · 118 code · 29 blank · 17 comment · 14 complexity · dad4479e63b767375b0aeb5cf8acb94f MD5 · raw file
- using System;
- using System.Windows.Forms;
- using PC_Commander.AppCode;
- using System.IO;
- using System.Xml;
-
- namespace PC_Commander
- {
- public partial class AddNewLedTable : Form
- {
-
- private int width;
- private int height;
- private string ledTableName;
- private string ledTableCardID;
- private bool isOk;
-
- public int WidthLed
- {
- get { return width; }
- set { width = value; }
- }
-
- public int HeightLed
- {
- get { return height; }
- set { height = value; }
- }
-
- public string LedTableName
- {
- get { return ledTableName; }
- set { ledTableName = value; }
- }
- public string LedTableCardID
- {
- get { return ledTableCardID; }
- set { ledTableCardID = value; }
- }
-
- public bool IsOk
- {
- get { return isOk; }
- set { isOk = value; }
- }
-
- public AddNewLedTable()
- {
- InitializeComponent();
- }
-
- private void textBox_LedMatrixHeight_Validated(object sender, EventArgs e)
- {
- int number;
- string value = textBox_LedMatrixHeight.Text.ToString();
- bool result = Int32.TryParse(value, out number);
- if (result != true)
- {
- MessageBox.Show("Speed must be a interger.\nPlease try again !");
- textBox_LedMatrixHeight.Text = "16";
- }
- }
-
- private void textBox_LedMatrixWidth_Validated(object sender, EventArgs e)
- {
- int number;
- string value = textBox_LedMatrixWidth.Text.ToString();
- bool result = Int32.TryParse(value, out number);
- if (result != true)
- {
- MessageBox.Show("Speed must be a interger.\nPlease try again !");
- textBox_LedMatrixWidth.Text = "64";
- }
- }
-
- private void btn_OKAddNewLed_Click(object sender, EventArgs e)
- {
- ledTableName = textBox_ledTableName.Text.ToString();
- LedTableCardID = textBox_LedTableCardID.Text.ToString();
- height = Convert.ToInt32(textBox_LedMatrixHeight.Text.ToString());
- width = Convert.ToInt32(textBox_LedMatrixWidth.Text.ToString());
-
-
- if (ledTableName == "")
- ledTableName = "unnameLed";
- if (LedTableCardID == "")
- LedTableCardID = "unidentified";
-
- if (height == 0)
- height = 16;
- if (width == 0)
- width = 32;
-
- // create path to file
- string strFilePath = new DirectoryInfo(Application.StartupPath).Parent.Parent.FullName + "/AppFile/" + "ListLedTablesXMLFile.xml";
-
- FileReaderWriter getDataFromFile = new FileReaderWriter(strFilePath);
-
- if (getDataFromFile.CheckLedTableCardID(LedTableCardID))
- {
- DialogResult dialogResult = MessageBox.Show(this, "Trung ten,please try again !", "Warning", MessageBoxButtons.OK);
- }
- else
- {
- isOk = true;
- this.Dispose();
- }
- }
-
- private void btn_CancelAddNewLed_Click(object sender, EventArgs e)
- {
- isOk = false;
- this.Dispose();
- }
-
- private void btn_TestConncetion_Click(object sender, EventArgs e)
- {
- // variables
- int requestType = 1;
- string passWord = "123456";
- int option = 0;
-
- string strData = requestType.ToString() + "|"
- + passWord + "|"
- + option.ToString() + "|";
-
- string moduleSimID = textBox_LedTableCardID.Text.ToString();
-
- ConncectToDevice connectToDevice = new ConncectToDevice();
-
- if (connectToDevice.SendDataToDevice(moduleSimID, strData))
- {
- //string strData1 = connectToDevice.getContentGSM();
-
- MessageBox.Show(this, "Connect successfully", "Connection", MessageBoxButtons.OK, MessageBoxIcon.Information);
- }
- else
- MessageBox.Show(this, "Connect fail", "Connection", MessageBoxButtons.OK, MessageBoxIcon.Information);
- }
-
- private void textBox_LedTableCardID_Validated(object sender, EventArgs e)
- {
- //// create path to file
- //string strFilePath = new DirectoryInfo(Application.StartupPath).Parent.Parent.FullName + "/AppFile/" +"ListLedTablesXMLFile.xml";
-
- ////FileReaderWriter getDataFromFile = new FileReaderWriter(strFilePath);
- //// Create new xml document
- //XmlDocument xmlDocument = new XmlDocument();
-
- //// Load File
- //xmlDocument.Load(strFilePath);
-
- //// Root element of Xml file.
- //XmlElement rootElement = xmlDocument.DocumentElement;
-
- //foreach (XmlNode node1 in rootElement.ChildNodes)
- // if (node1.Attributes[0].Value == textBox_LedTableCardID.Text)
- // {
- // MessageBox.Show(this, "Trung ten,please try again !", "Warning", MessageBoxButtons.OK);
- // }
-
- }
- }
- }