I have this code:
private void button2_Click(object sender, EventArgs e)
{
//add pgs selected to array, array needs to be global? combobox1 accCollection.Items.Add(value);
textbox18.text = "";
pgHolder[pgCount] = comboBox1.Text + ", "; // error here why?
pgCount++;
foreach(string Pg in pgHolder)
{
pgTemp = Pg;
pgHolder1 += pgTemp;
}
textBox18.Text = pgHolder1;
}
I've attempted a txtbox.text = ""; but this doesn't work. Am I missing something here? Is there a .clear or do I need to do something fancy?
As you can tell I'm trying to clear the text box each time I click the button.
!!UPDATE!! my string array is declared with default values of "0,0,0,0" ok it looks like it wasnt the textbox but my logic, heres what happens
Clicked, combo box = "50", displays "50,0,0,0" Clicked, combo box = 75 , displays "50,0,0,0,50,75,0,0"
i need it to display 50,75,0,0.