Exemple #1
0
        public async void AddToDATA(string first, string second)
        {
            addpoly.Cancel.Enabled          = addpoly.AddPolys.Visible = addpoly.CLOSE.Enabled = false;
            addpoly.ProgressSpinner.Visible = true;
            bool resultOfChek = await CheckThisUser(first, second);

            if (resultOfChek)
            {
                addpoly.ProgressSpinner.Visible = false;
                addpoly.Cancel.Enabled          = addpoly.AddPolys.Visible = addpoly.CLOSE.Enabled = true;
                MessageBox.Show("Такой пользователь уже есть...");
                return;
            }
            DataUsers.Rows.Add();
            DataUsers.Rows[DataUsers.Rows.Count - 1].Cells[0].Value = first;
            DataUsers.Rows[DataUsers.Rows.Count - 1].Cells[1].Value = second;
            DataUsers.Rows[DataUsers.Rows.Count - 1].Cells[2].Value = 0;
            SelectAndScrollToUser(DataUsers.RowCount - 1);
            Books.Add(new List <DataGridViewRow>());
            DatesOfAddBooks.Add(new List <string>());
            if (DataUsers.RowCount == 1)
            {
                InfoLabelUserBookCount.Visible   = InfoLabelUserBookCountValue.Visible = true;
                InfoLabelUserBookCountValue.Text = DataUserInf.RowCount.ToString();
            }
            CountOfUsersTotal.Text = DataUsers.RowCount.ToString();
            addpoly.Close();
        } // это метод добавления пользователя или книги
Exemple #2
0
        public async void AddToDATA(string first, string second, string third, string fourth)
        {
            addpoly.Cancel.Enabled          = addpoly.AddPolys.Visible = addpoly.CLOSE.Enabled = false;
            addpoly.ProgressSpinner.Visible = true;
            bool resultOfChek = await CheckThisUser(first, second);

            if (resultOfChek)
            {
                addpoly.ProgressSpinner.Visible = false;
                addpoly.Cancel.Enabled          = addpoly.AddPolys.Visible = addpoly.CLOSE.Enabled = true;
                MessageBox.Show("Такая книга уже есть...");
                return;
            }
            int n = DataBooks.Rows.Add();

            DataBooks.Rows[n].Cells[0].Value = first;
            DataBooks.Rows[n].Cells[1].Value = second;
            DataBooks.Rows[n].Cells[2].Value = third;
            DataBooks.Rows[n].Cells[3].Value = fourth;
            SelectAndScrollToBook(DataBooks.RowCount - 1);
            Users.Add(new List <DataGridViewRow>());
            if (DataBooks.RowCount == 1)
            {
                InfoLabelBookUserCount.Visible   = InfoLabelBookUserCountValue.Visible = true;
                InfoLabelBookUserCountValue.Text = DataBooksInf.RowCount.ToString();
            }
            CountOfBooksTotal.Text = DataBooks.RowCount.ToString();
            addpoly.Close();
        } // это метод добавления пользователя или книги