Click here to Skip to main content
15,884,298 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: 2 forms link between label and textbox Pin
jamesmc153516-Jul-15 5:01
jamesmc153516-Jul-15 5:01 
GeneralRe: 2 forms link between label and textbox Pin
David Crow16-Jul-15 5:10
David Crow16-Jul-15 5:10 
GeneralRe: 2 forms link between label and textbox Pin
jamesmc153516-Jul-15 5:15
jamesmc153516-Jul-15 5:15 
AnswerRe: 2 forms link between label and textbox Pin
jamesmc153516-Jul-15 5:03
jamesmc153516-Jul-15 5:03 
AnswerRe: 2 forms link between label and textbox Pin
Richard Andrew x6416-Jul-15 13:08
professionalRichard Andrew x6416-Jul-15 13:08 
GeneralRe: 2 forms link between label and textbox Pin
jamesmc153516-Jul-15 20:42
jamesmc153516-Jul-15 20:42 
GeneralRe: 2 forms link between label and textbox Pin
Richard MacCutchan17-Jul-15 3:27
mveRichard MacCutchan17-Jul-15 3:27 
QuestionColoring scrollbar with DrawThemeBackground Pin
_Flaviu15-Jul-15 1:14
_Flaviu15-Jul-15 1:14 
I am struggling for some while to coloring a control scrollbar, with DrawThemeBackground. (any control, no matter what) ... here is the trial:
C++
void CMyControl::OnDraw(CDC* pDC)
{
// draw control
	HTHEME hTheme = OpenThemeData(m_hWnd, L"WINDOW");
//	HTHEME hTheme = OpenThemeData(m_hWnd, L"MFCGridCtrl");
	if(NULL != hTheme)
	{
		if(WS_VSCROLL & GetStyle())
		{
			SCROLLBARINFO si;
			si.cbSize = sizeof(SCROLLBARINFO);
			GetScrollBarInfo(OBJID_VSCROLL, &si);
			CRect rect(si.rcScrollBar);
			pDC->FillSolidRect(&rect, RGB(255, 0, 0));
			HRESULT hResult = DrawThemeBackground(hTheme, pDC->GetSafeHdc(), SBP_LOWERTRACKVERT, SCRBS_NORMAL, &rect, NULL);
			if(S_OK == hResult)
				TRACE("ok\n");
			else
				TRACE("not ok !\n");
		}
		CloseThemeData(hTheme);
	}
}

And I always get not ok ! ... What I'am doing wrong here ? The scrollbar rectangle are ok, I verified ... can you help me ? Thank you.
SuggestionRe: Coloring scrollbar with DrawThemeBackground Pin
Jochen Arndt15-Jul-15 1:39
professionalJochen Arndt15-Jul-15 1:39 
GeneralRe: Coloring scrollbar with DrawThemeBackground Pin
_Flaviu15-Jul-15 2:33
_Flaviu15-Jul-15 2:33 
GeneralRe: Coloring scrollbar with DrawThemeBackground Pin
Jochen Arndt15-Jul-15 3:15
professionalJochen Arndt15-Jul-15 3:15 
GeneralRe: Coloring scrollbar with DrawThemeBackground Pin
_Flaviu15-Jul-15 7:06
_Flaviu15-Jul-15 7:06 
GeneralRe: Coloring scrollbar with DrawThemeBackground Pin
_Flaviu10-Aug-15 23:57
_Flaviu10-Aug-15 23:57 
AnswerRe: Coloring scrollbar with DrawThemeBackground Pin
CPallini15-Jul-15 1:42
mveCPallini15-Jul-15 1:42 
GeneralRe: Coloring scrollbar with DrawThemeBackground Pin
_Flaviu15-Jul-15 7:08
_Flaviu15-Jul-15 7:08 
QuestionProject compiles but VS IDE shows red error lines Pin
AmbiguousName13-Jul-15 20:40
AmbiguousName13-Jul-15 20:40 
AnswerRe: Project compiles but VS IDE shows red error lines Pin
Stefan_Lang13-Jul-15 22:02
Stefan_Lang13-Jul-15 22:02 
AnswerRe: Project compiles but VS IDE shows red error lines Pin
AmbiguousName14-Jul-15 0:06
AmbiguousName14-Jul-15 0:06 
GeneralRe: Project compiles but VS IDE shows red error lines Pin
Stefan_Lang14-Jul-15 0:41
Stefan_Lang14-Jul-15 0:41 
GeneralRe: Project compiles but VS IDE shows red error lines Pin
Jochen Arndt14-Jul-15 0:53
professionalJochen Arndt14-Jul-15 0:53 
AnswerRe: Project compiles but VS IDE shows red error lines Pin
Richard MacCutchan13-Jul-15 22:13
mveRichard MacCutchan13-Jul-15 22:13 
QuestionHow to search large database without SQL or alike. Just asking. Pin
Vaclav_13-Jul-15 7:44
Vaclav_13-Jul-15 7:44 
GeneralRe: How to search large database without SQL or alike. Just asking. Pin
PIEBALDconsult13-Jul-15 8:10
mvePIEBALDconsult13-Jul-15 8:10 
AnswerRe: How to search large database without SQL or alike. Just asking. Pin
Richard MacCutchan13-Jul-15 22:11
mveRichard MacCutchan13-Jul-15 22:11 
AnswerRe: How to search large database without SQL or alike. Just asking. Pin
jschell15-Jul-15 10:36
jschell15-Jul-15 10:36 

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.