Beispiel #1
0
 private void button1_Click(object sender, EventArgs e)
 {
     if (textBox1.Text.Length > 0)
     {
         try
         {
             dbsql.AddNewTypeQuntity(textBox1.Text);
             Refersh1();
             textBox1.Focus();
         }
         catch (Exception ex) { MessageBox.Show(ex.Message); }
     }
 }