Is there any way to add scroll bars to a memo editor?
The Option property of Editor object provides the ability to add scroll bars to a memo editor using the exMemoHScrollBar and exMemoVScrollBar options. For instance, the following sample adds both scroll bar to the editor of the first column: With Grid1.Columns(0).Editor .Option(exMemoAutoSize) = False ‘ Disables auto resizing when user alters the text .Option(exMemoVScrollBar) = True ‘ Adds the vertical scroll bar .