Click here to Skip to main content
15,887,214 members
Home / Discussions / C#
   

C#

 
AnswerRe: Suspend Form until Fully Loaded Pin
Abhinav S28-Jun-12 20:48
Abhinav S28-Jun-12 20:48 
QuestionRe: Suspend Form until Fully Loaded Pin
Midnight Ahri28-Jun-12 20:54
Midnight Ahri28-Jun-12 20:54 
AnswerRe: Suspend Form until Fully Loaded Pin
Abhinav S28-Jun-12 21:10
Abhinav S28-Jun-12 21:10 
GeneralGetAsyncKeyState in diffrent languages Pin
a.fatemeh28-Jun-12 8:24
a.fatemeh28-Jun-12 8:24 
GeneralRe: GetAsyncKeyState in diffrent languages Pin
Eddy Vluggen28-Jun-12 8:31
professionalEddy Vluggen28-Jun-12 8:31 
GeneralRe: GetAsyncKeyState in diffrent languages Pin
Luc Pattyn28-Jun-12 8:39
sitebuilderLuc Pattyn28-Jun-12 8:39 
GeneralRe: GetAsyncKeyState in diffrent languages Pin
Eddy Vluggen28-Jun-12 8:55
professionalEddy Vluggen28-Jun-12 8:55 
GeneralRe: GetAsyncKeyState in diffrent languages Pin
a.fatemeh28-Jun-12 8:44
a.fatemeh28-Jun-12 8:44 
thank you so much,
what I want to do is what you mentioned above.
what I mean here is to have a character of the key which is pressed,but in different language(the language that is in the layout)
I have seen this function before but, I ran into lot's of problem(sorry I don't have lot's of experience)first is that by using GetAsyncKeyState I can't access to the virtualkeycode, the next problem is that I don't know which type of mapping should I use to reach to my goal .
Part of my code is written below:
C#
foreach (System.Int32 i in Enum.GetValues(typeof(Keys)))
{
     int k=i;
     if( (KeyLogger.Methods.GetAsyncKeyState(i)== 1) ||(KeyLogger.Methods.GetAsyncKeyState(i) == Int16.MinValue))
                {
                  keyBuffer += Enum.GetName(typeof(Keys), i) + " ";
                }

GeneralRe: GetAsyncKeyState in diffrent languages Pin
Eddy Vluggen28-Jun-12 8:59
professionalEddy Vluggen28-Jun-12 8:59 
GeneralRe: GetAsyncKeyState in diffrent languages Pin
a.fatemeh28-Jun-12 9:31
a.fatemeh28-Jun-12 9:31 
GeneralRe: GetAsyncKeyState in diffrent languages Pin
Eddy Vluggen29-Jun-12 0:36
professionalEddy Vluggen29-Jun-12 0:36 
GeneralRe: GetAsyncKeyState in diffrent languages Pin
a.fatemeh29-Jun-12 4:23
a.fatemeh29-Jun-12 4:23 
QuestionGeneric method in generic method Pin
Mc_Topaz28-Jun-12 6:39
Mc_Topaz28-Jun-12 6:39 
AnswerRe: Generic method in generic method Pin
PIEBALDconsult28-Jun-12 6:45
mvePIEBALDconsult28-Jun-12 6:45 
GeneralRe: Generic method in generic method Pin
Mc_Topaz28-Jun-12 12:07
Mc_Topaz28-Jun-12 12:07 
AnswerRe: Generic method in generic method Pin
Luc Pattyn28-Jun-12 6:49
sitebuilderLuc Pattyn28-Jun-12 6:49 
GeneralRe: Generic method in generic method Pin
Mc_Topaz28-Jun-12 12:08
Mc_Topaz28-Jun-12 12:08 
QuestionC:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0 not seen by visual studio Pin
AstroBod42728-Jun-12 5:16
AstroBod42728-Jun-12 5:16 
AnswerRe: C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0 not seen by visual studio Pin
Abhinav S28-Jun-12 6:33
Abhinav S28-Jun-12 6:33 
GeneralLooking for help with double clicking on a line of text in a text box Pin
turbosupramk328-Jun-12 4:18
turbosupramk328-Jun-12 4:18 
AnswerRe: Looking for help with double clicking on a line of text in a text box Pin
Eddy Vluggen28-Jun-12 4:47
professionalEddy Vluggen28-Jun-12 4:47 
GeneralRe: Looking for help with double clicking on a line of text in a text box Pin
Luc Pattyn28-Jun-12 4:59
sitebuilderLuc Pattyn28-Jun-12 4:59 
GeneralRe: Looking for help with double clicking on a line of text in a text box Pin
Pete O'Hanlon28-Jun-12 5:10
mvePete O'Hanlon28-Jun-12 5:10 
GeneralRe: Looking for help with double clicking on a line of text in a text box Pin
turbosupramk328-Jun-12 7:21
turbosupramk328-Jun-12 7:21 
GeneralRe: Looking for help with double clicking on a line of text in a text box Pin
Pete O'Hanlon28-Jun-12 8:18
mvePete O'Hanlon28-Jun-12 8:18 

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.