Forum Replies Created
-
AuthorPosts
-
Hello
You can change the magnifier form directly using such code :
CODEuses sConst;
…
if Assigned(acMagnForm) and acMagnForm.Visible then acMagnForm.Left := …
acMagnForm : TWinControl is declared in the sConst unit.Thank you for the demo, I'll check it soon.
QUOTE (Владимир скромный @ May 12 2010, 11:18 PM) <{POST_SNAPBACK}>But when we can wait new convertor?
After the version 7 release, I can't tell more precisely..This automatic opening will be disabled if you change the AutoNavigate property to False.
Hello, I have a bad news. This problem may be solved by the Translation Tool developer only, seems.
Look this page, a cause of the problem is explained there :
http://www.devexpress.com/Support/Center/p/B94485.aspx
http://qc.embarcadero.com/wc/qcmain.aspx?d=794492. Есть ли новости по поводу поддержки TAdvPageControl? Могу ли я сам при необходимости устранить дефект скинизации компонента 3-го лица? Если да, то что для этого необходимо сделать?
Вряд ли это можно сделать просто. Если добавлена дополнительная функциональность, то нужно добавлять дополнительный код, чтобы ее реализовать и в скинах..
Нужно смотреть.May 8, 2010 at 7:08 pm in reply to: TcxGrid and Tabs, TabsBackground style, TcxGridDBCardView supported? #42440Hello!
You mean a making of skins with such colors? There are no examples of controls or forms (except few panels and speedbuttons)…
Hello
I think you can store it in RC as RC_DATA and load in the run-time to TMemoryStream.
Skin may be loaded to the Skinmanager from a stream easily (demo of work with stream : http://www.alphaskins.com/sfiles/demos/skinandstream.zip).Here is a changed demo, check it <img src="style_emoticons//smile.gif” style=”vertical-align:middle” emoid=”:)” border=”0″ alt=”smile.gif” />
Hello
Menus are skinned automatically now. For changing a menu font you can use the CustomMenuFont:TFont variable.
This variable is declared in the sSkinMenus.pas unit and used for drawing of text in menus if CustomMenuFont is not Nil.
Example of using :CODECustomMenuFont := TFont.Create;
CustomMenuFont.Name := 'Comic Sans MS';
CustomMenuFont.Style := [fsBold];uses sSkinMenus;
Hello and sorry for a delay
I have researched this question and I don't know reasons for problems now. Cyrillic symbols will be shown, if correct character set is defined for used font…Hello
Problem will be solved in the nearest release, I think, very soon.Hello
QUOTE (Iruau @ May 5 2010, 04:52 PM) <{POST_SNAPBACK}>In fact, it is a bit more complex, and seems to be application dependent. Skin “Beijing” has the bug only in my application but not my test case, skin “Cold” and “Blue Ice” have the bug in both apps, and “Beijing Ext” does not have the bug in any of the two apps.
Could you give me this test app where an error is reproduced?Hello
If these controls are inherited from standard components (like TCustomEdit, TCustomComboBox and other) then they may be supported without problems I think.
You only must use sSkinManager.ThirdParty property editor and add required types there.If these controls are not standard and have a non-standard implementation (I haven't an experience of IBObjects using, unfortunately) then must be added a lot of special code to the AlphaControls package for support of them.
Thank you, mbagheri!
I see it. This glitch in animation will be removed soon, but not in the v6.65
Hello
Thank you for researching, this topic will be moved to “tricks” soon. I think, your information will be useful for others.Hello
Working of TPanels was improved in latest releases.
You can define a kind of panel in the sSkinProvider.OnAddSkin event like this code : if Item = Panel1 then SkinSection := 'EDIT';How these panels had an other looking earlier? Where this kind was defined?[code] if Item = Panel1 then SkinSection := 'EDIT';
How these panels had an other looking earlier? Where this kind was defined?
TsDBGrids are created in design-time or run-time?
SkinData.SkinSection property is defined to 'EDIT'?AuthorPosts