How to: Add Tip of the Day to MFC app using VS.NET

  • Thread starter Thread starter EMonaco
  • Start date Start date
E

EMonaco

Anyone know how to add the standard tip of day dialog to an existing MFC app
now compiled on VS.NET? It used to be in the component gallery but I can't
seem to find this or figure out how to do it in VS.NET. Any help would be
appreciated.

Regards,
Erin.
 
Hi Erin,
Anyone know how to add the standard tip of day dialog to an existing MFC app
now compiled on VS.NET? It used to be in the component gallery but I can't
seem to find this or figure out how to do it in VS.NET.

Unfortunately, the VC7 doesn't provide the "Tip of the Day" component
again, but you can implement it with yourself, it is just a modal dialog
which displayed in the end of the app's InitInstance() function, the
following are some custom "Tip of the Day" dialog projects of the VC6 and
above, wish you can find the implementation approach from them:

http://www.codeguru.com/Cpp/W-D/dislog/tipoftheday/article.php/c1957/
http://www.codeguru.com/Cpp/W-D/dislog/tipoftheday/article.php/c4993/


Thanks for your understanding!

Best regards,

Gary Chang
Microsoft Online Partner Support

Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
 
Gary,

I appreciate your quick response. While waiting for a response last night
I ended up doing exactly what you suggested. I was able to get it up and
running! :)

Regards,
Erin.
 
Back
Top