Is there a good VCL Styles tutorial where we see how to dynamically (in run time) load/change the style ?
This should work with Delphi XE2 and up, since XE2 is the
A example (public procedure). Remember uses Vcl.Themes;
procedure TData.AllowSKIN( bSKIN:boolean ); var sSKIN:string; begin sSKIN := 'Aqua Light Slate'; if not bSKIN then sSKIN := 'Windows'; TStyleManager.TrySetStyle( sSKIN ); end;