G
Guest
I have a Simple Windows Form which I placed a button and when the button is
pressed it proceses data into a database and I update the task bar for each
record.
The task bar would show processing 1 of 200 and so on...
The problem is if I click anyware on my form during this process it locks
and I cant do anything with that form.( my process keeps running but the form
stops updateing)
Now if I dont touch the form. its happy and my task bar updates ok.
How can I keep this from happening?
I was told to use a Thread but im not sure how to this.
Can I do someing like
Thread.Start();
My process runs...
Thread.stop();
Any Ideas or can I use something else?
pressed it proceses data into a database and I update the task bar for each
record.
The task bar would show processing 1 of 200 and so on...
The problem is if I click anyware on my form during this process it locks
and I cant do anything with that form.( my process keeps running but the form
stops updateing)
Now if I dont touch the form. its happy and my task bar updates ok.
How can I keep this from happening?
I was told to use a Thread but im not sure how to this.
Can I do someing like
Thread.Start();
My process runs...
Thread.stop();
Any Ideas or can I use something else?