I have a winforms application which makes calls to Application.DoEvents(). Now the app freezes around the time this method is called (no surprise).
However, this only happens on some machines. Is it fair to say that this would be due to machine itself or is it still down to the code/application.doevents()? In which case, it should be refactored to use backgroundworker.
Would this be a machine/environment issue or an oppurtunity to use backgroundworker?