textbox

  • Thread starter Thread starter Steve
  • Start date Start date
S

Steve

In vb.net 2003
Tha language is english
Is there any way to make a textbox type right to left. I saw this option in
the properties of the textbox. But from reading documents online I
understand it to only work in a couple of languages. Thanks for any help.
 
Hi Steve
There is the RightToLeft Property of the TextBox that you need to set to
yes it should work even if you are using a left to right lanugaue.
Mohamed M .Mahfouz
Developer Support Engineer
ITWorx on behalf of Microsoft EMEA GTSC
 
Use TextBox1.RightToLeft = True. It works on my Spanish machine...

--

Carlos J. Quintero

MZ-Tools 4.0: Productivity add-ins for Visual Studio .NET
You can code, design and document much faster.
http://www.mztools.com
 
Steve said:
Tha language is english
Is there any way to make a textbox type right to left. I saw this option
in the properties of the textbox. But from reading documents online I
understand it to only work in a couple of languages.

Set your textbox control's 'TextAlign' property to 'Right' instead.
'RightToLeft' only makes sense for certain languages.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top