Fix VCL Styles Directory in Delphi XE3

时间秒杀一切 提交于 2019-12-22 16:46:36

问题


I have a problem about VCL Styles in Delphi IDE. When I change VCL Style From default style to another style in delphi IDE and run program an "Style 'Style Name' not found" error comes up. I trying to find a option in IDE to fix Style directory, but I can't find any options. Please, help me to solve this problem and fixing IDE Options. thanx a lot.


回答1:


oh, after a time, I found a way for solving this problem. for solving this problem must running the "redistsetup.bat" file. this file by default located in "C:\Program Files\Embarcadero\RAD Studio\10.0\Redist\redistsetup.bat". (^_^)




回答2:


I found I was suddenly seeing this "Style 'Style Name' not found" error when as a result of removing a file from my project the line in my project file that shows

{$R *.RES}

was inadvertently replaced by

{R *.RES}




回答3:


I had the same problem , after I added some styles in project ( option ) , I had error ' style not found " I remove all styles in project --> option but alwyse the same problème

After I go the source project I find those lines ( TrySetStyle )

 begin

  TStyleManager.TrySetStyle('Turquoise Gray');
  TStyleManager.TrySetStyle('Cobalt XEMedia');
  Application.CreateForm(TFormLogin, FormLogin);
  Application.CreateForm(TFormMain, FormMain);
  Application.Run;
end.

The solution is just to remove those lines

But I think the probleme is some where the program can't find the path




回答4:


I think the only supported way of fixing IDE issues is to run Delphi setup and choose Repair (if the problem is really the Styles folder)

You can use Sysinternals' Procmon to check if your program (or the IDE) is failing to find/open a style file.

Also you may take a look at: How can I apply Delphi XE2 skins to forms in a DLL?




回答5:


Maybe check this directory C:\Users\Public\Documents\RAD Studio\10.0\Styles

I have no idea and cannot reproduce the problem.

In the help file - Section Application Appearance.

Greetings Mike



来源:https://stackoverflow.com/questions/12794973/fix-vcl-styles-directory-in-delphi-xe3

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!