Click here to Skip to main content
15,906,947 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: help needed for VS2005 add-in using native c++ Pin
MF15-Jan-06 19:48
MF15-Jan-06 19:48 
GeneralRe: help needed for VS2005 add-in using native c++ Pin
Saurabh.Garg15-Jan-06 19:53
Saurabh.Garg15-Jan-06 19:53 
QuestionHow to visible the background buttons when I change the back ground color Pin
S_a_n15-Jan-06 18:20
S_a_n15-Jan-06 18:20 
AnswerRe: How to visible the background buttons when I change the back ground color Pin
Owner drawn15-Jan-06 18:27
Owner drawn15-Jan-06 18:27 
GeneralRe: How to visible the background buttons when I change the back ground color Pin
S_a_n15-Jan-06 18:44
S_a_n15-Jan-06 18:44 
GeneralDon't use FillRect() there Pin
Owner drawn15-Jan-06 18:47
Owner drawn15-Jan-06 18:47 
GeneralRe: Don't use FillRect() Pin
S_a_n15-Jan-06 18:51
S_a_n15-Jan-06 18:51 
GeneralRe: Don't use FillRect() Pin
Owner drawn15-Jan-06 18:55
Owner drawn15-Jan-06 18:55 
BEGIN_MESSAGE_MAP(CMsgTesterView, CFormView)
        //...other map entries
	<code>ON_WM_ERASEBKGND()//yeap here is it.</code>
END_MESSAGE_MAP()

BOOL CYourView::OnEraseBkgnd(CDC* pDC)
{
	RECT r;
	GetClientRect(&r);
	pDC->FillSolidRect(&r, RGB(120,230,120));//:cool: gives a light green color
	return TRUE;
}


Jesus LovesRose | [Rose]
<marquee direction="up" height="40" scrolldelay="1" step="1" scrollamount="1" style="background:#aabbcc;border-bottom:thin solid 1px #6699cc">
--Owner DrawnRose | [Rose]
--Nothing special
--Defeat is temporary but surrender is permanent
--Never say quits
--Jesus is LordRose | [Rose]

GeneralRe: Don't use FillRect() Pin
S_a_n15-Jan-06 19:42
S_a_n15-Jan-06 19:42 
GeneralRe: Don't use FillRect() Pin
Owner drawn15-Jan-06 19:50
Owner drawn15-Jan-06 19:50 
GeneralRe: Don't use FillRect() Pin
S_a_n15-Jan-06 20:03
S_a_n15-Jan-06 20:03 
GeneralRe: How to visible the background buttons when I change the back ground color Pin
Stephen Hewitt15-Jan-06 18:57
Stephen Hewitt15-Jan-06 18:57 
QuestionThere isn't any error when access private member variable directly in copy constructor... Pin
followait15-Jan-06 17:51
followait15-Jan-06 17:51 
AnswerRe: There isn't any error when access private member variable directly in copy constructor... Pin
Saurabh.Garg15-Jan-06 18:03
Saurabh.Garg15-Jan-06 18:03 
AnswerRe: There isn't any error when access private member variable directly in copy constructor... Pin
Sebastian Schneider15-Jan-06 22:48
Sebastian Schneider15-Jan-06 22:48 
GeneralRe: There isn't any error when access private member variable directly in copy constructor... Pin
Owner drawn16-Jan-06 17:04
Owner drawn16-Jan-06 17:04 
Answermany thanks Pin
followait16-Jan-06 15:11
followait16-Jan-06 15:11 
Questionrelated to Socket Pin
baldha rakesh15-Jan-06 17:21
baldha rakesh15-Jan-06 17:21 
AnswerRe: related to Socket Pin
kevincwong15-Jan-06 18:20
kevincwong15-Jan-06 18:20 
AnswerRe: related to Socket Pin
sunit515-Jan-06 19:28
sunit515-Jan-06 19:28 
AnswerRe: related to Socket Pin
Prakash Nadar15-Jan-06 19:30
Prakash Nadar15-Jan-06 19:30 
AnswerRe: related to Socket Pin
vikas amin16-Jan-06 0:47
vikas amin16-Jan-06 0:47 
Questioncall FindFirstPrinterChangeNotification() Get Error 997? Pin
szcococut15-Jan-06 16:30
szcococut15-Jan-06 16:30 
AnswerRe: call FindFirstPrinterChangeNotification() Get Error 997? Pin
Prakash Nadar15-Jan-06 19:32
Prakash Nadar15-Jan-06 19:32 
GeneralRe: call FindFirstPrinterChangeNotification() Get Error 997? Pin
szcococut15-Jan-06 20:11
szcococut15-Jan-06 20:11 

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.