F
Folke
I'm doing a lengthy operation and would like to
update a textbox while working, but the tb gets updated
AFTER the operation is finished!
code:
foreach (PDEHeaderItem pi in _pdeHandler._pa)
{
txtInfile.Text += "X";
txtInfile.Invalidate();
txtInfile.Update();
...
update a textbox while working, but the tb gets updated
AFTER the operation is finished!
code:
foreach (PDEHeaderItem pi in _pdeHandler._pa)
{
txtInfile.Text += "X";
txtInfile.Invalidate();
txtInfile.Update();
...