I am trying to program the progress bar to load in a full bar instead of blocks.
i have change the style to continuous but still it load in blocks.
I am trying to program the progress bar to load according to what value i type in the textbox , i have set its maximum value to be 2000
This is the code i have written... See if the way i program got error which causes it to load in blocks..:
void txtDataReceived_TextChanged(object sender, EventArgs e)
int Counter = Convert.ToInt32(txtDataReceived.Text);
this.progressBar1.Maximum = 2000;
this.progressBar1.Minimum = 0;
this.progressBar1.Value = Convert.ToInt32(Counter);
}
{
private