Herfried,
Do appreciate. Searching under Methods for the RichTextBox I now see said
the blind man. There is so much available I just miss. Biggest problem
leaning to use is to understand the help file which is awsome.
Ed
"Herfried K. Wagner [MVP]" <hirf-spam-me-(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> "Ed Bitzer" <(E-Mail Removed)> schrieb:
>> Appreciate a lead to specifying where the tab stop is (only need one) in
>> a richtextbox. Use to be able to use an API with VB5.
>
> \\\
> Private Sub Form1_Load( _
> ByVal sender As System.Object, _
> ByVal e As System.EventArgs _
> ) Handles MyBase.Load
> Me.RichTextBox1.Text = _
> "Hallo" & ControlChars.Tab & _
> "Welt" & ControlChars.Tab & _
> "Bla"
> End Sub
>
> Private Sub Button1_Click( _
> ByVal sender As System.Object, _
> ByVal e As System.EventArgs _
> ) Handles Button1.Click
> Me.RichTextBox1.SelectAll()
> Me.RichTextBox1.SelectionTabs() = _
> New Integer() {100, 200, 300}
> End Sub
> ///
>
> --
> M S Herfried K. Wagner
> M V P <URL:http://dotnet.mvps.org/>
> V B <URL:http://classicvb.org/petition/>
|