Feb 17, 2002 #1 Fugitive Programmer Feb 17, 2002 1 PK I need to update my dialog every 5 second using a clock pulse how can i do it.
Feb 17, 2002 #2 TGM IS-IT--Management Mar 14, 2001 141 BE Hi Well, Create a timer in OnInitDialog using the function SetTimer if ( SetTimer( ID_TIMER, 5000, NULL) != ID_TIMER) AfxMessageBox( "Oops !!! No More Timer); Now add the OnTimer handler using Class Wizard and do what you need to do in this function HTH Thierry EMail: Thierry.Marneffe@swing.be WebSite:http://users.swing.be/TGMSoft/ Upvote 0 Downvote
Hi Well, Create a timer in OnInitDialog using the function SetTimer if ( SetTimer( ID_TIMER, 5000, NULL) != ID_TIMER) AfxMessageBox( "Oops !!! No More Timer); Now add the OnTimer handler using Class Wizard and do what you need to do in this function HTH Thierry EMail: Thierry.Marneffe@swing.be WebSite:http://users.swing.be/TGMSoft/