Skip to content

Commit

Permalink
poprawka 2
Browse files Browse the repository at this point in the history
  • Loading branch information
KarolinaDrabowska committed Jun 11, 2013
1 parent 881690c commit 6fcc8cd
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
Binary file modified nowaWersja/MuseSort/MuseSort.v11.suo
Binary file not shown.
Binary file modified nowaWersja/MuseSort/MuseSort/BazaDanych/MyDatabase#1.sdf
Binary file not shown.
6 changes: 3 additions & 3 deletions nowaWersja/MuseSort/MuseSort/DodawanieSeriali.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@ private void zapisz_Click(object sender, EventArgs e)
String dataPremiery = dataPremieryTextBox.Text;
int numerSezonu = 0;
if (numerSezonuTextBox.Text != "")
Convert.ToInt32(numerSezonuTextBox.Text);
numerSezonu = Convert.ToInt32(numerSezonuTextBox.Text);
int numerOdcinka = 0;
if (numerOdcinkaTextBox.Text != "")
Convert.ToInt32(numerOdcinkaTextBox.Text);
numerOdcinka = Convert.ToInt32(numerOdcinkaTextBox.Text);
int ogladalnosc = 0;
if (ogladalnoscTextBox.Text != "")
Convert.ToInt32(ogladalnoscTextBox.Text);
ogladalnosc = Convert.ToInt32(ogladalnoscTextBox.Text);
Boolean czyOgl = watchCheckBox.Checked;

string connectionString = @"Data Source=|DataDirectory|\MyDatabase#1.sdf; Password = Projekt&4";
Expand Down
Binary file not shown.

0 comments on commit 6fcc8cd

Please sign in to comment.