Tagged Questions

The new version of Rad Studio (XE2) include a feature called VCL Styles, this functionality allows you to apply a skin (theme) to any VCL Form application, for more info you can check the offical documentation VCL Styles Overview of Embarcadero.

learn more… | top users | synonyms

14
votes
2answers
399 views

How to disable VCL styles in Delphi

I am using the new VCL styles system in Delphi XE2. It works great, but I wish to disable it for a particular form that has a number of images on it (a splash/about form). Problem is I can't seem to ...
7
votes
3answers
360 views

how to make a transparent form when a VCL Style is enabled?

I'm using the following code to make a form transparent, but when the application has a VCL style enabled the form is paint with the background color of the VCL style instead of be transparent. uses ...
5
votes
1answer
480 views

Is there any Delphi XE2 styles gallery?

In XE2 there is a new function : 'styles', for VCL(.vsf) and Firemonkey (.styles), and some are provided in C:\Program Files\Embarcadero\RAD Studio\9.0\Redist\styles directory. As it seems to be ...
5
votes
3answers
443 views

Delphi XE2: Reloading a custom VCL style from file?

I'm loading a custom style from file using: TStyleManager.LoadFromFile(filename) When the file is changed I want to load it again. But if I try that I get a EDuplicateStyleException because the ...
5
votes
2answers
563 views

How can I apply Delphi XE2 skins to forms in a DLL?

Using Delphi XE2, you have the option to embed custom styles (skins) to a VCL project. Everything works fine. Now I have some forms into a separated dll that I show dynamically. Of course those are ...
3
votes
1answer
116 views

How i can Skin the message box of my app when the vcl styles are activated?

I'm using the Application.MessageBox to show messages on my VCL application, but when the application had a vcl style applied the message window is shown with the windows style instead of the current ...
3
votes
1answer
155 views

Delphi XE2: Disabling vcl Style on a component

I am trying to follow the example about to disable the color on a control on my form. TStyleManager.Engine.RegisterStyleHook(ClrMeans.TwwDBComboDLG, TEditStyleHook); But I am getting an exception ...
3
votes
1answer
130 views

How can I get the Style Name of a vsf file (VCL Style file)?

I have an application written in delphi-xe2, now i'm adding VCL styles support, So i want to build a menu to choose the vcl style file to load and apply, this part is working fine , the menu is build ...
2
votes
2answers
80 views

RichEdit control in Delphi XE2 won't show font colors under certain styles

I just noticed that in some of the new VCL styles in Delphi XE2, trying to change the color of text in a RichEdit control doesn't work. For example Smokey Quarts Kamri and Carbon will only show text ...
1
vote
1answer
111 views

Applying a VCL style to TWebBrowser

Is there any way to apply a VCL style to TWebBrowser? I would like to change the scrollbars to fit my selected style. Thank you.
0
votes
0answers
132 views

TJvTreeView with multi-select using VCL Styles doesn't work?

I am using Delphi XE2 and have an application that has a JVCL TTJvTreeView with MultiSelect enabled. It works fine until a VCL style is applied to the application, which seems to disable ...
0
votes
1answer
296 views

Delphi Xe2 VCL style and webbrowser

Win7 x64, Delphi Xe2 update2 Prompt: The new project, compile as x32, are applied visual (vcl) styles in the project options, by default one is chosen On the form the button1 and WebBrowser1 In ...