TsPageControl page change animation Root › Technical support › Troubleshooting This topic has 1 reply, 2 voices, and was last updated 9 years, 11 months ago by Support. Viewing 1 post (of 1 total) Author Posts May 28, 2015 at 10:45 am #53451 SupportKeymaster Hello This animation is not needed in most cases when developer changes ActivePage by code. But you can make this animation manualy, look this code: Code: uses sConst, sVCLUtils; procedure TForm3.sButton1Click(Sender: TObject); begin sVCLUtils.PrepareForAnimation(sPageControl1, atcFade); sPageControl1.ActivePageIndex := 1; sVCLUtils.AnimShowControl(sPageControl1, 300, 255, atcFade); end; Author Posts Viewing 1 post (of 1 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In Root › Technical support › Troubleshooting