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.Inval idate();
txtInfile.Updat e();
...
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.Inval idate();
txtInfile.Updat e();
...
Comment