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

C / C++ / MFC

 
QuestionTesting tool Pin
spsharma26-Jun-07 0:30
spsharma26-Jun-07 0:30 
QuestionRe: Testing tool Pin
Hans Dietrich26-Jun-07 2:40
mentorHans Dietrich26-Jun-07 2:40 
AnswerRe: Testing tool Pin
spsharma26-Jun-07 3:06
spsharma26-Jun-07 3:06 
QuestionHow to change the background of mainframe and status bar - Urgent Pin
BlrBoy26-Jun-07 0:16
BlrBoy26-Jun-07 0:16 
AnswerRe: How to change the background of mainframe and status bar - Urgent Pin
Christian Graus26-Jun-07 0:38
protectorChristian Graus26-Jun-07 0:38 
GeneralRe: How to change the background of mainframe and status bar - Urgent Pin
BlrBoy26-Jun-07 0:47
BlrBoy26-Jun-07 0:47 
QuestionRe: How to change the background of mainframe and status bar - Urgent Pin
Mark Salsbery26-Jun-07 6:26
Mark Salsbery26-Jun-07 6:26 
QuestionC++ File Pin
T.RATHA KRISHNAN25-Jun-07 23:59
T.RATHA KRISHNAN25-Jun-07 23:59 
AnswerRe: C++ File Pin
Christian Graus26-Jun-07 0:11
protectorChristian Graus26-Jun-07 0:11 
QuestionRe: C++ File Pin
T.RATHA KRISHNAN26-Jun-07 0:21
T.RATHA KRISHNAN26-Jun-07 0:21 
AnswerRe: C++ File Pin
Christian Graus26-Jun-07 0:34
protectorChristian Graus26-Jun-07 0:34 
QuestionRe: C++ File Pin
Hamid_RT26-Jun-07 0:21
Hamid_RT26-Jun-07 0:21 
AnswerRe: C++ File Pin
T.RATHA KRISHNAN26-Jun-07 0:23
T.RATHA KRISHNAN26-Jun-07 0:23 
AnswerRe: C++ File Pin
Rajkumar R26-Jun-07 2:09
Rajkumar R26-Jun-07 2:09 
QuestionProblem converting project from VC6 to VC8 Pin
Skarrin25-Jun-07 23:56
Skarrin25-Jun-07 23:56 
AnswerRe: Problem converting project from VC6 to VC8 Pin
Christian Graus26-Jun-07 0:33
protectorChristian Graus26-Jun-07 0:33 
GeneralRe: Problem converting project from VC6 to VC8 Pin
Skarrin26-Jun-07 0:55
Skarrin26-Jun-07 0:55 
AnswerRe: Problem converting project from VC6 to VC8 Pin
Mark Salsbery26-Jun-07 6:34
Mark Salsbery26-Jun-07 6:34 
QuestionButton with Icon not showing tooltip Pin
_AnsHUMAN_ 25-Jun-07 23:47
_AnsHUMAN_ 25-Jun-07 23:47 
AnswerRe: Button with Icon not showing tooltip Pin
Hamid_RT26-Jun-07 0:33
Hamid_RT26-Jun-07 0:33 
GeneralRe: Button with Icon not showing tooltip Pin
_AnsHUMAN_ 26-Jun-07 1:30
_AnsHUMAN_ 26-Jun-07 1:30 
GeneralRe: Button with Icon not showing tooltip Pin
Hamid_RT26-Jun-07 19:20
Hamid_RT26-Jun-07 19:20 
GeneralRe: Button with Icon not showing tooltip Pin
_AnsHUMAN_ 26-Jun-07 19:12
_AnsHUMAN_ 26-Jun-07 19:12 
QuestionLoading bitmap on Combo control Pin
naveen27gupta25-Jun-07 23:20
naveen27gupta25-Jun-07 23:20 
I need to load 2 bitmaps alternatively on the arrow mark of the combo contol(owner draw combo cotrol). This process should take place continuously so that the arrow mark looks as if it is blinking.
if have done this by using a timer which calls the code every second. But after some time the application is being CRASHED.

The code i have used is ,

if(variable == TRUE)
{
m_ctlMode.SetBitmap(IDB_BITMAP_COMBO);
variable = FALSE;
}
else
{
m_ctlMode.SetBitmap(IDB_BITMAP_RED);
variable = TRUE;
}
m_ctlMode.Invalidate(TRUE);

Here m_ctlMode is the control variable of the combo box.
Please can anyone say me how to come out of this problem

Naveen
AnswerRe: Loading bitmap on Combo control Pin
Iain Clarke, Warrior Programmer25-Jun-07 23:44
Iain Clarke, Warrior Programmer25-Jun-07 23:44 

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.