MFC class "Tip of the Day" like WinZip
Posted
by Alexey Kazakovsky
on February 12th, 2002
Environment: VC6
This control CStartupTip helps to create a dialog
"Tip of the Day" like WinZip "Tip of the Day". It splits tip text
into strings and displays these strings in special multi-line window.
CStartupTip is derived from CStatic.
Usage:
- Include StartupTip.cpp and StartupTip.h in your project
- Create new CStartupTip class object (for example, m_tip) and just invoke create function like you create a standard CStatic object.
- Set tip text, icon and parameters of the control:
BOOL CTipsDlg::OnInitDialog() { ... // TODO: Add extra initialization here m_tip.SetMaxLen(40); m_tip.SetTipText("This is a test"); m_tip.SetIcon(IDR_TIPICON); return TRUE; }; - Call SetTipText or SetIcon to change text or icon
Member functions:
- SetTipText(LPCTSTR lpText) - set the text of the tip. The text will be splitted into strings (maximum 10) bounded by whole word. The words must be separated by spaces. Maximum lenght of the text depends on maximum symbols in the string that is defined by SetMaxLen function
- SetMaxLen(int n) - set the maximum lenght (in symbols) of the string. The string must be no more than 100 symbols. Default is 50 symbols.
- SetIcon(UINT n) - set an icon in the LeftPane. n - resource id of the icon.
- SetLeftPaneColor(COLORREF color) - set a color of the LeftPane. Default is RGB(132,130,132)
- SetBgColor(COLORREF color) - set a background color Default is RGB(255,255,255)
- SetLeftPaneSize(int n) - set a size of the LeftPane. Default is 50 pixels
Downloads
Download demo project - 14KB KbDownload source - 3KB

Comments
There are no comments yet. Be the first to comment!