Click here to Skip to main content
15,886,791 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
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 
GeneralRe: Marquee Progess Bar Pin
Cool_Dev9-Apr-10 3:42
Cool_Dev9-Apr-10 3:42 
QuestionHow to assign Drive Letter to a volume? Pin
Madan Chauhan8-Apr-10 2:21
Madan Chauhan8-Apr-10 2:21 
AnswerRe: How to assign Drive Letter to a volume? Pin
Adam Roderick J8-Apr-10 2:31
Adam Roderick J8-Apr-10 2:31 
AnswerRe: How to assign Drive Letter to a volume? Pin
KarstenK8-Apr-10 3:08
mveKarstenK8-Apr-10 3:08 
QuestionHow could I run one of my class member Functions in a new thread: Pin
m_code8-Apr-10 2:09
m_code8-Apr-10 2:09 
AnswerRe: How could I run one of my class member Functions in a new thread: Pin
Adam Roderick J8-Apr-10 2:20
Adam Roderick J8-Apr-10 2:20 
AnswerRe: How could I run one of my class member Functions in a new thread: Pin
Cool_Dev8-Apr-10 2:24
Cool_Dev8-Apr-10 2:24 
GeneralRe: How could I run one of my class member Functions in a new thread: Pin
m_code8-Apr-10 3:03
m_code8-Apr-10 3:03 
GeneralMessage Removed Pin
8-Apr-10 3:28
Eugen Podsypalnikov8-Apr-10 3:28 
GeneralRe: How could I run one of my class member Functions in a new thread: Pin
m_code8-Apr-10 3:44
m_code8-Apr-10 3:44 
AnswerRe: How could I run one of my class member Functions in a new thread: Pin
KarstenK8-Apr-10 3:41
mveKarstenK8-Apr-10 3:41 
GeneralRe: How could I run one of my class member Functions in a new thread: Pin
m_code8-Apr-10 3:50
m_code8-Apr-10 3:50 
GeneralRe: How could I run one of my class member Functions in a new thread: Pin
KarstenK8-Apr-10 4:09
mveKarstenK8-Apr-10 4:09 
QuestionCreateBitmapIndirect() doesnt create bitmap Pin
globus0008-Apr-10 2:08
globus0008-Apr-10 2:08 
AnswerRe: CreateBitmapIndirect() doesnt create bitmap Pin
KarstenK8-Apr-10 3:23
mveKarstenK8-Apr-10 3:23 
AnswerRe: CreateBitmapIndirect() doesnt create bitmap Pin
Jonathan Davies8-Apr-10 5:23
Jonathan Davies8-Apr-10 5:23 

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.