vote up 1 vote down star

I'm using Delphi 2007 for Win32 and need to set the vertical scrollbar in TstringGrid to always be visible. How do you do that?

flag

2 Answers

vote up 2 vote down

There is a scrollbar property that can be set to ssNone, ssHorizontal, ssVertical or ssBoth.

link|flag
Neither of which will "set the vertical scrollbar in TstringGrid to always be visible", as the question clearly states. – mghie Jan 25 at 12:41
vote up 4 vote down

You can hide scrollbars with the Scrollbar property set to either ssNone, ssHorizontal, ssVertical, even when the number of rows and / or columns would normally make them appear.

You can however not force one or both scrollbars to be always visible but disabled, without creating a new descendent class and overriding methods. Unfortunately the standard grid controls have not evolved much since the days of Delphi 1, so your best bet is using some third party grid control instead. Preferably one that does also show proper proportional scroll thumbs.

link|flag
@Renee: if you accept this answer, it is appropriate to click the "Accept" check mark (so mghie gets credit for it). – Argalatyr Jan 26 at 5:43

Your Answer

Get an OpenID
or

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