Facebook
From Insensitive Agouti, 3 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 131
  1.  private void button1_Click(object sender, EventArgs e)
  2.         {
  3.             string Nazwa = textBox3.Text;
  4.             string Cena = textBox2.Text;
  5.             string Wydawca = textBox1.Text;
  6.             Boolean CzyZapisało = false;
  7.             using (StreamReader sr = new StreamReader(@"‪‪C:\Users\andrz\OneDrive\Pulpit\1.txt", true))
  8.             {
  9.                 if (CzyZapisało)
  10.                 {
  11.                     MessageBox.Show("Dodano grę!", "Dodano", MessageBoxButtons.OK, MessageBoxIcon.Information);
  12.                     Form2 form2 = new Form2();
  13.                     form2.Show();
  14.                     this.Hide();
  15.                 }
  16.                 else
  17.                 {
  18.                     MessageBox.Show( "Coś się popsuło  ", "Bład", MessageBoxButtons.OK, MessageBoxIcon.Error);
  19.                 }
  20.  
  21.  
  22.