I have a Delphi application with a couple of forms. For each form I used a TImage for a background, to give it a different look from the standard form look. The TImage is aligned to the client. The problem I have is that every time I click a button to open a new form, the form flickers. I do create the forms with the
frmSomeForm : TmfrSomeForm.create(self);
frmSomeForm.ShowModal;
frmSomeForm.Free;
I have tried to use the following code in the onCreate of the forms
DoubleBuffered := true;
but that does not seem to solve the problem, plus if I do use the dubbelbuffered then it makes my groupboxes that appear on my form to not be transparent. Can anyone please help.
I'm using Delphi XE2