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 Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by RGeorg

  1. RGeorg

    Help with Application control

    There is no generic API to perform actions in another app, i.e. to take over its message pump. A simple way of communication is by ::FindWindow API that uses a class name. It returns the handle to the app with that class name. You can then use WM_COPYDATA to transfer data to the app you want to...
  2. RGeorg

    FindResourceEx and CreateDialogParam

    Thanks, MAKEINTRESOURCE indeed was causing trouble. I ended up overriding CreateDialogParam to use the template handle with CreateDialogIndirectParam which yielded the proper result.
  3. RGeorg

    FindResourceEx and CreateDialogParam

    I am loading multiple language resources and the strings load properly. I am having a problem getting the dialog identifiers. Here is the code: Code: LPCTSTR get_dialog(int nResID) { LPCTSTR ptcBlock; HGLOBAL hg; HRSRC hResourceInfoBlock; LPCTSTR szTemplate = MAKEINTRESOURCE(nResID)...
  4. RGeorg

    Mangling Simplified Chinese characters in a combo box

    Thanks, I think I'm in for a lot more surprises when other customer files show up.:-) I have installed Chinese (Simplified and Traditional) and Korean. I set the font for the combo box in question to a font with most DONT_CARE parameters and I get a lot less squares (characters incompatible with...
  5. RGeorg

    Mangling Simplified Chinese characters in a combo box

    Issue was resolved. The file we received from the Chinese customer had Korean characters that won't display correctly (or at all "???"):) in Chinese locale. Thanks for reading.
  6. RGeorg

    Mangling Simplified Chinese characters in a combo box

    I have an urgent problem on my hands. I looked through the old posts but found nothing. When I build a list of names (WCHAR) in a ComboBox that include Simplified Chinese, the drop-down displays the chinese characters correctly. However when I select an item containing the said characters it...

Part and Inventory Search

Back
Top