Hello.
Mr. Serge showed me the awesome AnimEffects, and how they can be customized. It works perfectly, however, when I create a form like this:
Code:
Function ShowMyForm():Boolean;
Var
dlg : TMyForm;
Begin
Result := False;
dlg := TMyForm.Create(Application);
if dlg.ShowModal = mrOk then
Begin
End;
Result := True;
dlg.Release;
End;
Or anything similar, the FormShow effect is not shown – no effect it shown at all.
Yes, I have TsSkinProvider, but only on my Main Form. Could that be it?
Thanks!
EDIT: yes, that fixed it 😛