public Form1() { InitializeComponent(); dbVape = DBVape.getDBVape(); menuStrip1.Visible = false; showAutorizPanel(); }
public static DBVape getDBVape() { if (dbVape == null) { dbVape = new DBVape(); } return(dbVape); }
public ListProducts(Panel panel) { InitializeComponent(); this.panel = panel; Dock = DockStyle.Fill; dBVape = DBVape.getDBVape(); createCategotyBox(); }
private void buttonPay_Click(object sender, EventArgs e) { if (DBVape.getDBVape().addOrder()) { MessageBox.Show("Заказ оформлен"); clearAll(); } else { MessageBox.Show("Произошла ошибка"); } }
// backPanel это панель которая будет отображаться при нажатии кнопки удалить или назад public AddProductPanel(Product product, Action disposeClick) { InitializeComponent(); dbVape = DBVape.getDBVape(); createCategotyBox(); create_correct_entry(); this.product = product; buttonAddProduct.Text = "Обновить"; buttonAddProduct.Click += new EventHandler(updateProductHandler); buttonAddProduct.Click -= buttonAddProduct_Click; this.disposeClick = disposeClick; showProduct(); }
public AddProductPanel() { InitializeComponent(); dbVape = DBVape.getDBVape(); createCategotyBox(); create_correct_entry(); deleteBtn.Visible = false; labelPlus.Visible = false; addQuantityTB.Visible = false; BackBnt.Visible = false; pictureBox.SizeMode = PictureBoxSizeMode.Zoom; pictureBox.InitialImage = new Bitmap(new FileStream(@"..\..\..\image\load_image.gif", FileMode.Open, FileAccess.Read)); pictureBox.Image = new Bitmap(new FileStream(@"..\..\..\image\error_image.jpg", FileMode.Open, FileAccess.Read)); }
private void btnAutoriz_click(object sender, EventArgs e) { DBVape dbVape = DBVape.getDBVape(); if (dbVape == null) { MessageBox.Show("Ошибка работы с БД"); return; } dbVape.getSaller(Login, Password); if (Seller.getSeller() != null) { this.Parent.Controls.Remove(this); method(); } else { MessageBox.Show("Пользователь не найден"); } }
public Form1() { InitializeComponent(); DBVape dBVape = new DBVape(); dBVape.openConnection(); DataTable tableCategory = new DataTable(); MySqlDataAdapter adapter = new MySqlDataAdapter(); MySqlCommand command = new MySqlCommand("SELECT * FROM `category`"); command.Connection = dBVape.GetConnection(); adapter.SelectCommand = command; adapter.Fill(tableCategory); dataGridView1.DataSource = tableCategory; dBVape.closeConnection(); }