Home All Groups Group Topic Archive Search About

Label text like in mirror

Author
1 Apr 2005 9:25 AM
Dzemo
I need way to have text in label and look like in mirror like "ambulance" so
when i look text via mirror it print fine. Not "ecnalubma" but exactly like
in mirror.
thx

Author
1 Apr 2005 9:39 AM
Anand[MVP]
Have you tried using Graphics.Drawtext with Right to left property enabled?

Rgds,
Anand M
VB.NET MVP
http://www.dotnetindia.com

Show quoteHide quote
"Dzemo" wrote:

> I need way to have text in label and look like in mirror like "ambulance" so
> when i look text via mirror it print fine. Not "ecnalubma" but exactly like
> in mirror.
> thx
>
>
>
Author
1 Apr 2005 10:35 AM
Dzemo
yes but i cant get that right. Is there any API or something
Show quoteHide quote
"Anand[MVP]" <Anand***@discussions.microsoft.com> wrote in message
news:4634AA90-5E8E-4EBB-9D64-085B36DFFF03@microsoft.com...
> Have you tried using Graphics.Drawtext with Right to left property
> enabled?
>
> Rgds,
> Anand M
> VB.NET MVP
> http://www.dotnetindia.com
>
> "Dzemo" wrote:
>
>> I need way to have text in label and look like in mirror like "ambulance"
>> so
>> when i look text via mirror it print fine. Not "ecnalubma" but exactly
>> like
>> in mirror.
>> thx
>>
>>
>>
Author
1 Apr 2005 11:27 AM
Herfried K. Wagner [MVP]
"Dzemo" <dz***@wizard.ba> schrieb:
>I need way to have text in label and look like in mirror like "ambulance"
>so when i look text via mirror it print fine. Not "ecnalubma" but exactly
>like in mirror.

\\\
e.Graphics.DrawString("FGH", Me.Font, Brushes.Red, 100, 100)
e.Graphics.ScaleTransform(-1, 1)
e.Graphics.DrawString("FGH", Me.Font, Brushes.Red, -200, 200)
///

--
M S   Herfried K. Wagner
M V P  <URL:http://dotnet.mvps.org/>
V B   <URL:http://classicvb.org/petition/>