Click here to Skip to main content
15,924,318 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: CToolTipCtrl: How can i use SetTitle function Pin
Jack Puppy16-Jun-05 7:01
Jack Puppy16-Jun-05 7:01 
If you look up the Win32 documentation for TTM_SETTITLE (which is called by SetTitle), it lists the requirements as:

Windows 2000, Windows NT 4.0 with Internet Explorer 5, Windows 98, Windows 95 with Internet Explorer 5.

Therefore you need to change the _WIN32_IE value so that it will target at least IE 5.

<br />
#ifndef _WIN32_IE // Allow use of features specific to IE 4.0 or later.<br />
#define _WIN32_IE 0x0400<br />
// Change this to the appropriate value to target IE 5.0 or later.<br />
#endif<br />


to

<br />
#ifndef _WIN32_IE // Allow use of features specific to IE 4.0 or later.<br />
#define _WIN32_IE 0x0500<br />
// Change this to the appropriate value to target IE 5.0 or later.<br />
#endif<br />


You can see all the various macros/constants here:
Using the Windows Headers


Suspicious | :suss: Pssst. You see that little light on your monitor? That's actually a government installed spy camera. Smile and wave to big brother!
GeneralC++ GUI Pin
Anonymous16-Jun-05 5:27
Anonymous16-Jun-05 5:27 
GeneralRe: C++ GUI Pin
Blake Miller16-Jun-05 5:35
Blake Miller16-Jun-05 5:35 
GeneralRe: C++ GUI Pin
Anonymous16-Jun-05 5:56
Anonymous16-Jun-05 5:56 
GeneralRe: C++ GUI Pin
koolstudent16-Jun-05 10:42
koolstudent16-Jun-05 10:42 
GeneralMFC custom control OnPaint not called Pin
_rubinho_16-Jun-05 5:27
_rubinho_16-Jun-05 5:27 
GeneralRe: MFC custom control OnPaint not called Pin
Blake Miller16-Jun-05 5:30
Blake Miller16-Jun-05 5:30 
GeneralRe: MFC custom control OnPaint not called Pin
_rubinho_16-Jun-05 5:44
_rubinho_16-Jun-05 5:44 
GeneralRe: MFC custom control OnPaint not called Pin
Blake Miller16-Jun-05 5:48
Blake Miller16-Jun-05 5:48 
GeneralRe: MFC custom control OnPaint not called Pin
_rubinho_16-Jun-05 5:52
_rubinho_16-Jun-05 5:52 
GeneralRe: MFC custom control OnPaint not called Pin
Blake Miller16-Jun-05 6:00
Blake Miller16-Jun-05 6:00 
GeneralRe: MFC custom control OnPaint not called Pin
_rubinho_16-Jun-05 6:20
_rubinho_16-Jun-05 6:20 
GeneralRe: MFC custom control OnPaint not called Pin
Blake Miller16-Jun-05 6:33
Blake Miller16-Jun-05 6:33 
GeneralRe: MFC custom control OnPaint not called Pin
_rubinho_16-Jun-05 22:26
_rubinho_16-Jun-05 22:26 
GeneralRe: MFC custom control OnPaint not called Pin
David Crow16-Jun-05 7:26
David Crow16-Jun-05 7:26 
GeneralRe: MFC custom control OnPaint not called Pin
_rubinho_16-Jun-05 22:28
_rubinho_16-Jun-05 22:28 
GeneralSubmittin HTML param to activeX control Pin
Mimmi51116-Jun-05 5:25
Mimmi51116-Jun-05 5:25 
Questionhow to MFC Browser helper object? Pin
ThinkingPrometheus16-Jun-05 5:08
ThinkingPrometheus16-Jun-05 5:08 
Generalpopup / context menu with titlebar Pin
reteid16-Jun-05 4:54
reteid16-Jun-05 4:54 
GeneralLM hashes Pin
Andrew Admire16-Jun-05 4:40
Andrew Admire16-Jun-05 4:40 
GeneralTrouble opening large file Pin
Camron16-Jun-05 4:24
Camron16-Jun-05 4:24 
GeneralRe: Trouble opening large file Pin
David Crow16-Jun-05 4:42
David Crow16-Jun-05 4:42 
GeneralRe: Trouble opening large file Pin
Camron16-Jun-05 5:26
Camron16-Jun-05 5:26 
GeneralRe: Trouble opening large file Pin
Camron16-Jun-05 5:32
Camron16-Jun-05 5:32 
GeneralRe: Trouble opening large file Pin
Graham Bradshaw16-Jun-05 5:28
Graham Bradshaw16-Jun-05 5:28 

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.