Hindi Keyboard
am 25.01.2008 13:28:59 von Junior Programmer
Hello Everyone,
In my application i need to develop a keyboard which type Hindi
characters.
As a control i make it. On clicking of this i can create code but how
can i type a hindi char in coding ?
Please help me.
Thanx
Re: Hindi Keyboard
am 26.01.2008 01:23:37 von ic3b3rg
On Jan 25, 2:28 pm, Junior Programmer wrote:
> Hello Everyone,
>
> In my application i need to develop a keyboard which type Hindi
> characters.
> As a control i make it. On clicking of this i can create code but how
> can i type a hindi char in coding ?
>
> Please help me.
>
> Thanx
Hi,
I think you can use unicode for Hindu or other language characters.
For this. You should type '\uC' where C is the unicode char code.
I hope this helps.
Re: Hindi Keyboard
am 26.01.2008 07:41:55 von nmihai_year_2000
> In my application i need to develop a keyboard which type Hindi
> characters.
> As a control i make it. On clicking of this i can create code but how
> can i type a hindi char in coding ?
A keyboard is a system wide "thing," not an application speciffic feature.
Personaly I would hate to have 5 different applications with 5
slightly different keyboard layouts.
So you should have your application accept Unicode input, and any keyboard
will work.
Separately you can create a keyboard layout using the DDK, or MSKLC.
And the keyboard will be available to any application.
--
Mihai Nita [Microsoft MVP, Windows - SDK]
http://www.mihai-nita.net
------------------------------------------
Replace _year_ with _ to get the real email
Re: Hindi Keyboard
am 31.01.2008 08:25:19 von Junior Programmer
On Jan 26, 11:41 am, "Mihai N." wrote:
> > In my application i need to develop a keyboard which type Hindi
> > characters.
> > As a control i make it. On clicking of this i can create code but how
> > can i type a hindi char in coding ?
>
> A keyboard is a system wide "thing," not an application speciffic feature.
> Personaly I would hate to have 5 different applications with 5
> slightly different keyboard layouts.
>
> So you should have your application accept Unicode input, and any keyboard
> will work.
>
> Separately you can create a keyboard layout using the DDK, or MSKLC.
> And the keyboard will be available to any application.
>
> --
> Mihai Nita [Microsoft MVP, Windows - SDK]http://www.mihai-nita.net
> ------------------------------------------
> Replace _year_ with _ to get the real email
Thanks.
Re: Hindi Keyboard
am 31.01.2008 08:25:32 von Junior Programmer
On Jan 26, 5:23 am, ic3b3rg wrote:
> On Jan 25, 2:28 pm, Junior Programmer wrote:
>
> > Hello Everyone,
>
> > In my application i need to develop a keyboard which type Hindi
> > characters.
> > As a control i make it. On clicking of this i can create code but how
> > can i type a hindi char in coding ?
>
> > Please help me.
>
> > Thanx
>
> Hi,
>
> I think you can use unicode for Hindu or other language characters.
> For this. You should type '\uC' where C is the unicode char code.
>
> I hope this helps.
Thanks