/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

  1. using System;
  2. using System.Windows.Forms;
  3. using PC_Commander.AppCode;
  4. using System.IO;
  5. using System.Xml;
  6. namespace PC_Commander
  7. {
  8. public partial class AddNewLedTable : Form
  9. {
  10. private int width;
  11. private int height;
  12. private string ledTableName;
  13. private string ledTableCardID;
  14. private bool isOk;
  15. public int WidthLed
  16. {
  17. get { return width; }
  18. set { width = value; }
  19. }
  20. public int HeightLed
  21. {
  22. get { return height; }
  23. set { height = value; }
  24. }
  25. public string LedTableName
  26. {
  27. get { return ledTableName; }
  28. set { ledTableName = value; }
  29. }
  30. public string LedTableCardID
  31. {
  32. get { return ledTableCardID; }
  33. set { ledTableCardID = value; }
  34. }
  35. public bool IsOk
  36. {
  37. get { return isOk; }
  38. set { isOk = value; }
  39. }
  40. public AddNewLedTable()
  41. {
  42. InitializeComponent();
  43. }
  44. private void textBox_LedMatrixHeight_Validated(object sender, EventArgs e)
  45. {
  46. int number;
  47. string value = textBox_LedMatrixHeight.Text.ToString();
  48. bool result = Int32.TryParse(value, out number);
  49. if (result != true)
  50. {
  51. MessageBox.Show("Speed must be a interger.\nPlease try again !");
  52. textBox_LedMatrixHeight.Text = "16";
  53. }
  54. }
  55. private void textBox_LedMatrixWidth_Validated(object sender, EventArgs e)
  56. {
  57. int number;
  58. string value = textBox_LedMatrixWidth.Text.ToString();
  59. bool result = Int32.TryParse(value, out number);
  60. if (result != true)
  61. {
  62. MessageBox.Show("Speed must be a interger.\nPlease try again !");
  63. textBox_LedMatrixWidth.Text = "64";
  64. }
  65. }
  66. private void btn_OKAddNewLed_Click(object sender, EventArgs e)
  67. {
  68. ledTableName = textBox_ledTableName.Text.ToString();
  69. LedTableCardID = textBox_LedTableCardID.Text.ToString();
  70. height = Convert.ToInt32(textBox_LedMatrixHeight.Text.ToString());
  71. width = Convert.ToInt32(textBox_LedMatrixWidth.Text.ToString());
  72. if (ledTableName == "")
  73. ledTableName = "unnameLed";
  74. if (LedTableCardID == "")
  75. LedTableCardID = "unidentified";
  76. if (height == 0)
  77. height = 16;
  78. if (width == 0)
  79. width = 32;
  80. // create path to file
  81. string strFilePath = new DirectoryInfo(Application.StartupPath).Parent.Parent.FullName + "/AppFile/" + "ListLedTablesXMLFile.xml";
  82. FileReaderWriter getDataFromFile = new FileReaderWriter(strFilePath);
  83. if (getDataFromFile.CheckLedTableCardID(LedTableCardID))
  84. {
  85. DialogResult dialogResult = MessageBox.Show(this, "Trung ten,please try again !", "Warning", MessageBoxButtons.OK);
  86. }
  87. else
  88. {
  89. isOk = true;
  90. this.Dispose();
  91. }
  92. }
  93. private void btn_CancelAddNewLed_Click(object sender, EventArgs e)
  94. {
  95. isOk = false;
  96. this.Dispose();
  97. }
  98. private void btn_TestConncetion_Click(object sender, EventArgs e)
  99. {
  100. // variables
  101. int requestType = 1;
  102. string passWord = "123456";
  103. int option = 0;
  104. string strData = requestType.ToString() + "|"
  105. + passWord + "|"
  106. + option.ToString() + "|";
  107. string moduleSimID = textBox_LedTableCardID.Text.ToString();
  108. ConncectToDevice connectToDevice = new ConncectToDevice();
  109. if (connectToDevice.SendDataToDevice(moduleSimID, strData))
  110. {
  111. //string strData1 = connectToDevice.getContentGSM();
  112. MessageBox.Show(this, "Connect successfully", "Connection", MessageBoxButtons.OK, MessageBoxIcon.Information);
  113. }
  114. else
  115. MessageBox.Show(this, "Connect fail", "Connection", MessageBoxButtons.OK, MessageBoxIcon.Information);
  116. }
  117. private void textBox_LedTableCardID_Validated(object sender, EventArgs e)
  118. {
  119. //// create path to file
  120. //string strFilePath = new DirectoryInfo(Application.StartupPath).Parent.Parent.FullName + "/AppFile/" +"ListLedTablesXMLFile.xml";
  121. ////FileReaderWriter getDataFromFile = new FileReaderWriter(strFilePath);
  122. //// Create new xml document
  123. //XmlDocument xmlDocument = new XmlDocument();
  124. //// Load File
  125. //xmlDocument.Load(strFilePath);
  126. //// Root element of Xml file.
  127. //XmlElement rootElement = xmlDocument.DocumentElement;
  128. //foreach (XmlNode node1 in rootElement.ChildNodes)
  129. // if (node1.Attributes[0].Value == textBox_LedTableCardID.Text)
  130. // {
  131. // MessageBox.Show(this, "Trung ten,please try again !", "Warning", MessageBoxButtons.OK);
  132. // }
  133. }
  134. }
  135. }