Tip-Static control like 'Outlook Today's Tip'
Posted
by Smile Seo
on December 15th, 1999

Environment: VC6 SP2, NT4 SP5, CE 2.11, Windows Y2K
This Tip-Static control very smoothly show and hide Today's tip.I think this control is so simple and useful.
Just use it!!
Usage
- Include TipStatic.cpp and TipStatic.h in your project.
- Create a new CTipStatic class object and just invoke Create function.
In your header file. #include "TipStatic.cpp" class CMyDialog : public CDialog { .... // Attributes protected: CTipStatic m_ctrTipStatic; }; In your cpp file. int CMyDialog::OnCreate(LPCREATESTRUCT lpCreateStruct) { if (CDialog::OnCreate(lpCreateStruct) == -1) return -1; m_ctrTipStatic.Create("TipStatic",WS_VISIBLE|WS_CHILD, CRect(10,10, 100,120),this, IDC_TIP_STATIC); .... return 0; } - Initialize CTipStatic class object by using AddTip(), SetSliderColor(), SetSliderMode().
BOOL CStaticTipDlg::OnInitDialog() { CDialog::OnInitDialog(); .... // TODO: Add extra initialization here // Add Tip.. m_ctrTipStatic.AddTip("Hi\n Welcome to Cool-Tip Static!!\n\nSmile Seo"); m_ctrTipStatic.AddTip("Second.. Tip"); m_ctrTipStatic.AddTip("Third.. Tip"); m_ctrTipStatic.SetSliderColor(GetSysColor(COLOR_3DFACE)); m_ctrTipStatic.SetSliderMode(TRUE); .... return TRUE; // return TRUE unless you set the focus to a control } - Just call ShowNextTip() or ShowPrevTip().
Member Functions
Function prototype Description void AddTip(CString strTip) Add tip-text to the CTipStatic void SetSliderColor(COLORREF colSlider) If you use 'Slider', this 'colSlider' is wonderful effect just like 'Outlook today's tip'. void SetSliderMode(BOOL bSlider) Use 'slider' mode on not
Ajou University C.C. 4th member.
Downloads
Download demo project - 124 KbDownload source - 2 Kb

Comments
Bug
Posted by danandu on 07/17/2007 02:57am"MemDC.h is not found" error appears during compilation after commenting this line, the code compiles and it works
ReplyNice.
Posted by Legacy on 01/23/2004 12:00amOriginally posted by: sob
Wow.
Great.
Very useful.
Did that all by yourself did you?
Wow.
Amazing.
Keep up the good work!
Admin: Please filter out these kinds of tutorials.
Reply
ㄹ
Posted by Legacy on 07/29/2000 12:00amOriginally posted by: ㄹ
ㄹㄹㄹㄹ
Reply