Click here to Skip to main content
16,011,626 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Questionchange window region on mouse over Pin
funkaster30-Aug-05 8:30
funkaster30-Aug-05 8:30 
QuestionLinker error LNK2001 Pin
fenixk1930-Aug-05 7:40
fenixk1930-Aug-05 7:40 
AnswerRe: Linker error LNK2001 Pin
Mohammad A Gdeisat30-Aug-05 8:02
Mohammad A Gdeisat30-Aug-05 8:02 
QuestionHow to Use SetFocus() ? Pin
MacKrish30-Aug-05 7:39
MacKrish30-Aug-05 7:39 
AnswerRe: How to Use SetFocus() ? Pin
Ravi Bhavnani30-Aug-05 8:52
professionalRavi Bhavnani30-Aug-05 8:52 
GeneralRe: How to Use SetFocus() ? Pin
Amarelia30-Aug-05 22:29
Amarelia30-Aug-05 22:29 
GeneralRe: How to Use SetFocus() ? Pin
Ravi Bhavnani31-Aug-05 1:40
professionalRavi Bhavnani31-Aug-05 1:40 
QuestionOver-riding ToolTip Text in an CSliderCtrl Pin
sharpanil30-Aug-05 7:39
sharpanil30-Aug-05 7:39 
I am having trouble overiding the default tooltip text that displays the tick count in a slider control.

My code is below. Any suggestion is greatly appreciated.

void CGraphView::OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar)
{
static CString strMinutes;
CToolTipCtrl *pTool;

if ((CSliderCtrl*)pScrollBar == &m_Slide &&
(nSBCode == SB_THUMBPOSITION || nSBCode == SB_THUMBTRACK)
)
{
pTool = m_Slide.GetToolTips();

strMinutes = "Test";
pTool->UpdateTipText(strMinutes, this);
pTool->Update();
}
CFormView::OnHScroll(nSBCode, nPos, pScrollBar);
}


sharpanil@yahoo.com
Questionerror using #pragma pack(...) Pin
wookie18230-Aug-05 6:53
wookie18230-Aug-05 6:53 
AnswerRe: error using #pragma pack(...) Pin
Rick York30-Aug-05 14:21
mveRick York30-Aug-05 14:21 
AnswerRe: error using #pragma pack(...) Pin
Jose Lamas Rios30-Aug-05 18:22
Jose Lamas Rios30-Aug-05 18:22 
QuestionRegistering controls using code Pin
Tom Wright30-Aug-05 6:39
Tom Wright30-Aug-05 6:39 
QuestionSendInput Problem Pin
Mohammad A Gdeisat30-Aug-05 6:18
Mohammad A Gdeisat30-Aug-05 6:18 
AnswerRe: SendInput Problem Pin
Rage30-Aug-05 7:05
professionalRage30-Aug-05 7:05 
GeneralRe: SendInput Problem Pin
Mohammad A Gdeisat30-Aug-05 7:51
Mohammad A Gdeisat30-Aug-05 7:51 
AnswerRe: SendInput Problem Pin
Jose Lamas Rios30-Aug-05 8:54
Jose Lamas Rios30-Aug-05 8:54 
GeneralRe: SendInput Problem Pin
Mohammad A Gdeisat30-Aug-05 10:22
Mohammad A Gdeisat30-Aug-05 10:22 
GeneralRe: SendInput Problem Pin
Jose Lamas Rios30-Aug-05 18:13
Jose Lamas Rios30-Aug-05 18:13 
QuestionProblem with Chris Mounder grid and KB893803v2 windows uppgrade. Pin
morefalt30-Aug-05 5:29
morefalt30-Aug-05 5:29 
QuestionI created an add-in for Visual C++ 6, please give me some comments and suggestions ^_^ Pin
ahzhuo30-Aug-05 5:04
ahzhuo30-Aug-05 5:04 
AnswerRe: I created an add-in for Visual C++ 6, please give me some comments and suggestions ^_^ Pin
toxcct30-Aug-05 5:06
toxcct30-Aug-05 5:06 
GeneralRe: I created an add-in for Visual C++ 6, please give me some comments and suggestions ^_^ Pin
ahzhuo30-Aug-05 5:13
ahzhuo30-Aug-05 5:13 
GeneralRe: I created an add-in for Visual C++ 6, please give me some comments and suggestions ^_^ Pin
toxcct30-Aug-05 5:14
toxcct30-Aug-05 5:14 
GeneralRe: I created an add-in for Visual C++ 6, please give me some comments and suggestions ^_^ Pin
toxcct30-Aug-05 5:16
toxcct30-Aug-05 5:16 
GeneralRe: I created an add-in for Visual C++ 6, please give me some comments and suggestions ^_^ Pin
Eytukan30-Aug-05 5:26
Eytukan30-Aug-05 5:26 

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.