Hey All,
Threading may not be the answer to this, but here's my current situation.
I have a form that I want updated about every 5 seconds. I couldn't figure out how to do this, so I just did a refresh on a button click on that form. However, in order to do this, I have to create an entire new instance of that form, close the old one, and then show the new one.
private void buttonRefresh_Click(object sender, System.EventArgs e)
{
Status stat = new Status(...);
this.Close();
stat.Show();
}
So while this works, there are probably better solutions, but i basically just want it to update every 5 seconds.
Thanks,
-Mario