Click here to Skip to main content
15,894,825 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: LPWSTR / Win32 Pin
Joe Woodbury9-Apr-10 5:38
professionalJoe Woodbury9-Apr-10 5:38 
Questionhow to use multiThread to read and write database? Pin
caiguosen8-Apr-10 5:47
caiguosen8-Apr-10 5:47 
AnswerRe: how to use multiThread to read and write database? Pin
CPallini8-Apr-10 9:38
mveCPallini8-Apr-10 9:38 
QuestionRe: how to use multiThread to read and write database? Pin
David Crow9-Apr-10 3:21
David Crow9-Apr-10 3:21 
AnswerRe: how to use multiThread to read and write database? Pin
caiguosen10-Apr-10 1:42
caiguosen10-Apr-10 1:42 
QuestionRe: how to use multiThread to read and write database? Pin
David Crow12-Apr-10 2:51
David Crow12-Apr-10 2:51 
Questionhow to properly display buttons over an image Pin
genush8-Apr-10 5:38
genush8-Apr-10 5:38 
AnswerRe: how to properly display buttons over an image Pin
Fareed Rizkalla8-Apr-10 7:23
Fareed Rizkalla8-Apr-10 7:23 
GeneralRe: how to properly display buttons over an image Pin
genush8-Apr-10 11:50
genush8-Apr-10 11:50 
AnswerRe: how to properly display buttons over an image Pin
Eugen Podsypalnikov8-Apr-10 9:03
Eugen Podsypalnikov8-Apr-10 9:03 
GeneralRe: how to properly display buttons over an image Pin
genush8-Apr-10 10:16
genush8-Apr-10 10:16 
GeneralRe: how to properly display buttons over an image Pin
Eugen Podsypalnikov8-Apr-10 11:06
Eugen Podsypalnikov8-Apr-10 11:06 
GeneralRe: how to properly display buttons over an image Pin
genush8-Apr-10 11:11
genush8-Apr-10 11:11 
GeneralRe: how to properly display buttons over an image Pin
genush8-Apr-10 11:43
genush8-Apr-10 11:43 
GeneralRe: how to properly display buttons over an image Pin
Eugen Podsypalnikov8-Apr-10 20:04
Eugen Podsypalnikov8-Apr-10 20:04 
GeneralRe: how to properly display buttons over an image Pin
genush9-Apr-10 4:07
genush9-Apr-10 4:07 
QuestionHow to add copy and paste functionality for CListCtrl Pin
yvanc8-Apr-10 4:31
yvanc8-Apr-10 4:31 
AnswerRe: How to add copy and paste functionality for CListCtrl Pin
eusto8-Apr-10 7:48
eusto8-Apr-10 7:48 
QuestionMarquee Progess Bar Pin
JM22518-Apr-10 3:40
JM22518-Apr-10 3:40 
AnswerRe: Marquee Progess Bar Pin
Nuri Ismail8-Apr-10 4:05
Nuri Ismail8-Apr-10 4:05 
AnswerRe: Marquee Progess Bar Pin
Cool_Dev8-Apr-10 4:20
Cool_Dev8-Apr-10 4:20 
GeneralRe: Marquee Progess Bar Pin
JM22518-Apr-10 20:31
JM22518-Apr-10 20:31 
GeneralRe: Marquee Progess Bar Pin
Emilio Garavaglia8-Apr-10 21:48
Emilio Garavaglia8-Apr-10 21:48 
GeneralRe: Marquee Progess Bar Pin
Cool_Dev8-Apr-10 22:26
Cool_Dev8-Apr-10 22:26 
as emilo told, you can see those values in CommCtrl.h as
#if (_WIN32_WINNT >= 0x0501)
#define PBS_MARQUEE             0x08
#endif       // _WIN32_WINNT >= 0x0501

#if (_WIN32_WINNT >= 0x0501)
#define PBM_SETMARQUEE          (WM_USER+10)
#endif      // _WIN32_WINNT >= 0x0501


so check your source code (probably in targetver.h) for #define _WIN32_WINNT and check the value.

Also, you can try defining those values manually in your code as
#define PBS_MARQUEE 0x08
#define PBM_SETMARQUEE (WM_USER+10)

Thumbs Up | :thumbsup:
GeneralRe: Marquee Progess Bar Pin
Emilio Garavaglia9-Apr-10 3:04
Emilio Garavaglia9-Apr-10 3:04 

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.