Esempio n. 1
0
        public void AddOnline(string id)
        {
            DateTime myDateTime       = DateTime.Now;
            string   sqlFormattedDate = myDateTime.ToString("yyyy-MM-dd HH:mm:ss.fff");

            _tableOnline.addRow(Int32.Parse(id), sqlFormattedDate);
        }
Esempio n. 2
0
        private void button2_Click(object sender, EventArgs e) //ADD ROW
        {
            if (isSelectedTableNumber == 1)
            {
                if (textBox1.Text != "" && textBox3.Text != "")
                {
                    _tableData.addRow(Convert.ToInt32(textBox1.Text), textBox2.Text, Convert.ToInt32(textBox3.Text), textBox4.Text, textBox5.Text, textBox6.Text);
                }
                else
                {
                    MessageBox.Show("Заполните все поля", "Не всё", MessageBoxButtons.OK, MessageBoxIcon.Information);
                }
            }

            if (isSelectedTableNumber == 2)
            {
                if (textBox1.Text != "")
                {
                    DateTime myDateTime        = DateTime.Now;
                    string   sqlFormattedDate2 = myDateTime.ToString("yyyy-MM-dd HH:mm:ss.fff");

                    _tableOnline.addRow(Convert.ToInt32(textBox1.Text), sqlFormattedDate2);
                }
                else
                {
                    MessageBox.Show("Заполните все поля", "Не всё", MessageBoxButtons.OK, MessageBoxIcon.Information);
                }
            }
        }