Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: tkop
  • Order by date
  1. tkop

    Hooking and message sending

    Hi, I have the following in a dll: //*********************************************** bool WINAPI InstallHook(HWND handle) { bool bSuccess = false; g_hHook = SetWindowsHookEx(WH_KEYBOARD, GetMsgProc, g_hinstDLL, NULL); hWnd=handle; return bSuccess; }...
  2. tkop

    Background problems

    Hi, I am working with MFC. lets say I have an application in th background, and using a timer, the application gets the handle of the active thread (just to make sure, How can I do this). my problem is that the display doesn't take place on screen untill the background application receives...
  3. tkop

    Current thread language

    Hi! I am writing an MFC program that needs to know the language of the current thread on a multi-language system (more than one language is installed). there are the functions GetUserDefaultLCID() and GetSystemDefaultLCID however they give me the default for the system, and I want to know in...
  4. tkop

    finding the current language of the system

    thank you for the quick response, I'll check that function out (can't believe it evaded me). The problem of finding the current language. to explain what I need to do - I want to right an application that prints out the letters in the order which they appear on the keyboard. for example...
  5. tkop

    finding the current language of the system

    hi, how can I find the current language of the operating system. I don't want the default. for example, if I have English and say some other language installed in my system. I am using MFC. please notice that word uses a default - this is not what I want. In addition, I heard from a freind...

Part and Inventory Search

Back
Top