Board index » delphi » Hiding the flicker a change to mdi child makes
Hans Fandsen
![]() Delphi Developer |
Thu, 10 Jul 2003 04:08:31 GMT
Hiding the flicker a change to mdi child makes
I have a MDI application where I have drawn a picture on the background.
I have a MDI child that starts out as a normal form (formstate=fsNormal). How can I hide all this jumping around stuff and just have windows paint the I have tried locking the controls, but eventhough the form isn't painted it This is my lock control routine: procedure LockControlPaint(Cntrl : TWincontrol; BlnLockStatus : boolean); I call it with the following parameters from the main form: frmProject := TfrmProject.Create (Self); LockControlPaint (Self, True); frmProject.FormStyle := fsMDIChild; LockControlPaint (frmProject, False); Doesn't work :( HELP! :) Hans |