Advertisement
Aseron

eReport

Jan 29th, 2022
1,760
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 68.87 KB | None | 0 0
  1. using Microsoft.Win32;
  2. using System;
  3. using System.Data;
  4. using System.Data.SqlClient;
  5. using System.Drawing;
  6. using System.IO;
  7. using System.Text;
  8. using System.Threading;
  9. using System.Threading.Tasks;
  10. using System.Windows.Forms;
  11.  
  12.  
  13.  
  14. namespace eReport
  15. {
  16.     public partial class eReport_Form : Form
  17.     {
  18.  
  19.         private string connectionString;
  20.         private int actualLastID;
  21.         private int actualWorkerCount;
  22.         private int globalReportID;
  23.         private SqlConnection cnn;
  24.         private SqlConnection conn;
  25.         private bool sorting;
  26.         private DateTimePicker StartPicker;
  27.         private DateTimePicker StopPicker;
  28.         private int workerNumber;
  29.         private bool updateWorkers = true;
  30.  
  31.  
  32.  
  33.  
  34.         public static readonly TimeSpan InfiniteTimeSpan = new TimeSpan(0, 0, 0, 0, Timeout.Infinite);
  35.  
  36.         public eReport_Form()
  37.         {
  38.  
  39.  
  40.             InitializeComponent();
  41.             InitializeTimePickers();
  42.  
  43.  
  44.             AppDomain.CurrentDomain.SetData("DataDirectory", AppDomain.CurrentDomain.BaseDirectory);
  45.  
  46.             connectionString = @"Data Source=.\SQLEXPRESS;Initial Catalog=eReport;Integrated Security=True;MultipleActiveResultSets=True";
  47.  
  48.  
  49.             RegisterInStartup();
  50.  
  51.  
  52.             TaskScheduler.Instance.ScheduleTask(06, 10, 24,
  53.             () =>
  54.             {
  55.                 this.Export_CSV();
  56.             });
  57.  
  58.             TaskScheduler.Instance.ScheduleTask(14, 10, 24,
  59.             () =>
  60.             {
  61.                 this.Export_CSV();
  62.             });
  63.  
  64.             TaskScheduler.Instance.ScheduleTask(22, 10, 24,
  65.             () =>
  66.             {
  67.                 this.Export_CSV();
  68.             });
  69.  
  70.  
  71.  
  72.  
  73.             fillMachineCombo();
  74.             fillToolCombo();
  75.  
  76.  
  77.             machineCombo.Select();
  78.  
  79.             sorting = false;
  80.  
  81.             MessageBoxManager.OK = "Rendben";
  82.             MessageBoxManager.Yes = "Igen";
  83.             MessageBoxManager.No = "Nem";
  84.             MessageBoxManager.Register();
  85.  
  86.         }
  87.  
  88.  
  89.         private void InitializeTimePickers()
  90.         {
  91.             StartPicker = new DateTimePicker();
  92.             StartPicker.Format = DateTimePickerFormat.Time;
  93.             StartPicker.ShowUpDown = true;
  94.             StartPicker.Location = new Point(790, 39);
  95.             StartPicker.Width = 100;
  96.             groupBox1.Controls.Add(StartPicker);
  97.  
  98.             StopPicker = new DateTimePicker();
  99.             StopPicker.Format = DateTimePickerFormat.Time;
  100.             StopPicker.ShowUpDown = true;
  101.             StopPicker.Location = new Point(896, 39);
  102.             StopPicker.Width = 100;
  103.             groupBox1.Controls.Add(StopPicker);
  104.  
  105.  
  106.         }
  107.  
  108.  
  109.         private void lastID()
  110.         {
  111.             cnn = new SqlConnection(connectionString);
  112.  
  113.             try
  114.             {
  115.                 cnn.Open();
  116.             }
  117.             catch (Exception ex)
  118.             {
  119.                 MessageBox.Show("Hiba az adatbázis megnyitása közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  120.                 return;
  121.             }
  122.  
  123.             SqlDataReader dr;
  124.  
  125.             try
  126.             {
  127.                 SqlCommand cmd = new SqlCommand("SELECT TOP 1 ID FROM Report_tbl ORDER BY ID DESC", cnn);
  128.                 dr = cmd.ExecuteReader();
  129.  
  130.                 while (dr.Read())
  131.                 {
  132.                     actualLastID = dr.GetInt32(0);
  133.                 }
  134.                 dr.Close();
  135.  
  136.             }
  137.             catch (Exception ex)
  138.             {
  139.                 MessageBox.Show("133Hiba a lekérdezés közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  140.             }
  141.  
  142.         }
  143.  
  144.         private void report_Click(object sender, EventArgs e)
  145.         {
  146.  
  147.             if (checkMainData() && !dataExist() && descriptionBox.TextLength <= 15000 && solutionBox.TextLength <= 15000)
  148.             {
  149.                 cnn = new SqlConnection(connectionString);
  150.  
  151.                 string reportQuery = "INSERT INTO Report_tbl (Machine, Error_Short, Worker_Number, Report, Solution, Create_Record, Modify_Record, Start_Work, End_Work, Intervall)" +
  152.                     "VALUES (@machine, @error_short, @worker_number, @report, @solution, @create_record, @modify_record, @start_work, @end_work, @intervall)";
  153.  
  154.                 string toolQuery = "INSERT INTO Tool_tbl (Tool, Report_ID) " +
  155.                     "VALUES (@tool, @report_id)";
  156.  
  157.                 SqlCommand reportCommand = new SqlCommand(reportQuery, cnn);
  158.                 SqlCommand toolCommand = new SqlCommand(toolQuery, cnn);
  159.  
  160.                 reportCommand.Parameters.AddWithValue("@machine", machineCombo.Text);
  161.                 reportCommand.Parameters.AddWithValue("@error_short", errorCombo.Text);
  162.  
  163.                 reportCommand.Parameters.AddWithValue("@report", descriptionBox.Text);
  164.                 reportCommand.Parameters.AddWithValue("@solution", solutionBox.Text);
  165.  
  166.                 reportCommand.Parameters.AddWithValue("@create_record", DateTime.Now);
  167.                 reportCommand.Parameters.AddWithValue("@modify_record", DateTime.Now);
  168.  
  169.                 reportCommand.Parameters.AddWithValue("@start_work", StartPicker.Value);
  170.                 reportCommand.Parameters.AddWithValue("@end_work", StopPicker.Value);
  171.  
  172.                 //DateTime overflow = new DateTime(0000, 00, 00, 24, 00, 00);
  173.  
  174.                 //if ((StopPicker.Value - StartPicker.Value) < temp)
  175.                 //{
  176.  
  177.                 //}
  178.  
  179.                 TimeSpan TS = new TimeSpan(24, 0, 0);
  180.                 TimeSpan result = TS + (StopPicker.Value - StartPicker.Value);
  181.  
  182.                 //reportCommand.Parameters.AddWithValue("@intervall", result.ToString());
  183.                 string formatted = result.ToString(@"hh\:mm\:ss");
  184.                 reportCommand.Parameters.AddWithValue("@intervall", Convert.ToDateTime(formatted.ToString()).ToShortTimeString());
  185.  
  186.  
  187.  
  188.  
  189.                 //SqlParameter parCreate = reportCommand.Parameters.Add("@create", System.Data.SqlDbType.DateTime);
  190.                 //parCreate.Value = DateTime.Now;
  191.  
  192.                 //SqlParameter parModify = reportCommand.Parameters.Add("@modify", System.Data.SqlDbType.DateTime);
  193.                 //parModify.Value = DateTime.Now;
  194.  
  195.  
  196.  
  197.                 try
  198.                 {
  199.                     reportCommand.Parameters.AddWithValue("@worker_number", Int32.Parse(numberCombo.Text));
  200.                 }
  201.                 catch (Exception ex)
  202.                 {
  203.                     MessageBox.Show("A törzsszám hibás: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  204.                     return;
  205.                 }
  206.  
  207.  
  208.                 try
  209.                 {
  210.                     cnn.Open();
  211.                 }
  212.                 catch (Exception ex)
  213.                 {
  214.                     MessageBox.Show("Hiba az adatbázis megnyitása közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  215.                     return;
  216.                 }
  217.  
  218.  
  219.                 reportCommand.ExecuteNonQuery();
  220.  
  221.                 cnn.Close();
  222.  
  223.                 try
  224.                 {
  225.                     cnn.Open();
  226.                 }
  227.                 catch (Exception ex)
  228.                 {
  229.                     MessageBox.Show("Hiba az adatbázis megnyitása közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  230.                     return;
  231.                 }
  232.  
  233.                 lastID();
  234.  
  235.                 toolCommand.Parameters.Add("@tool", System.Data.SqlDbType.NVarChar);
  236.                 toolCommand.Parameters.AddWithValue("@report_iD", actualLastID);
  237.  
  238.                 if (toolList.Items.Count > 0)
  239.                 {
  240.                     foreach (var Tool in toolList.Items)
  241.                     {
  242.                         //toolCommand.Parameters.AddWithValue("@tool", Tool.ToString());
  243.  
  244.                         toolCommand.Parameters["@tool"].Value = Tool.ToString();
  245.                         toolCommand.ExecuteNonQuery();
  246.                     }
  247.                 }
  248.  
  249.                 cnn.Close();
  250.  
  251.  
  252.  
  253.  
  254.  
  255.  
  256.                 clearAll();
  257.  
  258.                 MessageBox.Show("A jelentés leadása sikeresen megtörtént!", "Information", MessageBoxButtons.OK, MessageBoxIcon.Information);
  259.  
  260.                 if (sorting)
  261.                 {
  262.                     sortByDate();
  263.                     fillToolCombo();
  264.                 }
  265.                 else
  266.                 {
  267.                     fillMachineCombo();
  268.                     fillToolCombo();
  269.                 }
  270.  
  271.  
  272.  
  273.  
  274.             }
  275.             else
  276.             {
  277.                 if (!checkMainData())
  278.                 {
  279.                     MessageBox.Show("A leadás csak a felső sor kitöltése után lehetséges!", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
  280.                 }
  281.                 else if (dataExist())
  282.                 {
  283.                     MessageBox.Show("Meglévő azonosítóval próbál adatokat menteni!", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
  284.                 }
  285.                 if (descriptionBox.TextLength > 15000)
  286.                 {
  287.                     MessageBox.Show("A hiba leírása nem haladhatja meg a 15000 karaktert.", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
  288.                 }
  289.                 if (solutionBox.TextLength > 15000)
  290.                 {
  291.                     MessageBox.Show("A megoldás nem haladhatja meg a 15000 karaktert.", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
  292.                 }
  293.  
  294.             }
  295.  
  296.         }
  297.  
  298.  
  299.  
  300.         private void clearAll()
  301.         {
  302.             machineCombo.ResetText();
  303.             errorCombo.ResetText();
  304.             numberCombo.ResetText();
  305.             toolCombo.ResetText();
  306.             descriptionBox.ResetText();
  307.             solutionBox.ResetText();
  308.             toolList.Items.Clear();
  309.         }
  310.  
  311.         private bool checkMainData()
  312.         {
  313.             return (string.IsNullOrEmpty(machineCombo.Text) ||
  314.                 string.IsNullOrEmpty(errorCombo.Text) ||
  315.                 string.IsNullOrEmpty(numberCombo.Text) ||
  316.                 string.IsNullOrWhiteSpace(machineCombo.Text) ||
  317.                 string.IsNullOrWhiteSpace(errorCombo.Text) ||
  318.                 string.IsNullOrWhiteSpace(numberCombo.Text))
  319.                 ? false : true;
  320.         }
  321.  
  322.  
  323.  
  324.         private void addToolButton_Click(object sender, EventArgs e)
  325.         {
  326.             if (!toolList.Items.Contains(toolCombo.Text))
  327.             {
  328.                 if (!string.IsNullOrWhiteSpace(toolCombo.Text))
  329.                 {
  330.  
  331.                     toolList.Items.Add(toolCombo.Text);
  332.  
  333.  
  334.                 }
  335.  
  336.             }
  337.  
  338.             toolCombo.ResetText();
  339.  
  340.  
  341.         }
  342.  
  343.         private void delToolButton_Click(object sender, EventArgs e)
  344.         {
  345.  
  346.             if (toolList.SelectedItem == null)
  347.             {
  348.                 if (toolList.Items.Count > 0)
  349.                 {
  350.                     toolList.Items.RemoveAt(toolList.Items.Count - 1);
  351.                 }
  352.             }
  353.             else
  354.             {
  355.                 toolList.Items.Remove(toolList.SelectedItem);
  356.             }
  357.  
  358.  
  359.  
  360.         }
  361.  
  362.         private void fillErrorCombo()
  363.         {
  364.             errorCombo.Items.Clear();
  365.  
  366.             cnn = new SqlConnection(connectionString);
  367.  
  368.             AutoCompleteStringCollection data = new AutoCompleteStringCollection();
  369.  
  370.  
  371.             try
  372.             {
  373.                 cnn.Open();
  374.             }
  375.             catch (Exception ex)
  376.             {
  377.                 MessageBox.Show("Hiba az adatbázis megnyitása közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  378.                 return;
  379.             }
  380.  
  381.             SqlDataReader dr;
  382.  
  383.  
  384.  
  385.             try
  386.             {
  387.  
  388.  
  389.                 string sortQuery;
  390.                 SqlCommand cmd;
  391.  
  392.                 if (sorting)
  393.                 {
  394.                     sortQuery = "SELECT DISTINCT Error_Short, Machine, Create_Record, Modify_Record FROM Report_tbl WHERE Machine = @machine AND Modify_Record BETWEEN @start_date AND @end_date";
  395.  
  396.                     cmd = new SqlCommand(sortQuery, cnn);
  397.  
  398.                     cmd.Parameters.AddWithValue("@machine", machineCombo.Text);
  399.                     cmd.Parameters.AddWithValue("@start_date", monthCalendar1.SelectionRange.Start);
  400.                     cmd.Parameters.AddWithValue("@end_date", monthCalendar1.SelectionRange.End.AddDays(1));
  401.  
  402.                 }
  403.                 else
  404.                 {
  405.                     sortQuery = "SELECT DISTINCT Error_Short, Machine, Create_Record, Modify_Record FROM Report_tbl WHERE Machine = @machine";
  406.  
  407.                     cmd = new SqlCommand(sortQuery, cnn);
  408.  
  409.                     cmd.Parameters.AddWithValue("@machine", machineCombo.Text);
  410.  
  411.                 }
  412.  
  413.                 dr = cmd.ExecuteReader();
  414.  
  415.                 while (dr.Read())
  416.                 {
  417.  
  418.                     string getStringFromDR = dr.GetString(0);
  419.  
  420.                     if (!errorCombo.Items.Contains(getStringFromDR))
  421.                     {
  422.                         errorCombo.Items.Add(getStringFromDR);
  423.                         errorCombo.AutoCompleteCustomSource = data;
  424.                     }
  425.  
  426.                 }
  427.  
  428.                 dr.Close();
  429.  
  430.             }
  431.             catch (Exception ex)
  432.             {
  433.                 MessageBox.Show("425Hiba a lekérdezés közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  434.             }
  435.             cnn.Close();
  436.  
  437.  
  438.         }
  439.  
  440.  
  441.         private void fillWorkerCombo()
  442.         {
  443.  
  444.             numberCombo.Items.Clear();
  445.  
  446.             cnn = new SqlConnection(connectionString);
  447.  
  448.  
  449.             using (cnn)
  450.             {
  451.  
  452.                 AutoCompleteStringCollection data = new AutoCompleteStringCollection();
  453.  
  454.  
  455.                 try
  456.                 {
  457.                     cnn.Open();
  458.                 }
  459.                 catch (Exception ex)
  460.                 {
  461.                     MessageBox.Show("Hiba az adatbázis megnyitása közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  462.                     return;
  463.                 }
  464.  
  465.                 SqlDataReader dr;
  466.  
  467.                 try
  468.                 {
  469.  
  470.  
  471.  
  472.                     string sortQuery;
  473.                     SqlCommand cmd;
  474.  
  475.                     if (sorting)
  476.                     {
  477.                         sortQuery = "SELECT Worker_Number, Error_Short, Machine, Create_Record, Modify_Record FROM Report_tbl WHERE Machine = @machine AND Error_Short = @errorshort AND Modify_Record BETWEEN @start_date AND @end_date";
  478.  
  479.                         cmd = new SqlCommand(sortQuery, cnn);
  480.  
  481.                         cmd.Parameters.AddWithValue("@machine", machineCombo.Text);
  482.                         cmd.Parameters.AddWithValue("@errorshort", errorCombo.Text);
  483.                         cmd.Parameters.AddWithValue("@start_date", monthCalendar1.SelectionRange.Start);
  484.                         cmd.Parameters.AddWithValue("@end_date", monthCalendar1.SelectionRange.End.AddDays(1));
  485.  
  486.                     }
  487.                     else
  488.                     {
  489.                         sortQuery = "SELECT Worker_Number, Error_Short, Machine, Create_Record, Modify_Record FROM Report_tbl WHERE Machine = @machine AND Error_Short = @errorshort";
  490.  
  491.                         cmd = new SqlCommand(sortQuery, cnn);
  492.  
  493.                         cmd.Parameters.AddWithValue("@machine", machineCombo.Text);
  494.                         cmd.Parameters.AddWithValue("@errorshort", errorCombo.Text);
  495.  
  496.                     }
  497.  
  498.  
  499.  
  500.                     //------------------------------------------------------------------------------------------------------------------------------
  501.  
  502.  
  503.                     dr = cmd.ExecuteReader();
  504.  
  505.                     int workerNumber = 0;
  506.  
  507.  
  508.  
  509.                     while (dr.HasRows)
  510.                     {
  511.                         while (dr.Read())
  512.                         {
  513.                             int getIntFromDR = dr.GetInt32(0);
  514.  
  515.                             if (!numberCombo.Items.Contains(getIntFromDR))
  516.                             {
  517.                                 workerNumber = getIntFromDR;
  518.                                 numberCombo.Text = workerNumber.ToString();
  519.                                 numberCombo.Items.Add(workerNumber.ToString());
  520.                                 numberCombo.AutoCompleteCustomSource = data;
  521.  
  522.  
  523.                             }
  524.                         }
  525.                         dr.NextResult();
  526.                     }
  527.                     dr.Close();
  528.                 }
  529.                 catch (Exception ex)
  530.                 {
  531.                     MessageBox.Show("521Hiba a lekérdezés közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  532.                 }
  533.                 cnn.Close();
  534.             }
  535.          
  536.         }
  537.  
  538.  
  539.  
  540.  
  541.         private void fillMachineCombo()
  542.         {
  543.  
  544.             machineCombo.Items.Clear();
  545.  
  546.             cnn = new SqlConnection(connectionString);
  547.             AutoCompleteStringCollection data = new AutoCompleteStringCollection();
  548.  
  549.  
  550.             try
  551.             {
  552.                 cnn.Open();
  553.             }
  554.             catch (Exception ex)
  555.             {
  556.                 MessageBox.Show("Hiba az adatbázis megnyitása közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  557.                 return;
  558.             }
  559.  
  560.             SqlDataReader dr;
  561.  
  562.             try
  563.             {
  564.                 SqlCommand cmd = new SqlCommand("SELECT DISTINCT Machine FROM Report_tbl", cnn);
  565.                 dr = cmd.ExecuteReader();
  566.  
  567.                 while (dr.Read())
  568.                 {
  569.                     string getStringFromDR = dr.GetString(0);
  570.  
  571.                     if (!machineCombo.Items.Contains(getStringFromDR))
  572.                     {
  573.                         machineCombo.Items.Add(getStringFromDR);
  574.                         machineCombo.AutoCompleteCustomSource = data;
  575.                     }
  576.  
  577.  
  578.                 }
  579.  
  580.                 dr.Close();
  581.  
  582.             }
  583.             catch (Exception ex)
  584.             {
  585.                 MessageBox.Show("575Hiba a lekérdezés közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  586.             }
  587.             cnn.Close();
  588.  
  589.  
  590.  
  591.  
  592.         }
  593.  
  594.         private void fillToolCombo()
  595.         {
  596.  
  597.             toolCombo.Items.Clear();
  598.  
  599.             cnn = new SqlConnection(connectionString);
  600.             AutoCompleteStringCollection data = new AutoCompleteStringCollection();
  601.  
  602.  
  603.             try
  604.             {
  605.                 cnn.Open();
  606.             }
  607.             catch (Exception ex)
  608.             {
  609.                 MessageBox.Show("Hiba az adatbázis megnyitása közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  610.                 return;
  611.             }
  612.  
  613.             SqlDataReader dr;
  614.  
  615.             try
  616.             {
  617.                 SqlCommand cmd = new SqlCommand("SELECT DISTINCT Tool FROM Tool_tbl", cnn);
  618.                 dr = cmd.ExecuteReader();
  619.  
  620.                 while (dr.Read())
  621.                 {
  622.  
  623.                     toolCombo.Items.Add(dr.GetString(0));
  624.                     toolCombo.AutoCompleteCustomSource = data;
  625.                 }
  626.  
  627.                 dr.Close();
  628.  
  629.             }
  630.             catch (Exception ex)
  631.             {
  632.                 MessageBox.Show("622Hiba a lekérdezés közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  633.             }
  634.             cnn.Close();
  635.  
  636.  
  637.  
  638.  
  639.         }
  640.  
  641.  
  642.  
  643.         private void eReport_Form_Load(object sender, EventArgs e)
  644.         {
  645.  
  646.         }
  647.  
  648.         private void groupBox1_Enter(object sender, EventArgs e)
  649.         {
  650.  
  651.         }
  652.  
  653.         private void clearExceptMachine()
  654.         {
  655.  
  656.             errorCombo.ResetText();
  657.             numberCombo.ResetText();
  658.             descriptionBox.ResetText();
  659.             solutionBox.ResetText();
  660.             toolCombo.ResetText();
  661.             toolList.Items.Clear();
  662.  
  663.  
  664.         }
  665.  
  666.         private void sortByMachine(object sender, EventArgs e)
  667.         {
  668.  
  669.             if (machineCombo.Text.Length > 50)
  670.             {
  671.                 MessageBox.Show("A gép neve nem állhat több, mint 50 karakterből!", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
  672.                 machineCombo.ResetText();
  673.             }
  674.             else
  675.             {
  676.                 clearExceptMachine();
  677.  
  678.                 fillErrorCombo();
  679.                 if (checkMainData())
  680.                 {
  681.                     getOthers();
  682.                 }
  683.             }
  684.  
  685.  
  686.  
  687.         }
  688.  
  689.         private void sortByError(object sender, EventArgs e)
  690.         {
  691.             if (errorCombo.Text.Length > 50)
  692.             {
  693.                 MessageBox.Show("A hiba rövid leirása nem haladhatja meg az 50 karaktert!", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
  694.                 errorCombo.ResetText();
  695.             }
  696.             else
  697.             {
  698.  
  699.                 fillWorkerCombo();
  700.                 if (checkMainData())
  701.                 {
  702.                     getOthers();
  703.                 }
  704.             }
  705.         }
  706.  
  707.         private void workerTextChanged(object sender, EventArgs e)
  708.         {
  709.  
  710.             try
  711.             {
  712.                 if (!string.IsNullOrEmpty(numberCombo.Text))
  713.                 {
  714.                     Int32.Parse(numberCombo.Text);
  715.                 }
  716.  
  717.                 if (checkMainData())
  718.                 {
  719.                     getOthers();
  720.                 }
  721.  
  722.             }
  723.             catch (Exception ex)
  724.             {
  725.                 MessageBox.Show("A törzsszám hibás: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  726.                 numberCombo.ResetText();
  727.                 return;
  728.             }
  729.  
  730.  
  731.  
  732.         }
  733.  
  734.  
  735.         private void getOthers()
  736.         {
  737.  
  738.  
  739.             int reportID = 0;
  740.  
  741.             cnn = new SqlConnection(connectionString);
  742.  
  743.             try
  744.             {
  745.                 cnn.Open();
  746.             }
  747.             catch (Exception ex)
  748.             {
  749.                 MessageBox.Show("Hiba az adatbázis megnyitása közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  750.                 return;
  751.             }
  752.  
  753.             SqlDataReader dr;
  754.             SqlDataReader drTool;
  755.  
  756.             try
  757.             {
  758.  
  759.                 string sortQuery;
  760.                 SqlCommand cmd;
  761.  
  762.                 if (sorting)
  763.                 {
  764.  
  765.                     sortQuery = "SELECT ID, Machine, Error_Short, Worker_Number, Report, Solution, Create_Record, Modify_Record FROM Report_tbl " +
  766.                     "WHERE Machine = @machine AND Error_Short = @error_short AND Worker_Number = @worker_number AND Modify_Record BETWEEN @start_date AND @end_date";
  767.  
  768.                     cmd = new SqlCommand(sortQuery, cnn);
  769.  
  770.                     cmd.Parameters.AddWithValue("@machine", machineCombo.Text);
  771.                     cmd.Parameters.AddWithValue("@error_short", errorCombo.Text);
  772.                     cmd.Parameters.AddWithValue("@worker_number", numberCombo.Text);
  773.                     cmd.Parameters.AddWithValue("@start_date", monthCalendar1.SelectionRange.Start);
  774.                     cmd.Parameters.AddWithValue("@end_date", monthCalendar1.SelectionRange.End.AddDays(1));
  775.  
  776.                 }
  777.                 else
  778.                 {
  779.  
  780.                     sortQuery = "SELECT ID, Machine, Error_Short, Worker_Number, Report, Solution, Create_Record, Modify_Record, Start_Work, End_Work FROM Report_tbl " +
  781.                     "WHERE Machine = @machine AND Error_Short = @error_short AND Worker_Number = @worker_number";
  782.  
  783.                     cmd = new SqlCommand(sortQuery, cnn);
  784.  
  785.                     cmd.Parameters.AddWithValue("@machine", machineCombo.Text);
  786.                     cmd.Parameters.AddWithValue("@error_short", errorCombo.Text);
  787.                     cmd.Parameters.AddWithValue("@worker_number", numberCombo.Text);
  788.  
  789.                 }
  790.  
  791.                 dr = cmd.ExecuteReader();
  792.  
  793.                 while (dr.Read())
  794.                 {
  795.                     reportID = dr.GetInt32(0);
  796.                     descriptionBox.Text = dr.GetString(4);
  797.                     solutionBox.Text = dr.GetString(5);
  798.                     StartPicker.Value = dr.GetDateTime(8);
  799.                     StopPicker.Value = dr.GetDateTime(9);
  800.  
  801.                 }
  802.  
  803.                 globalReportID = reportID;
  804.  
  805.                 dr.Close();
  806.  
  807.                 string sortQueryTool = "SELECT ID, Tool, Report_ID FROM Tool_tbl " +
  808.                 "WHERE Report_ID = @reportid";
  809.  
  810.                 SqlCommand cmdTool = new SqlCommand(sortQueryTool, cnn);
  811.  
  812.                 cmdTool.Parameters.AddWithValue("@reportid", reportID);
  813.  
  814.                 drTool = cmdTool.ExecuteReader();
  815.  
  816.                 if (numberCombo.Items.Contains(numberCombo.Text))
  817.                 {
  818.                     toolList.Items.Clear();
  819.                 }
  820.  
  821.  
  822.                 while (drTool.Read())
  823.                 {
  824.                     string actualTool = drTool.GetString(1);
  825.  
  826.                     if (!toolList.Items.Contains(actualTool))
  827.                     {
  828.                         toolList.Items.Add(actualTool);
  829.                     }
  830.                 }
  831.  
  832.                 drTool.Close();
  833.  
  834.             }
  835.             catch (Exception ex)
  836.             {
  837.                 MessageBox.Show("827Hiba a lekérdezés közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  838.             }
  839.             cnn.Close();
  840.  
  841.         }
  842.  
  843.         private bool dataExist()
  844.         {
  845.  
  846.             cnn = new SqlConnection(connectionString);
  847.  
  848.             try
  849.             {
  850.                 cnn.Open();
  851.             }
  852.             catch (Exception ex)
  853.             {
  854.                 MessageBox.Show("Hiba az adatbázis megnyitása közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  855.             }
  856.  
  857.             SqlDataReader dr;
  858.  
  859.             try
  860.             {
  861.  
  862.                 string sortQuery = "SELECT COUNT(*) FROM Report_tbl " +
  863.                     "WHERE Machine = @machine AND Error_Short = @error_short AND Worker_Number = @worker_number AND Intervall = @intervall";
  864.  
  865.                 SqlCommand cmd = new SqlCommand(sortQuery, cnn);
  866.  
  867.                 TimeSpan TS = new TimeSpan(24, 0, 0);
  868.                 TimeSpan result = TS + (StopPicker.Value - StartPicker.Value);
  869.  
  870.                 cmd.Parameters.AddWithValue("@machine", machineCombo.Text);
  871.                 cmd.Parameters.AddWithValue("@error_short", errorCombo.Text);
  872.                 cmd.Parameters.AddWithValue("@worker_number", numberCombo.Text);
  873.  
  874.                 MessageBox.Show("867 " + result.GetType());
  875.  
  876.                 string formatted = result.ToString(@"hh\:mm\:ss");
  877.                 cmd.Parameters.AddWithValue("@intervall", Convert.ToDateTime(formatted.ToString()).ToShortTimeString());
  878.                 //cmd.Parameters.AddWithValue("@intervall", (result).ToString());
  879.                 MessageBox.Show("871");
  880.  
  881.                 dr = cmd.ExecuteReader();
  882.  
  883.                 MessageBox.Show("875");
  884.  
  885.                 while (dr.Read())
  886.                 {
  887.                     if (dr.GetInt32(0) > 0)
  888.                     {
  889.  
  890.                         MessageBox.Show("882");
  891.                         cnn.Close();
  892.                         return true;
  893.                     }
  894.                 }
  895.  
  896.                 MessageBox.Show("889");
  897.  
  898.                 dr.Close();
  899.  
  900.             }
  901.             catch (Exception ex)
  902.             {
  903.                 MessageBox.Show("878Hiba a lekérdezés közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  904.             }
  905.             cnn.Close();
  906.  
  907.             return false;
  908.  
  909.         }
  910.  
  911.         private void modifyReport_Click(object sender, EventArgs e)
  912.         {
  913.  
  914.  
  915.             if (checkMainData() && dataExist() && descriptionBox.TextLength <= 15000 && solutionBox.TextLength <= 15000)
  916.             {
  917.                 if (checkPassword())
  918.                 {
  919.                     cnn = new SqlConnection(connectionString);
  920.  
  921.                     string delToolsQuery = "DELETE FROM Tool_tbl WHERE Report_ID = @report_id";
  922.  
  923.                     string modQuery = "UPDATE Report_tbl SET Report = @report, Solution = @solution, Modify_Record = @modify_record WHERE ID = @report_id";
  924.  
  925.                     string modToolQuery = "INSERT INTO Tool_tbl (Tool, Report_ID) VALUES (@tool, @report_id)";
  926.  
  927.                     SqlCommand modReportCommand = new SqlCommand(modQuery, cnn);
  928.                     SqlCommand modToolCommand = new SqlCommand(modToolQuery, cnn);
  929.                     SqlCommand delToolsCommand = new SqlCommand(delToolsQuery, cnn);
  930.  
  931.  
  932.  
  933.                     delToolsCommand.Parameters.AddWithValue("@report_iD", globalReportID);
  934.  
  935.                     try
  936.                     {
  937.                         cnn.Open();
  938.                     }
  939.                     catch (Exception ex)
  940.                     {
  941.                         MessageBox.Show("Hiba az adatbázis megnyitása közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  942.                         return;
  943.                     }
  944.  
  945.  
  946.                     try
  947.                     {
  948.                         delToolsCommand.ExecuteNonQuery();
  949.                     }
  950.                     catch (Exception ex)
  951.                     {
  952.                         MessageBox.Show("Hiba az adatbázis frissítése közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  953.                         return;
  954.                     }
  955.  
  956.  
  957.                     cnn.Close();
  958.  
  959.  
  960.                     modReportCommand.Parameters.AddWithValue("@report", descriptionBox.Text);
  961.                     modReportCommand.Parameters.AddWithValue("@solution", solutionBox.Text);
  962.                     modReportCommand.Parameters.AddWithValue("@report_id", globalReportID);
  963.                     modReportCommand.Parameters.AddWithValue("@modify_record", DateTime.Now);
  964.  
  965.  
  966.  
  967.                     try
  968.                     {
  969.                         cnn.Open();
  970.                     }
  971.                     catch (Exception ex)
  972.                     {
  973.                         MessageBox.Show("Hiba az adatbázis megnyitása közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  974.                         return;
  975.                     }
  976.  
  977.  
  978.                     try
  979.                     {
  980.                         modReportCommand.ExecuteNonQuery();
  981.                     }
  982.                     catch (Exception ex)
  983.                     {
  984.                         MessageBox.Show("Hiba az adatbázis frissítése közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  985.                         return;
  986.                     }
  987.  
  988.  
  989.  
  990.                     cnn.Close();
  991.  
  992.                     try
  993.                     {
  994.                         cnn.Open();
  995.                     }
  996.                     catch (Exception ex)
  997.                     {
  998.                         MessageBox.Show("Hiba az adatbázis megnyitása közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  999.                         return;
  1000.                     }
  1001.  
  1002.                     modToolCommand.Parameters.Add("@tool", System.Data.SqlDbType.NVarChar);
  1003.                     modToolCommand.Parameters.AddWithValue("@report_id", globalReportID);
  1004.  
  1005.                     if (toolList.Items.Count > 0)
  1006.                     {
  1007.                         foreach (var Tool in toolList.Items)
  1008.                         {
  1009.                             //toolCommand.Parameters.AddWithValue("@tool", Tool.ToString());
  1010.  
  1011.                             modToolCommand.Parameters["@tool"].Value = Tool.ToString();
  1012.                             modToolCommand.ExecuteNonQuery();
  1013.                         }
  1014.                     }
  1015.  
  1016.                     cnn.Close();
  1017.  
  1018.                     clearAll();
  1019.  
  1020.                     MessageBox.Show("A jelentés módosítása sikeresen megtörtént!", "Information", MessageBoxButtons.OK, MessageBoxIcon.Information);
  1021.  
  1022.                     if (sorting)
  1023.                     {
  1024.                         sortByDate();
  1025.                     }
  1026.                     else
  1027.                     {
  1028.                         fillMachineCombo();
  1029.                     }
  1030.                     //sortByDate();
  1031.  
  1032.                 }
  1033.             }
  1034.             else
  1035.             {
  1036.                 if (!checkMainData())
  1037.                 {
  1038.                     MessageBox.Show("A módosítás csak a felső sor kitöltése után lehetséges, kivéve az időket!", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
  1039.                 }
  1040.                 else if (!dataExist())
  1041.                 {
  1042.                     MessageBox.Show("Nem létező azonosítóval próbál adatokat módosítani!", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
  1043.                 }
  1044.                 if (descriptionBox.TextLength > 15000)
  1045.                 {
  1046.                     MessageBox.Show("A hiba leírása nem haladhatja meg a 15000 karaktert.", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
  1047.                 }
  1048.                 if (solutionBox.TextLength > 15000)
  1049.                 {
  1050.                     MessageBox.Show("A megoldás nem haladhatja meg a 15000 karaktert.", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
  1051.                 }
  1052.  
  1053.             }
  1054.         }
  1055.  
  1056.         private void delete_Click(object sender, EventArgs e)
  1057.         {
  1058.  
  1059.             if (checkMainData() && dataExist())
  1060.             {
  1061.                 if (checkPassword())
  1062.                 {
  1063.                     cnn = new SqlConnection(connectionString);
  1064.  
  1065.                     string delToolsQuery = "DELETE FROM Tool_tbl WHERE Report_ID = @report_id";
  1066.  
  1067.                     string delReportQuery = "DELETE FROM Report_tbl WHERE ID = @report_id";
  1068.  
  1069.  
  1070.                     SqlCommand delReportCommand = new SqlCommand(delReportQuery, cnn);
  1071.                     SqlCommand delToolsCommand = new SqlCommand(delToolsQuery, cnn);
  1072.  
  1073.                     delReportCommand.Parameters.AddWithValue("@report_id", globalReportID);
  1074.                     delToolsCommand.Parameters.AddWithValue("@report_id", globalReportID);
  1075.  
  1076.                     try
  1077.                     {
  1078.                         cnn.Open();
  1079.                     }
  1080.                     catch (Exception ex)
  1081.                     {
  1082.                         MessageBox.Show("Hiba az adatbázis megnyitása közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  1083.                         return;
  1084.                     }
  1085.  
  1086.  
  1087.                     try
  1088.                     {
  1089.                         delReportCommand.ExecuteNonQuery();
  1090.                         delToolsCommand.ExecuteNonQuery();
  1091.                     }
  1092.                     catch (Exception ex)
  1093.                     {
  1094.                         MessageBox.Show("Hiba a jelentés törlése közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  1095.                         return;
  1096.                     }
  1097.  
  1098.  
  1099.                     cnn.Close();
  1100.  
  1101.                     clearAll();
  1102.  
  1103.                     MessageBox.Show("A jelentés törlése sikeresen megtörtént!", "Information", MessageBoxButtons.OK, MessageBoxIcon.Information);
  1104.  
  1105.                     if (sorting)
  1106.                     {
  1107.                         sortByDate();
  1108.                     }
  1109.                     else
  1110.                     {
  1111.                         fillMachineCombo();
  1112.                     }
  1113.  
  1114.                 }
  1115.             }
  1116.             else
  1117.             {
  1118.                 if (!checkMainData())
  1119.                 {
  1120.                     MessageBox.Show("A törlés csak a felső sor kitöltése után lehetséges, kivéve az időket!", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
  1121.                 }
  1122.                 else if (!dataExist())
  1123.                 {
  1124.                     MessageBox.Show("Nem létező azonosítóval próbál adatokat törölni!", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
  1125.                 }
  1126.  
  1127.             }
  1128.  
  1129.         }
  1130.  
  1131.         public static DialogResult InputBox(string title, string promptText, ref string value)
  1132.         {
  1133.             Form form = new Form();
  1134.             Label label = new Label();
  1135.             TextBox textBox = new TextBox();
  1136.             Button buttonOk = new Button();
  1137.             Button buttonCancel = new Button();
  1138.  
  1139.             form.Text = title;
  1140.             label.Text = promptText;
  1141.             textBox.Text = value;
  1142.  
  1143.             buttonOk.Text = "OK";
  1144.             buttonCancel.Text = "Cancel";
  1145.             buttonOk.DialogResult = DialogResult.OK;
  1146.             buttonCancel.DialogResult = DialogResult.Cancel;
  1147.  
  1148.             label.SetBounds(9, 20, 372, 13);
  1149.             textBox.SetBounds(12, 36, 372, 20);
  1150.             buttonOk.SetBounds(228, 72, 75, 23);
  1151.             buttonCancel.SetBounds(309, 72, 75, 23);
  1152.  
  1153.             label.AutoSize = true;
  1154.             textBox.Anchor = textBox.Anchor | AnchorStyles.Right;
  1155.             buttonOk.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
  1156.             buttonCancel.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
  1157.  
  1158.             form.ClientSize = new Size(396, 107);
  1159.             form.Controls.AddRange(new Control[] { label, textBox, buttonOk, buttonCancel });
  1160.             form.ClientSize = new Size(Math.Max(300, label.Right + 10), form.ClientSize.Height);
  1161.             form.FormBorderStyle = FormBorderStyle.FixedDialog;
  1162.             form.StartPosition = FormStartPosition.CenterScreen;
  1163.             form.MinimizeBox = false;
  1164.             form.MaximizeBox = false;
  1165.             form.AcceptButton = buttonOk;
  1166.             form.CancelButton = buttonCancel;
  1167.  
  1168.             DialogResult dialogResult = form.ShowDialog();
  1169.             value = textBox.Text;
  1170.             return dialogResult;
  1171.         }
  1172.  
  1173.         public bool checkPassword()
  1174.         {
  1175.             string pw = "tmktorus";
  1176.             string value = "";
  1177.             if (InputBox("Jelszó", "Adja meg a jelszót:", ref value) == DialogResult.OK)
  1178.             {
  1179.                 if (string.Equals(pw, value))
  1180.                 {
  1181.                     return true;
  1182.                 }
  1183.                 else
  1184.                 {
  1185.                     MessageBox.Show("Hibás jelszó!", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
  1186.                 }
  1187.             }
  1188.             return false;
  1189.         }
  1190.  
  1191.         private void dateSelected(object sender, DateRangeEventArgs e)
  1192.         {
  1193.  
  1194.             //string message = "Akarja alkalmazni a kiválasztott dátum szerinti szűrést?";
  1195.             //string title = "Szűrés";
  1196.             //MessageBoxButtons buttons = MessageBoxButtons.YesNo;
  1197.             //DialogResult result = MessageBox.Show(message, title, buttons);
  1198.             //if (result == DialogResult.Yes)
  1199.             //{
  1200.             //    pictureBox1.BackColor = Color.Green;
  1201.             //    sortByDate();
  1202.             //}
  1203.             //else
  1204.             //{
  1205.  
  1206.             //    pictureBox1.BackColor = Color.Transparent;
  1207.             //    fillMachineCombo();
  1208.             //}
  1209.  
  1210.         }
  1211.  
  1212.         private void dateChanged(object sender, DateRangeEventArgs e)
  1213.         {
  1214.             if (sorting)
  1215.             {
  1216.                 sortByDate();
  1217.             }
  1218.  
  1219.         }
  1220.  
  1221.         private void sortByDate()
  1222.         {
  1223.  
  1224.             using (SqlConnection cnn = new SqlConnection(connectionString))
  1225.             {
  1226.  
  1227.                 SqlCommand cmd;
  1228.                 //cnn = new SqlConnection(connectionString);
  1229.  
  1230.                 try
  1231.                 {
  1232.                     cnn.Open();
  1233.  
  1234.  
  1235.  
  1236.                 }
  1237.                 catch (Exception ex)
  1238.                 {
  1239.                     MessageBox.Show("Hiba az adatbázis megnyitása közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  1240.                     return;
  1241.                 }
  1242.  
  1243.                 machineCombo.Items.Clear();
  1244.                 AutoCompleteStringCollection data = new AutoCompleteStringCollection();
  1245.  
  1246.                 SqlDataReader dr;
  1247.  
  1248.                 try
  1249.                 {
  1250.                     clearAll();
  1251.  
  1252.  
  1253.                     //if (monthCalendar1.SelectionRange.Start.ToString("MM:dd:yyyy") != DateTime.Now.ToString("MM:dd:yyyy") || monthCalendar1.SelectionRange.End.ToString("MM:dd:yyyy") != DateTime.Now.ToString("MM:dd:yyyy"))
  1254.                     //{
  1255.  
  1256.                     cmd = new SqlCommand("SELECT DISTINCT Machine FROM Report_tbl WHERE Modify_Record BETWEEN @start_date AND @end_date", cnn);
  1257.  
  1258.                     cmd.Parameters.AddWithValue("@start_date", Convert.ToDateTime(monthCalendar1.SelectionRange.Start.ToString()));
  1259.                     cmd.Parameters.AddWithValue("@end_date", Convert.ToDateTime(monthCalendar1.SelectionRange.End.ToString()).AddDays(1));
  1260.  
  1261.  
  1262.                     dr = cmd.ExecuteReader();
  1263.  
  1264.  
  1265.  
  1266.  
  1267.                     while (dr.Read())
  1268.                     {
  1269.                         machineCombo.Items.Add(dr.GetString(0));
  1270.                         machineCombo.AutoCompleteCustomSource = data;
  1271.                     }
  1272.  
  1273.                     dr.Close();
  1274.  
  1275.  
  1276.                     cnn.Close();
  1277.  
  1278.  
  1279.                     //}
  1280.                     //else
  1281.                     //{
  1282.                     //    cnn.Close();
  1283.  
  1284.  
  1285.                     //    fillMachineCombo();
  1286.                     //    fillToolCombo();
  1287.  
  1288.                     //}
  1289.  
  1290.                 }
  1291.                 catch (Exception ex)
  1292.                 {
  1293.                     MessageBox.Show("1268Hiba a lekérdezés közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  1294.                 }
  1295.             }
  1296.  
  1297.         }
  1298.  
  1299.         private void sortButton_Click(object sender, EventArgs e)
  1300.         {
  1301.  
  1302.             clearAll();
  1303.  
  1304.  
  1305.  
  1306.  
  1307.  
  1308.             if (sorting)
  1309.             {
  1310.  
  1311.                 sorting = false;
  1312.                 fillMachineCombo();
  1313.                 sortButton.BackColor = Color.White;
  1314.  
  1315.             }
  1316.             else
  1317.             {
  1318.                 //machineCombo.Items.Clear();
  1319.  
  1320.                 sorting = true;
  1321.                 sortByDate();
  1322.                 sortButton.BackColor = Color.GreenYellow;
  1323.  
  1324.                 MessageBox.Show("A félreértések elkerülése érdekében kapcsolja ki a szűrőt a keresés után!", "Information", MessageBoxButtons.OK, MessageBoxIcon.Information);
  1325.             }
  1326.  
  1327.         }
  1328.  
  1329.         private void button6_Click(object sender, EventArgs e)
  1330.         {
  1331.             clearAll();
  1332.             button3.Enabled = true;
  1333.             button3.BackColor = Color.White;
  1334.         }
  1335.  
  1336.         private void make_Dir(string path)
  1337.         {
  1338.  
  1339.             //string path = Environment.GetFolderPath(Environment.SpecialFolder.Desktop) + "\\Reports" + "\\" + DateTime.Now.ToString("yyyy") + "\\" + DateTime.Now.ToString("yyyy_MM") + "\\" + DateTime.Now.ToString("yyyy_MM_dd");
  1340.  
  1341.             try
  1342.             {
  1343.                 // Determine whether the directory exists.
  1344.                 if (Directory.Exists(path))
  1345.                 {
  1346.                     return;
  1347.                 }
  1348.  
  1349.                 // Try to create the directory.
  1350.                 DirectoryInfo di = Directory.CreateDirectory(path);
  1351.  
  1352.  
  1353.             }
  1354.             catch (Exception ex)
  1355.             {
  1356.                 MessageBox.Show("Hiba a mappaszerkezet létrehozása közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  1357.             }
  1358.  
  1359.             //System.Threading.Thread.Sleep(500);
  1360.  
  1361.         }
  1362.  
  1363.         private void Export_CSV()
  1364.         {
  1365.             SqlConnection conn;
  1366.             SqlDataReader dr;
  1367.             string fileName;
  1368.  
  1369.             try
  1370.             {
  1371.                 conn = new SqlConnection(connectionString);
  1372.                 conn.Open();
  1373.             }
  1374.             catch (Exception ex)
  1375.             {
  1376.                 MessageBox.Show("Hiba az adatbázis megnyitása közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  1377.                 return;
  1378.             }
  1379.  
  1380.             try
  1381.             {
  1382.                 SqlCommand cmd = new SqlCommand("SELECT * FROM Report_tbl WHERE Modify_Record > @NOW", conn); // "SELECT * FROM Report_tbl WHERE Modify_Record > @NOW"
  1383.  
  1384.                 cmd.Parameters.AddWithValue("@NOW", DateTime.Now.AddHours(-8));
  1385.  
  1386.                 dr = cmd.ExecuteReader();
  1387.  
  1388.             }
  1389.             catch (Exception ex)
  1390.             {
  1391.                 MessageBox.Show("1364Hiba a lekérdezés közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  1392.                 return;
  1393.             }
  1394.  
  1395.             try
  1396.             {
  1397.                 make_Dir("C:\\Users\\Public\\Desktop\\Reports" + "\\" + DateTime.Now.ToString("yyyy") + "\\" + DateTime.Now.ToString("yyyy_MM") + "\\" + DateTime.Now.ToString("yyyy_MM_dd"));
  1398.                 //make_Dir("C:\\Users\\Public\\Desktop\\Reports\\" + DateTime.Now.ToString("yyyy") + "\\" + DateTime.Now.ToString("yyyy_MM") + "\\" + DateTime.Now.ToString("yyyy_MM_dd"));
  1399.  
  1400.                 fileName = "C:\\Users\\Public\\Desktop\\Reports" + "\\" + DateTime.Now.ToString("yyyy") + "\\" + DateTime.Now.ToString("yyyy_MM") + "\\" + DateTime.Now.ToString("yyyy_MM_dd") + "\\" + "eReport_" + DateTime.Now.ToString("yyyy_MM_dd_HH_mm") + ".csv";
  1401.                 //fileName = "C:\\Users\\Public\\Desktop\\Reports\\" + DateTime.Now.ToString("yyyy") + "\\" + DateTime.Now.ToString("yyyy_MM") + "\\" + DateTime.Now.ToString("yyyy_MM_dd") + "\\eReport_" + DateTime.Now.ToString("yyyy_MM_dd_HH_mm") + ".csv";
  1402.  
  1403.                 //MessageBox.Show(Environment.GetFolderPath(Environment.SpecialFolder.Desktop));
  1404.             }
  1405.             catch (Exception ex)
  1406.             {
  1407.                 MessageBox.Show("Hiba az elérési út megadása közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  1408.                 return;
  1409.             }
  1410.  
  1411.             try
  1412.             {
  1413.                 FileInfo oldFile = new FileInfo(fileName);
  1414.                 if (oldFile.Exists)
  1415.                 {
  1416.                     File.SetAttributes(oldFile.FullName, FileAttributes.Normal);
  1417.  
  1418.                     oldFile.Delete();
  1419.  
  1420.                 }
  1421.             }
  1422.             catch (Exception ex)
  1423.             {
  1424.                 MessageBox.Show("Hiba a régebbi report fájl törlése közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  1425.                 return;
  1426.             }
  1427.  
  1428.             using (System.IO.StreamWriter fs = new System.IO.StreamWriter(new FileStream(fileName, FileMode.Create), Encoding.UTF8))
  1429.             {
  1430.                 // Loop through the fields and add headers
  1431.                 for (int i = 0; i < dr.FieldCount; i++)
  1432.                 {
  1433.                     string name = dr.GetName(i);
  1434.                     if (name == "ID") name = " ID ";
  1435.                     if (name.Contains(","))
  1436.                         name = "\"" + name + "\"";
  1437.  
  1438.                     fs.Write(name + ";");
  1439.                 }
  1440.                 fs.WriteLine();
  1441.  
  1442.                 // Loop through the rows and output the data
  1443.                 while (dr.Read())
  1444.                 {
  1445.                     for (int i = 0; i < dr.FieldCount; i++)
  1446.                     {
  1447.                         string value;
  1448.  
  1449.                         if (i == 6 || i == 7)
  1450.                         {
  1451.                             value = Convert.ToDateTime(dr[i]).ToString("yyyy.MM.dd HH:mm");
  1452.                         }
  1453.                         else
  1454.                         {
  1455.                             value = dr[i].ToString();
  1456.                         }
  1457.  
  1458.                         if (value.Contains(","))
  1459.                             value = "\"" + value + "\"";
  1460.  
  1461.                         fs.Write(value + ";");
  1462.                     }
  1463.                     fs.WriteLine();
  1464.                 }
  1465.  
  1466.  
  1467.  
  1468.                 fs.Close();
  1469.             }
  1470.  
  1471.             conn.Close();
  1472.         }
  1473.  
  1474.         private void ExportAll_CSV()
  1475.         {
  1476.             SqlConnection conn;
  1477.             SqlDataReader dr;
  1478.             string fileName;
  1479.  
  1480.             try
  1481.             {
  1482.                 conn = new SqlConnection(connectionString);
  1483.                 conn.Open();
  1484.             }
  1485.             catch (Exception ex)
  1486.             {
  1487.                 MessageBox.Show("Hiba az adatbázis megnyitása közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  1488.                 return;
  1489.             }
  1490.  
  1491.             try
  1492.             {
  1493.                 SqlCommand cmd = new SqlCommand("SELECT * FROM Report_tbl", conn); // "SELECT * FROM Report_tbl WHERE Modify_Record > @NOW"
  1494.  
  1495.                 cmd.Parameters.AddWithValue("@NOW", DateTime.Now.AddHours(-8));
  1496.  
  1497.                 dr = cmd.ExecuteReader();
  1498.  
  1499.             }
  1500.             catch (Exception ex)
  1501.             {
  1502.                 MessageBox.Show("1475Hiba a lekérdezés közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  1503.                 return;
  1504.             }
  1505.  
  1506.             try
  1507.             {
  1508.                 make_Dir("C:\\Users\\Public\\Desktop\\Reports\\All");
  1509.                 //make_Dir("C:\\Users\\Public\\Desktop\\Reports\\" + DateTime.Now.ToString("yyyy") + "\\" + DateTime.Now.ToString("yyyy_MM") + "\\" + DateTime.Now.ToString("yyyy_MM_dd"));
  1510.  
  1511.                 fileName = "C:\\Users\\Public\\Desktop\\Reports\\All\\eReport_All_" + DateTime.Now.ToString("yyyy_MM_dd") + ".csv";
  1512.                 //fileName = "C:\\Users\\Public\\Desktop\\Reports\\" + DateTime.Now.ToString("yyyy") + "\\" + DateTime.Now.ToString("yyyy_MM") + "\\" + DateTime.Now.ToString("yyyy_MM_dd") + "\\eReport_" + DateTime.Now.ToString("yyyy_MM_dd_HH_mm") + ".csv";
  1513.  
  1514.                 //MessageBox.Show(Environment.GetFolderPath(Environment.SpecialFolder.Desktop));
  1515.             }
  1516.             catch (Exception ex)
  1517.             {
  1518.                 MessageBox.Show("Hiba az elérési út megadása közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  1519.                 return;
  1520.             }
  1521.  
  1522.             try
  1523.             {
  1524.                 FileInfo oldFile = new FileInfo(fileName);
  1525.                 if (oldFile.Exists)
  1526.                 {
  1527.                     File.SetAttributes(oldFile.FullName, FileAttributes.Normal);
  1528.  
  1529.                     oldFile.Delete();
  1530.  
  1531.                 }
  1532.             }
  1533.             catch (Exception ex)
  1534.             {
  1535.                 MessageBox.Show("Hiba a régebbi report fájl törlése közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  1536.                 return;
  1537.             }
  1538.  
  1539.             using (System.IO.StreamWriter fs = new System.IO.StreamWriter(new FileStream(fileName, FileMode.Create), Encoding.UTF8))
  1540.             {
  1541.                 // Loop through the fields and add headers
  1542.                 for (int i = 0; i < dr.FieldCount; i++)
  1543.                 {
  1544.                     string name = dr.GetName(i);
  1545.                     if (name == "ID") name = " ID ";
  1546.                     if (name.Contains(","))
  1547.                         name = "\"" + name + "\"";
  1548.  
  1549.                     fs.Write(name + ";");
  1550.                 }
  1551.                 fs.WriteLine();
  1552.  
  1553.                 // Loop through the rows and output the data
  1554.                 while (dr.Read())
  1555.                 {
  1556.                     for (int i = 0; i < dr.FieldCount; i++)
  1557.                     {
  1558.                         string value;
  1559.  
  1560.                         if (6 <= i && i <= 9)
  1561.                         {
  1562.                             value = Convert.ToDateTime(dr[i]).ToString("yyyy.MM.dd HH:mm");
  1563.                         }
  1564.                         //else if(i == 10)
  1565.                         //{
  1566.                         //    value = Convert.ToDateTime(dr[i]).AddTicks(-(Convert.ToDateTime(dr[i]).Ticks % TimeSpan.TicksPerSecond)).ToString();
  1567.                         //}
  1568.                         else
  1569.                         {
  1570.                             value = dr[i].ToString();
  1571.                         }
  1572.  
  1573.                         if (value.Contains(","))
  1574.                             value = "\"" + value + "\"";
  1575.  
  1576.                         fs.Write(value + ";");
  1577.                     }
  1578.                     fs.WriteLine();
  1579.                 }
  1580.  
  1581.  
  1582.  
  1583.                 fs.Close();
  1584.             }
  1585.  
  1586.             conn.Close();
  1587.         }
  1588.  
  1589.         /*private void BackupSQL()
  1590.         {
  1591.  
  1592.  
  1593.             make_Dir("C:\\Users\\Public\\Desktop\\SQLBackup");
  1594.            
  1595.  
  1596.  
  1597.             cnn = new SqlConnection(connectionString);
  1598.  
  1599.             //string backupQuery = @"BACKUP DATABASE eReport TO DISK = N'D:\Programs\data.bak'";
  1600.             string backupQuery = @"BACKUP DATABASE eReport TO DISK = N'C:\Users\Public\Desktop\SQLBackup\data.bak'";
  1601.  
  1602.  
  1603.  
  1604.  
  1605.             SqlCommand backupCommand = new SqlCommand(backupQuery, cnn);
  1606.  
  1607.  
  1608.             try
  1609.             {
  1610.                 File.Delete(@"C:\Users\Public\Desktop\SQLBackup\data.bak");
  1611.             }
  1612.             catch (Exception ex)
  1613.             {
  1614.                 MessageBox.Show("Hiba az elavult backup fájl törlése közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  1615.                 return;
  1616.             }
  1617.  
  1618.             try
  1619.             {
  1620.                 cnn.Open();
  1621.             }
  1622.             catch (Exception ex)
  1623.             {
  1624.                 MessageBox.Show("Hiba az adatbázis megnyitása közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  1625.                 return;
  1626.             }
  1627.  
  1628.  
  1629.             try
  1630.             {
  1631.                 backupCommand.ExecuteNonQuery();
  1632.  
  1633.             }
  1634.             catch (Exception ex)
  1635.             {
  1636.                 MessageBox.Show("Hiba a backup fájl létrehozása közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  1637.                 return;
  1638.             }
  1639.  
  1640.             cnn.Close();
  1641.  
  1642.         }*/
  1643.  
  1644.         private void RegisterInStartup()
  1645.         {
  1646.  
  1647.  
  1648.             try
  1649.             {
  1650.                 RegistryKey registryKey = Registry.CurrentUser.OpenSubKey
  1651.                     ("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", true);
  1652.  
  1653.                 registryKey.SetValue("eReport", Path.GetDirectoryName(Application.ExecutablePath) + "\\eReport.exe");
  1654.                 //registryKey.DeleteValue("eReport", false);
  1655.             }
  1656.             catch (Exception ex)
  1657.             {
  1658.                 MessageBox.Show("A program rendszerrel induló alkalmazásként történő regisztrálása közben hiba lépett fel: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  1659.                 return;
  1660.             }
  1661.  
  1662.  
  1663.  
  1664.         }
  1665.  
  1666.         protected override void OnFormClosing(FormClosingEventArgs e)
  1667.         {
  1668.             base.OnFormClosing(e);
  1669.  
  1670.             if (e.CloseReason == CloseReason.WindowsShutDown) return;
  1671.  
  1672.             // Confirm user wants to close
  1673.             switch (MessageBox.Show(this, "Bezárás után a program nem exportálja ki a reportokat!" + "\n" + "Biztosan kilép?", "Bezárás", MessageBoxButtons.YesNo, MessageBoxIcon.Question))
  1674.             {
  1675.                 case DialogResult.No:
  1676.                     e.Cancel = true;
  1677.                     break;
  1678.                 default:
  1679.                     break;
  1680.             }
  1681.         }
  1682.  
  1683.  
  1684.  
  1685.         private void toolCombo_KeyDown(object sender, KeyEventArgs e)
  1686.         {
  1687.             if (toolCombo.Text.Length > 49) // allow max 20 chars
  1688.             {
  1689.                 if (!e.KeyCode.Equals(Keys.Back)) // allow removing chars
  1690.                 {
  1691.                     e.Handled = true; // block any additional key press if there is more than allowed max
  1692.                     //System.Media.SystemSounds.Beep.Play(); // optional: beep to let user know he is out of space :)
  1693.                 }
  1694.             }
  1695.             else
  1696.             {
  1697.                 ;
  1698.                 if (e.KeyCode.Equals(Keys.Enter)) {;
  1699.  
  1700.                     if (!toolList.Items.Contains(toolCombo.Text))
  1701.                     {
  1702.                         if (!string.IsNullOrWhiteSpace(toolCombo.Text))
  1703.                         {
  1704.  
  1705.                             toolList.Items.Add(toolCombo.Text);
  1706.  
  1707.                         }
  1708.  
  1709.                     }
  1710.  
  1711.                     toolCombo.ResetText();
  1712.                 }
  1713.             }
  1714.         }
  1715.  
  1716.         private void toolComboTextChanged(object sender, EventArgs e)
  1717.         {
  1718.             if (toolCombo.Text.Length > 50)
  1719.             {
  1720.                 MessageBox.Show("Nem adhat meg 50-nél több karaktert egy szerszám nevének!", "Figyelmeztetés", MessageBoxButtons.OK, MessageBoxIcon.Warning);
  1721.                 toolCombo.ResetText();
  1722.             }
  1723.         }
  1724.  
  1725.  
  1726.  
  1727.  
  1728.         private void button8_Click(object sender, EventArgs e)
  1729.         {
  1730.  
  1731.  
  1732.  
  1733.  
  1734.             try
  1735.             {
  1736.                 ExportAll_CSV();
  1737.                 //BackupSQL();
  1738.                 MessageBox.Show("Az adatbázis exportálása sikeresen lezajlott.", "Információ", MessageBoxButtons.OK, MessageBoxIcon.Information);
  1739.             }
  1740.             catch (Exception ex)
  1741.             {
  1742.                 MessageBox.Show("Hiba lépett fel az adatbázis exportálása közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  1743.                 return;
  1744.             }
  1745.  
  1746.  
  1747.  
  1748.  
  1749.         }
  1750.  
  1751.         private void dateTimePicker1_ValueChanged(object sender, EventArgs e)
  1752.         {
  1753.  
  1754.         }
  1755.  
  1756.         private void toolCombo_SelectedIndexChanged(object sender, EventArgs e)
  1757.         {
  1758.  
  1759.         }
  1760.  
  1761.  
  1762.         private int lastWorkerCount(int workerNumber)
  1763.         {
  1764.  
  1765.             cnn = new SqlConnection(connectionString);
  1766.             //AutoCompleteStringCollection data = new AutoCompleteStringCollection();
  1767.  
  1768.             try
  1769.             {
  1770.                 cnn.Open();
  1771.             }
  1772.             catch (Exception ex)
  1773.             {
  1774.                 MessageBox.Show("Hiba az adatbázis megnyitása közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  1775.  
  1776.             }
  1777.  
  1778.             SqlDataReader dr;
  1779.  
  1780.  
  1781.             try
  1782.             {
  1783.                 string sortQuery;
  1784.                 SqlCommand cmd;
  1785.  
  1786.                 if (sorting)
  1787.                 {
  1788.                     sortQuery = "SELECT Worker_Number_Count FROM Report_tbl WHERE Machine = @machine AND Error_Short = @errorshort AND Worker_Number = " + workerNumber + " AND Modify_Record BETWEEN @start_date AND @end_date";
  1789.  
  1790.                     cmd = new SqlCommand(sortQuery, cnn);
  1791.  
  1792.                     cmd.Parameters.AddWithValue("@machine", machineCombo.Text);
  1793.                     cmd.Parameters.AddWithValue("@errorshort", errorCombo.Text);
  1794.                     cmd.Parameters.AddWithValue("@start_date", monthCalendar1.SelectionRange.Start);
  1795.                     cmd.Parameters.AddWithValue("@end_date", monthCalendar1.SelectionRange.End.AddDays(1));
  1796.  
  1797.                 }
  1798.                 else
  1799.                 {
  1800.                     sortQuery = "SELECT Worker_Number_Count FROM Report_tbl WHERE Machine = @machine AND Error_Short = @errorshort AND Worker_Number = " + workerNumber + " ";
  1801.  
  1802.                     cmd = new SqlCommand(sortQuery, cnn);
  1803.  
  1804.                     cmd.Parameters.AddWithValue("@machine", machineCombo.Text);
  1805.                     cmd.Parameters.AddWithValue("@errorshort", errorCombo.Text);
  1806.  
  1807.                 }
  1808.  
  1809.                 dr = cmd.ExecuteReader();
  1810.                 MessageBox.Show("1804");
  1811.  
  1812.  
  1813.  
  1814.  
  1815.  
  1816.                 while (dr.Read())
  1817.                 {
  1818.                     actualWorkerCount = dr.GetInt32(0);
  1819.                 }
  1820.                 MessageBox.Show("1810");
  1821.                 dr.Close();
  1822.  
  1823.             }
  1824.             catch (Exception ex)
  1825.             {
  1826.                 MessageBox.Show("Hiba a lekérdezés közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  1827.             }
  1828.             cnn.Close();
  1829.  
  1830.             return actualWorkerCount;
  1831.         }
  1832.  
  1833.  
  1834.         private void button7_Click(object sender, EventArgs e)
  1835.         {
  1836.            
  1837.  
  1838.             if (checkMainData() && !dataExist() && descriptionBox.TextLength <= 15000 && solutionBox.TextLength <= 15000)
  1839.             {
  1840.  
  1841.                 int workerNumberCount;
  1842.  
  1843.                 cnn = new SqlConnection(connectionString);
  1844.  
  1845.                 try
  1846.                 {
  1847.                     cnn.Open();
  1848.                 }
  1849.                 catch (Exception ex)
  1850.                 {
  1851.                     MessageBox.Show("Hiba az adatbázis megnyitása közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  1852.                     return;
  1853.                 }
  1854.  
  1855.                 string reportQuery = "INSERT INTO Report_tbl (Machine, Error_Short, Worker_Number, Report, Solution, Create_Record, Modify_Record, Start_Work, End_Work, Intervall, Worker_Number_Count) " +
  1856.                     "VALUES (@machine, @error_short, @worker_number, @report, @solution, @create_record, @modify_record, @startwork, @endwork, @intervall, @workernumbercount)";
  1857.  
  1858.                 string toolQuery = "INSERT INTO Tool_tbl (Tool, Report_ID) " +
  1859.                     "VALUES (@tool, @report_id)";
  1860.  
  1861.                 SqlCommand reportCommand = new SqlCommand(reportQuery, cnn);
  1862.                 SqlCommand toolCommand = new SqlCommand(toolQuery, cnn);
  1863.  
  1864.                 reportCommand.Parameters.AddWithValue("@machine", machineCombo.Text);
  1865.                 reportCommand.Parameters.AddWithValue("@error_short", errorCombo.Text);
  1866.  
  1867.                 reportCommand.Parameters.AddWithValue("@report", descriptionBox.Text);
  1868.                 reportCommand.Parameters.AddWithValue("@solution", solutionBox.Text);
  1869.  
  1870.                 reportCommand.Parameters.AddWithValue("@create_record", DateTime.Now);
  1871.                 reportCommand.Parameters.AddWithValue("@modify_record", DateTime.Now);
  1872.  
  1873.                 reportCommand.Parameters.AddWithValue("@startwork", StartPicker.Value);
  1874.                 reportCommand.Parameters.AddWithValue("@endwork", StopPicker.Value);
  1875.  
  1876.                 //SqlParameter parCreate = reportCommand.Parameters.Add("@create", System.Data.SqlDbType.DateTime);
  1877.                 //parCreate.Value = DateTime.Now;
  1878.  
  1879.                 //SqlParameter parModify = reportCommand.Parameters.Add("@modify", System.Data.SqlDbType.DateTime);
  1880.                 //parModify.Value = DateTime.Now;
  1881.  
  1882.                 TimeSpan TS = new TimeSpan(24, 0, 0);
  1883.                 TimeSpan result = TS + (StopPicker.Value - StartPicker.Value);
  1884.  
  1885.                 reportCommand.Parameters.AddWithValue("@worker_number", numberCombo.Text);
  1886.                 //reportCommand.Parameters.AddWithValue("@intervall", (result).ToString());
  1887.  
  1888.                 string formatted = result.ToString(@"hh\:mm\:ss");
  1889.                 reportCommand.Parameters.AddWithValue("@intervall", Convert.ToDateTime(formatted.ToString()).ToShortTimeString());
  1890.  
  1891.                 try
  1892.                 {
  1893.                     MessageBox.Show("1882");
  1894.                     workerNumberCount = lastWorkerCount(Int32.Parse(numberCombo.Text)) + 1;
  1895.                     MessageBox.Show("1884");
  1896.                     reportCommand.Parameters.AddWithValue("@workernumbercount", workerNumberCount);
  1897.  
  1898.                     MessageBox.Show("1886");
  1899.  
  1900.                 }
  1901.                 catch (Exception ex)
  1902.                 {
  1903.                     MessageBox.Show("A törzsszám hibás: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  1904.                     return;
  1905.                 }
  1906.  
  1907.  
  1908.  
  1909.  
  1910.  
  1911.                 reportCommand.ExecuteNonQuery();
  1912.  
  1913.                 cnn.Close();
  1914.  
  1915.                 try
  1916.                 {
  1917.                     cnn.Open();
  1918.                 }
  1919.                 catch (Exception ex)
  1920.                 {
  1921.                     MessageBox.Show("Hiba az adatbázis megnyitása közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  1922.                     return;
  1923.                 }
  1924.  
  1925.                 lastID();
  1926.  
  1927.                 toolCommand.Parameters.Add("@tool", System.Data.SqlDbType.NVarChar);
  1928.                 toolCommand.Parameters.AddWithValue("@report_iD", actualLastID);
  1929.                 MessageBox.Show("1912");
  1930.                 if (toolList.Items.Count > 0)
  1931.                 {
  1932.                     foreach (var Tool in toolList.Items)
  1933.                     {
  1934.                         //toolCommand.Parameters.AddWithValue("@tool", Tool.ToString());
  1935.  
  1936.                         toolCommand.Parameters["@tool"].Value = Tool.ToString();
  1937.                         toolCommand.ExecuteNonQuery();
  1938.                     }
  1939.                 }
  1940.                 MessageBox.Show("1923");
  1941.                 cnn.Close();
  1942.  
  1943.  
  1944.  
  1945.                 fillWorkerCombo();
  1946.  
  1947.  
  1948.                 button3.Enabled = false;
  1949.                 button3.BackColor = Color.LightGray;
  1950.  
  1951.                 MessageBox.Show("A törzsám és a lejelentés is sikeresen megtörtént, a leadás gomb feloldásához kattintson a tisztítás gombra.", "Information", MessageBoxButtons.OK, MessageBoxIcon.Information);
  1952.  
  1953.                 if (sorting)
  1954.                 {
  1955.                     sortByDate();
  1956.                     fillToolCombo();
  1957.                 }
  1958.                 else
  1959.                 {
  1960.                     fillMachineCombo();
  1961.                     fillToolCombo();
  1962.                 }
  1963.  
  1964.  
  1965.  
  1966.  
  1967.             }
  1968.             else
  1969.             {
  1970.                 if (!checkMainData())
  1971.                 {
  1972.                     MessageBox.Show("A leadás csak a felső sor kitöltése után lehetséges!", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
  1973.                 }
  1974.                 else if (dataExist())
  1975.                 {
  1976.                     MessageBox.Show("Meglévő azonosítóval próbál adatokat menteni!", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
  1977.                 }
  1978.                 if (descriptionBox.TextLength > 15000)
  1979.                 {
  1980.                     MessageBox.Show("A hiba leírása nem haladhatja meg a 15000 karaktert.", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
  1981.                 }
  1982.                 if (solutionBox.TextLength > 15000)
  1983.                 {
  1984.                     MessageBox.Show("A megoldás nem haladhatja meg a 15000 karaktert.", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
  1985.                 }
  1986.  
  1987.             }
  1988.  
  1989.         }
  1990.  
  1991.         private void pictureBox1_Click(object sender, EventArgs e)
  1992.         {
  1993.  
  1994.         }
  1995.  
  1996.  
  1997.         private void numberCombo_SelectedIndexChanged(object sender, EventArgs e)
  1998.         {
  1999.  
  2000.             pickSets();
  2001.  
  2002.         }
  2003.  
  2004.         private void pickSets()
  2005.         {
  2006.                 cnn = new SqlConnection(connectionString);
  2007.  
  2008.                 using (cnn)
  2009.                 {
  2010.  
  2011.                     try
  2012.                     {
  2013.                         cnn.Open();
  2014.                     }
  2015.                     catch (Exception ex)
  2016.                     {
  2017.                         MessageBox.Show("Hiba az adatbázis megnyitása közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  2018.                         return;
  2019.                     }
  2020.  
  2021.                     SqlDataReader dr;
  2022.  
  2023.  
  2024.  
  2025.                     try
  2026.                     {
  2027.  
  2028.                         string sortQuery;
  2029.                         SqlCommand cmd;
  2030.  
  2031.                         if (sorting)
  2032.                         {
  2033.                             sortQuery = "SELECT Start_Work, End_Work FROM Report_tbl WHERE Machine = @machinee AND Error_Short = @errorshortt AND Worker_Number = " + workerNumber + " AND Start_Work = " + StartPicker + " AND End_Work = " + StopPicker + " AND Modify_Record BETWEEN @start_datee AND @end_datee";
  2034.  
  2035.                             cmd = new SqlCommand(sortQuery, cnn);
  2036.  
  2037.                             cmd.Parameters.AddWithValue("@machinee", machineCombo.Text);
  2038.  
  2039.                             cmd.Parameters.AddWithValue("@errorshortt", errorCombo.Text);
  2040.  
  2041.                             cmd.Parameters.AddWithValue("@start_datee", monthCalendar1.SelectionRange.Start);
  2042.  
  2043.                             cmd.Parameters.AddWithValue("@end_datee", monthCalendar1.SelectionRange.End.AddDays(1));
  2044.  
  2045.                         }
  2046.                         else
  2047.                         {
  2048.                             sortQuery = "SELECT Start_Work, End_Work FROM Report_tbl WHERE Machine = @machinee AND Error_Short = @errorshortt AND Worker_Number = " + workerNumber + " AND Start_Work = " + StartPicker + " AND End_Work = " + StopPicker + " ";
  2049.  
  2050.                             cmd = new SqlCommand(sortQuery, cnn);
  2051.  
  2052.  
  2053.                             cmd.Parameters.AddWithValue("@machinee", machineCombo.Text);
  2054.  
  2055.                             cmd.Parameters.AddWithValue("@errorshortt", errorCombo.Text);
  2056.  
  2057.  
  2058.                         }
  2059.  
  2060.                         dr = cmd.ExecuteReader();
  2061.  
  2062.                         workerNumber = 0;
  2063.  
  2064.  
  2065.  
  2066.                         while (dr.HasRows)
  2067.                         {
  2068.                             while (dr.Read())
  2069.                             {
  2070.                                 StartPicker.Value = dr.GetDateTime(0);
  2071.                                 StopPicker.Value = dr.GetDateTime(1);
  2072.                             }
  2073.                             dr.NextResult();
  2074.                         }
  2075.                         dr.Close();
  2076.  
  2077.  
  2078.  
  2079.                     }
  2080.                     catch (Exception ex)
  2081.                     {
  2082.                         MessageBox.Show("Hiba a lekérdezés közben: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  2083.                     }
  2084.                     cnn.Close();
  2085.  
  2086.                 }
  2087.         }
  2088.  
  2089.         private void pictureBox2_Click(object sender, EventArgs e)
  2090.         {
  2091.  
  2092.         }
  2093.  
  2094.         private void numberCombo_Enter(object sender, EventArgs e)
  2095.         {
  2096.             //pictureBox2.Visible = false;
  2097.         }
  2098.  
  2099.         private void numberCombo_Leave(object sender, EventArgs e)
  2100.         {
  2101.             //pictureBox2.Visible = true;
  2102.         }
  2103.     }
  2104. }
  2105.  
  2106.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement