Click here to Skip to main content
15,920,801 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: output file stays empty Pin
David Crow16-Jun-05 7:12
David Crow16-Jun-05 7:12 
GeneralRe: output file stays empty Pin
Anonymous16-Jun-05 7:39
Anonymous16-Jun-05 7:39 
GeneralRe: output file stays empty Pin
David Crow16-Jun-05 8:00
David Crow16-Jun-05 8:00 
GeneralRe: output file stays empty Pin
Anonymous16-Jun-05 8:14
Anonymous16-Jun-05 8:14 
GeneralRe: output file stays empty Pin
James R. Twine16-Jun-05 8:25
James R. Twine16-Jun-05 8:25 
GeneralCToolTipCtrl: How can i use SetTitle function Pin
ugur_basak16-Jun-05 5:57
ugur_basak16-Jun-05 5:57 
GeneralRe: CToolTipCtrl: How can i use SetTitle function Pin
ugur_basak16-Jun-05 6:08
ugur_basak16-Jun-05 6:08 
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 

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.