Results 1 to 4 of 4

Thread: Change font for tooltip control ?

  1. #1
    Join Date
    Jun 2009
    Posts
    39

    Change font for tooltip control ?

    Hello good morning ,
    I'm with a project right now and i would like to know how to change font of tool tip control ? because my project display in other language. the language is not English and need to alter back it to the same

    any thoughts???

  2. #2
    Join Date
    Jan 2008
    Posts
    1,521

    Re: Change font for tooltip control ?

    In order to create a ToolTip control, call CreateWindowEx and specify the TOOLTIPS_CLASS window class. This class is registered when the common control DLL is loaded. to confirm DLL is loaded, include the InitCommonControlsEx function in your application. so you have to explicitly define a ToolTip control as topmost. else , it might be covered by the parent window.take a look on this code
    HWND hwndTip = CreateWindowEx(NULL, TOOLTIPS_CLASS, NULL,
    WS_POPUP | TTS_NOPREFIX | TTS_ALWAYSTIP,
    CW_USEDEFAULT, CW_USEDEFAULT,
    CW_USEDEFAULT, CW_USEDEFAULT,
    hwndParent, NULL, hinstMyDll,
    NULL);

    SetWindowPos(hwndTip, HWND_TOPMOST,0, 0, 0, 0,
    SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);

  3. #3
    Join Date
    Feb 2008
    Posts
    1,852

    Re: Change font for tooltip control ?

    Dude if you have retrieved this text from database, just configure this as the text for the tooltip. If it does not list out make correction, but you must look into encoding.

  4. #4
    Join Date
    May 2008
    Posts
    2,389

    Re: Change font for tooltip control ?

    I just need to know what are you using right now.i think you have to use the tooltip text either in the resource files or database and configure it from there. can you just analyze this code

    SetToolTip(controlName,textfromResourceFile)

Similar Threads

  1. How can I change my font in hotmail?
    By SamDust in forum Technology & Internet
    Replies: 5
    Last Post: 10-01-2012, 05:41 PM
  2. Replies: 4
    Last Post: 05-08-2010, 12:45 PM
  3. How To Change Font Color with CSS
    By Vineeta in forum Software Development
    Replies: 4
    Last Post: 11-01-2010, 03:55 AM
  4. How to change font in Nokia N73
    By SamDust in forum Portable Devices
    Replies: 3
    Last Post: 31-03-2009, 01:12 AM
  5. Change Taskbar Font
    By Donnell in forum Windows XP Support
    Replies: 2
    Last Post: 27-06-2008, 11:23 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,751,588,057.52620 seconds with 16 queries