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 style is already registered.

Is there a way to unload a style so I can load it again? The typical case for this is that you are making changes to a custom style and want to see it in action without restarting the whole application.

link|improve this question

78% accept rate
feedback

3 Answers

up vote 5 down vote accepted

After scanning the sources I guess that is not possible in a straight forward way. Your only chance might be to implement some dirty hack.

Whatever you do, you should write a QC for this. Embarcadero could implement to reload the file if the style already exists instead of raising an exception. That would look like a natural behaviour to me.

link|improve this answer
Thanks Uwe, I've posted a feature request here: qc.embarcadero.com/wc/qcmain.aspx?d=98852 – Ville Krumlinde Sep 13 '11 at 7:57
Passed 10 votes on it. – Uwe Raabe Sep 13 '11 at 9:42
feedback

Check this project vcl styles utils, one of the features exposed is the capacity of unload a vcl style. Just include the Vcl.Styles.Ext unit in your project and then use this code.

 TStyleManager.RemoveStyle('Carbon');
link|improve this answer
Thanks, looks promising. – Ville Krumlinde Jan 19 at 9:07
feedback

You could make a copy of each style in another file with different name of the style. Then you could load it's copy as a workaround. If you really need original then you can load it after loading copy.

link|improve this answer
Thanks, it's an idea but not very practical when making lots of changes in a style and want to test after each change. Saving "MyStyle_copy_nr_442" etc and remembering to change the style-name property too each time is a lot of typing which makes it faster to just restart the application instead. – Ville Krumlinde Sep 13 '11 at 14:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.