MFC GUI without flickering

User is continuously entering some in GUI and it is doing some background processing and updating in GUI. How to do it without flickering the GUI using MFC?

Thanks,
Raja Gregory

Questions by Raja.gregory

Showing Answers 1 - 4 of 4 Answers

TedDog

  • Apr 24th, 2008
 

            this.SetStyle(ControlStyles.DoubleBuffer, true);
            this.SetStyle(ControlStyles.UserPaint, true);
            this.SetStyle(ControlStyles.AllPaintingInWmPaint, true);

santodip

  • Jan 27th, 2010
 

Don't let the form enabled untill it is fully loaded. Then if any kind of background processing is necessary, before submitting do it by using AJAX.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions