Misc fixes

This commit is contained in:
Kurt
2015-11-21 19:27:50 -08:00
parent 19ff462fff
commit 62eddb6aec
2 changed files with 3 additions and 3 deletions

View File

@@ -2727,8 +2727,8 @@ private void setBoxNames()
catch
{
CB_BoxSelect.Items.Clear();
for (int i = 1; i < 31; i++)
CB_BoxSelect.Items.Add("Box " + i);
for (int i = 0; i < 31; i++)
CB_BoxSelect.Items.Add("Box " + (i+1));
}
CB_BoxSelect.SelectedIndex = selectedbox; // restore selected box
}

View File

@@ -209,7 +209,7 @@ private void clickSet(object sender, EventArgs e)
// Refresh database view.
L_Count.Text = String.Format(Counter, Results.Count);
FillPKXBoxes(SCR_Box.Value);
Util.Alert("Added Pokémon from tabs to database", "Please refresh the search to ensure it shows up; it may be at the bottom of the results.");
Util.Alert("Added Pokémon from tabs to database.", "Please refresh the search to ensure it shows up; it may be at the bottom of the results.");
}
private void populateComboBoxes()
{