Monday, May 28, 2012

Menambah Horizontal ScrollBar Pada RichTextBox

Di bawah ini merupakan kode mengenai cara menambah horizontal scrollbar pada objek richtextbox.
Option Explicit 

Private Sub
Form_Load()
With RichTextBox1
.Text = "Visual Basic :: Horizontal Scroll Position In A Richtextbox, you must set the scrollbar properties to 1 or 3"
.RightMargin = RichTextBox1.Width + 600
End With
End Sub