|
-
Mar 7th, 2000, 08:50 PM
#1
Thread Starter
New Member
I want to write in Hebrew and in Thai in textbox. But I can't to set RightToLeft property to True, because I have Engish version of Windows. How can I do it anyway?
-
Mar 7th, 2000, 09:03 PM
#2
Frenzied Member
Not being Hebrew or Thai myself I don't know exactly what you are after - but this may help - put this in the textbox change event..
Sub Text1_Change()
Text1.SelStart = 0
End Sub
..?
'Buzby'
Visual Basic Developer
"I'm moving to Theory. Everything works there."
-
Mar 7th, 2000, 11:17 PM
#3
PowerPoster
may be tou can try to change the Alignment properties to Right Justified. Hope it can help you.
-
Mar 11th, 2000, 10:33 PM
#4
Thread Starter
New Member
No always
Thanks, but if the user enter a long ling, that will break on the next line?
Not being Hebrew or Thai myself I don't know exactly what you are after - but this may help - put this in the textbox change event..
Sub Text1_Change()
Text1.SelStart = 0
End Sub
..?
-
Mar 12th, 2000, 05:16 PM
#5
Frenzied Member
Aah - you didn't say a 'multiline' text box.. anyway, try this slight amendment;
Dim LastPos as Long
Sub TextBox1.KeyPress(KeyASCII as Integer)
LastPos=TextBox1.SelStart
End Sub
Sub TextBox1.Change
TextBox1.SelStart=LastPos
End Sub
I think that improves matters.
'Buzby'
Visual Basic Developer
"I'm moving to Theory. Everything works there."
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|