Justify text from Right to Left.
Justify text from Right to Left.
Rate Justify text from Right to Left.
(1(1 Vote))
Text1.Alignment = vbRightJustify
End Sub
Private Sub Text1_Change()
Call setRighttoleft(Text1)
End Sub
Private Sub Text1_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
KeyAscii = 0
SendKeys "{End}"
Text1.Text = Text1.Text & vbNewLine
ElseIf KeyAscii = 8 Then
SendKeys "{Delete}"
End If
End Sub
Justify text from Right to Left. Comments
No comments yet — be the first to post one!
Post a Comment