Link to home
Start Free TrialLog in
Avatar of rainbowsoftware
rainbowsoftware

asked on

DBNavigator hints

In Delphi version 3.0 it's possible to write:
DBNavigator.Hints[0] := 'Foerste';
DBNavigator.Hints[1] := 'Forrige';
......

I can do the same in version 2.0, but here it doesn't work.
Is there a bug in version 2.0 or is there another way to do it.
Avatar of westy100697
westy100697

Hey there,
               Just create a TStringList and try adding strings to the String list and then just
do   DBNavigator1.Hints := MyStringList ....

See if that works...

WESTY
Also make sure Showhint is true

WESTY :)
Avatar of rainbowsoftware

ASKER

It makes no difference whether I a use a string or a stringlist.
ASKER CERTIFIED SOLUTION
Avatar of karamurat
karamurat

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial