Wingrid marked Cross if you are not using screen for sometime
As the above screen shot displayed..above...my all grid marked cross ...automatically ...any idea ..why this happens ..?
Hi,
The big red X in an control means that an exception occurred in that control's OnPaint method.
This can be caused by a bug in the control, but more often it's the result of improper use of multiple threads in an application which causes the control to get out of synch with it's data source.
Is your application using threading?
Hi Mike,
We have 6 grids in this form.We are loading some user controls(containing images,progress bar) etc to the grid cells.We are also loading some image boxes (created dynamically) to the cells.When the initial load happens everything is going smoothly.
We have an option in this form for refreshing the grids as per the time interval set by user.For that we are using a timer.The refresh process also is happening properly for a couple of times.After that ,during 5th or 6th refresh, we are getting this problem.Once this happens,the application hangs but the timer tick event is not stopping.
Do you have any suggetions or solutions for this X mark issue?