Topic: Scroll Bars

Is there a way to enable scroll bars in a memo field?

Thank you,
  Rob

Re: Scroll Bars

You can do it using script

Example:

 Form1.Memo1.ScrollBars := ssNone; // The component has no scroll bars. (default)
 Form1.Memo1.ScrollBars := ssHorizontal; // The component has a single scroll bar on the bottom edge.
 Form1.Memo1.ScrollBars := ssVertical; // The component has a single scroll bar on the right edge.
 Form1.Memo1.ScrollBars := ssBoth; // The component has a scroll bar on both the bottom and right edges.
Dmitry.

Re: Scroll Bars

Thank you.  I had found a partial answer in the Russian message section.  This is helpful.

Rob