Click here to Skip to main content
15,901,284 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: PostMessage and MSG handler Pin
Jon Marcus24-Jul-01 12:06
Jon Marcus24-Jul-01 12:06 
GeneralCPropertySheet in wizard mode Pin
Jon Sagara23-Jul-01 11:23
Jon Sagara23-Jul-01 11:23 
GeneralRe: CPropertySheet in wizard mode Pin
Paolo Messina23-Jul-01 12:27
professionalPaolo Messina23-Jul-01 12:27 
GeneralRe: CPropertySheet in wizard mode Pin
Jon Sagara23-Jul-01 12:40
Jon Sagara23-Jul-01 12:40 
GeneralBlinking label. Pin
John Uhlenbrock23-Jul-01 11:06
John Uhlenbrock23-Jul-01 11:06 
GeneralRe: Blinking label. Pin
Christian Graus23-Jul-01 12:15
protectorChristian Graus23-Jul-01 12:15 
GeneralRe: Blinking label. Pin
John Uhlenbrock24-Jul-01 7:12
John Uhlenbrock24-Jul-01 7:12 
GeneralRe: Blinking label. Pin
Christian Graus24-Jul-01 10:46
protectorChristian Graus24-Jul-01 10:46 
Not at all. Have you not used WM_TIMER before ? There is a tutorla here on how it's done, but the essence of it is on startup:

SetTImer(42,1000,NULL);

in OnTimer

if (nIDEvent==42) // I may have the variable name wrong ;0)
{
m_bFlash = !m_bFlash; // You need to create this
m_MyStatic.ShowWindow(m_bFlash ? SW_SHOW : SW_HIDE);
}



Christian

#include "std_disclaimer.h"

The careful application of terror is also a form of communication.

Eagles may soar, but weasels don't get sucked into jet engines.
QuestionWhy my four radio buttons show up but no text next to them? Pin
tm23-Jul-01 10:39
tm23-Jul-01 10:39 
AnswerRe: Why my four radio buttons show up but no text next to them? Pin
Paolo Messina23-Jul-01 12:24
professionalPaolo Messina23-Jul-01 12:24 
GeneralRe: Why my four radio buttons show up but no text next to them? Pin
tm23-Jul-01 12:32
tm23-Jul-01 12:32 
GeneralRe: Why my four radio buttons show up but no text next to them? Pin
Paolo Messina23-Jul-01 12:37
professionalPaolo Messina23-Jul-01 12:37 
GeneralRe: Why my four radio buttons show up but no text next to them? Pin
23-Jul-01 14:53
suss23-Jul-01 14:53 
GeneralRe: Why my four radio buttons show up but no text next to them? Pin
Paolo Messina24-Jul-01 3:41
professionalPaolo Messina24-Jul-01 3:41 
GeneralMonitoring Clipboard Pin
23-Jul-01 9:56
suss23-Jul-01 9:56 
GeneralRe: Monitoring Clipboard Pin
Michael Dunn23-Jul-01 10:28
sitebuilderMichael Dunn23-Jul-01 10:28 
GeneralInitial Update in CDialog Pin
23-Jul-01 9:12
suss23-Jul-01 9:12 
GeneralRe: Initial Update in CDialog Pin
Chris Losinger23-Jul-01 9:24
professionalChris Losinger23-Jul-01 9:24 
GeneralA simple question... Pin
23-Jul-01 9:11
suss23-Jul-01 9:11 
GeneralRe: A simple question... Pin
Chris Losinger23-Jul-01 9:23
professionalChris Losinger23-Jul-01 9:23 
GeneralI've tried it but... Pin
23-Jul-01 12:35
suss23-Jul-01 12:35 
GeneralRe: I've tried it but... Pin
Paolo Messina23-Jul-01 12:45
professionalPaolo Messina23-Jul-01 12:45 
GeneralRe: I've tried it but... Pin
Andrew Peace23-Jul-01 13:05
Andrew Peace23-Jul-01 13:05 
GeneralRe: I've tried it but... Pin
Reid23-Jul-01 13:37
Reid23-Jul-01 13:37 
GeneralRe: I've tried it but... Pin
Andrew Peace23-Jul-01 13:44
Andrew Peace23-Jul-01 13: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.