TDBAdvNavigator

Hi.


Delphi XE2, update 4
Win 7 Pro
I use the component TDBAdvNavigator together with a dataset (of course)
the version is 1.3.1.2
The property "GlyphSize" have 3 possible settings:
gsSmall
gsLarge
and gsCustom

I have searched in documentation after how to set gsCustom, but couldn't find any.
I tried to set property GlyphCustomSize to different values, but I can't see any changes.
How can I customize the glyphsize?

br.
Anders

When you use gsCustom, you need to add custom navigator glyph resources with name as:

'TMSNAVFIRST', 'TMSNAVPREVIOUS', 'TMSNAVNEXT',
    'TMSNAVLAST', 'TMSNAVINSERT', 'TMSNAVDELETE', 'TMSNAVEDIT', 'TMSNAVPOST', 'TMSNAVCANCEL', 'TMSNAVREFRESH',
    'TMSNAVSEARCH','TMSNAVBOOK','TMSNAVGOTO
+ GlyphResName + 'E'

for enabled images.

'TMSNAVFIRST', 'TMSNAVPREVIOUS', 'TMSNAVNEXT',
    'TMSNAVLAST', 'TMSNAVINSERT', 'TMSNAVDELETE', 'TMSNAVEDIT', 'TMSNAVPOST', 'TMSNAVCANCEL', 'TMSNAVREFRESH',
    'TMSNAVSEARCH','TMSNAVBOOK','TMSNAVGOTO
+ GlyphResName + 'H'

for the 'hot' version of the images

and

'TMSNAVFIRST', 'TMSNAVPREVIOUS', 'TMSNAVNEXT',
    'TMSNAVLAST', 'TMSNAVINSERT', 'TMSNAVDELETE', 'TMSNAVEDIT', 'TMSNAVPOST', 'TMSNAVCANCEL', 'TMSNAVREFRESH',
    'TMSNAVSEARCH','TMSNAVBOOK','TMSNAVGOTO
+ GlyphResName + 'D'

for the disabled version of the images.