Click here to Skip to main content
15,896,201 members
Home / Discussions / C#
   

C#

 
GeneralRe: ClickOnce : Unknown Publisher Pin
Pete O'Hanlon10-May-16 3:02
mvePete O'Hanlon10-May-16 3:02 
QuestionBest method to automate website filling in Google Chrome Pin
srikrishnathanthri8-May-16 23:26
srikrishnathanthri8-May-16 23:26 
AnswerRe: Best method to automate website filling in Google Chrome Pin
Richard MacCutchan8-May-16 23:56
mveRichard MacCutchan8-May-16 23:56 
GeneralRe: Best method to automate website filling in Google Chrome Pin
srikrishnathanthri9-May-16 0:02
srikrishnathanthri9-May-16 0:02 
GeneralRe: Best method to automate website filling in Google Chrome Pin
Richard MacCutchan9-May-16 0:18
mveRichard MacCutchan9-May-16 0:18 
Answer[REPOST] Best method to automate website filling in Google Chrome Pin
Richard Deeming9-May-16 1:55
mveRichard Deeming9-May-16 1:55 
QuestionReports in Visual studio 2012 -Display footer on last page Pin
Member 124156218-May-16 23:13
Member 124156218-May-16 23:13 
QuestionMultilingua virtual keyboard Pin
kelkeel7-May-16 19:44
kelkeel7-May-16 19:44 
Hello friends,

I'm working on a keyboard application for a small community. Their alphabets are as shown below.
Basically, the application will allow users to either type on the pc keyboard, or the virtual onScreen keys.
It should be noted that their alphabet do not have letter Q, F, X, Z and this will be replaced with Unicode chars.

I've managed to get the onScreen working using the SendKeys.send() method of C#.
However, I'm having trouble getting this working with keyboard input using KeyDown method.
When someone type Q, I wanted Unicode character say "Ɣ" to appear, and not the letter "Q".
A partial part of my code is as below. The keyDown event doesn't seem to fire at all.

Appreciate any help please.
Alphabets
Quote:
Quote:
Majuscules
A A̱ Ä B C D Dh E E̱ Ë Ɛ Ɛ̱ Ɛ̈ G Ɣ H I I̱ J
K L M N Ŋ Nh Ny O O̱ Ö Ɔ Ɔ̱ P R T Th U W Y
Minuscules
a a̱ ä b c d dh e e̱ ë ɛ ɛ̱ ɛ̈ g ɣ h i i̱ j
k l m n ŋ nh ny o o̱ ö ɔ ɔ̱ p r t th u w y


C#
protected override CreateParams CreateParams
          {
               get
               {
                    CreateParams param = base.CreateParams;
                    param.ExStyle |=0x08000000;
                    return param;
               }
          }
private void Form1_KeyDown(object sender, KeyEventArgs e)
          {
               switch (e.KeyCode)
               {
                    case Keys.Q:
                        SendKeys.Send("Ɣ");
                         break;
                     //The rest of the code here.........
               }
          }

AnswerRe: Multilingua virtual keyboard Pin
Peter_in_27807-May-16 21:00
professionalPeter_in_27807-May-16 21:00 
GeneralRe: Multilingua virtual keyboard Pin
kelkeel7-May-16 22:00
kelkeel7-May-16 22:00 
AnswerRe: Multilingua virtual keyboard Pin
OriginalGriff7-May-16 22:22
mveOriginalGriff7-May-16 22:22 
GeneralRe: Multilingua virtual keyboard Pin
kelkeel7-May-16 23:21
kelkeel7-May-16 23:21 
GeneralRe: Multilingua virtual keyboard Pin
OriginalGriff7-May-16 23:32
mveOriginalGriff7-May-16 23:32 
GeneralRe: Multilingua virtual keyboard Pin
kelkeel7-May-16 23:59
kelkeel7-May-16 23:59 
GeneralRe: Multilingua virtual keyboard Pin
OriginalGriff8-May-16 0:15
mveOriginalGriff8-May-16 0:15 
GeneralRe: Multilingua virtual keyboard Pin
Peter_in_27808-May-16 12:00
professionalPeter_in_27808-May-16 12:00 
GeneralRe: Multilingua virtual keyboard Pin
Mycroft Holmes8-May-16 22:32
professionalMycroft Holmes8-May-16 22:32 
GeneralRe: Multilingua virtual keyboard Pin
kelkeel8-May-16 23:04
kelkeel8-May-16 23:04 
GeneralRe: Multilingua virtual keyboard Pin
kelkeel8-May-16 17:37
kelkeel8-May-16 17:37 
AnswerRe: Multilingua virtual keyboard Pin
Bernhard Hiller8-May-16 20:48
Bernhard Hiller8-May-16 20:48 
QuestionOverloading default member in a C# class Pin
Kenneth Haugland7-May-16 19:25
mvaKenneth Haugland7-May-16 19:25 
AnswerRe: Overloading default member in a C# class Pin
Kenneth Haugland7-May-16 20:34
mvaKenneth Haugland7-May-16 20:34 
GeneralRe: Overloading default member in a C# class Pin
Peter_in_27807-May-16 20:50
professionalPeter_in_27807-May-16 20:50 
AnswerRe: Overloading default member in a C# class Pin
BillWoodruff8-May-16 5:18
professionalBillWoodruff8-May-16 5:18 
GeneralRe: Overloading default member in a C# class Pin
Kenneth Haugland8-May-16 6:21
mvaKenneth Haugland8-May-16 6:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.