guys can anyone help me, I want to display an amount on a textbox when I debug my program.
For example I have textbox1, I want textbox1 to display the amount that I assigned to it which is 100,
but I cannot make it show up in the textbox1 when I run my program. what do you think is wrong with my code below:
private void fundsTextbox_TextChanged(object sender, EventArgs e)
{
Compute comp = new Compute();
comp.Funds = fundsTextbox.Text;
int fundsAmount = Convert.ToInt32(fundsTextbox.Text);
fundsAmount = 100;
fundsTextbox.Text = fundsAmount.ToString();
}