How can I allow the user to use the Tab key?
I've seen the example which turns off the tab stops, but that doesn't work so well.
Printable View
How can I allow the user to use the Tab key?
I've seen the example which turns off the tab stops, but that doesn't work so well.
You could do something like this I suppose
VB Code:
Private Sub RichTextBox1_KeyDown(KeyCode As Integer, Shift As Integer) If KeyCode = vbKeyTab Then KeyCode = 0 RichTextBox1.SelText = vbTab End If End Sub
Cool thanks, alot easier than I thought... :D