Click here to Skip to main content
15,922,894 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: How to get data from database into a propertypage Pin
vc++_fragrance5-Jul-06 22:12
vc++_fragrance5-Jul-06 22:12 
QuestionFont of text on button with color Pin
ashish dogra5-Jul-06 20:27
ashish dogra5-Jul-06 20:27 
AnswerRe: Font of text on button with color Pin
Abhi Lahare5-Jul-06 20:32
Abhi Lahare5-Jul-06 20:32 
GeneralRe: Font of text on button with color Pin
ashish dogra5-Jul-06 20:39
ashish dogra5-Jul-06 20:39 
AnswerRe: Font of text on button with color Pin
Hamid_RT5-Jul-06 20:40
Hamid_RT5-Jul-06 20:40 
GeneralRe: Font of text on button with color [modified] Pin
ashish dogra5-Jul-06 20:50
ashish dogra5-Jul-06 20:50 
GeneralRe: Font of text on button with color Pin
Hamid_RT5-Jul-06 21:29
Hamid_RT5-Jul-06 21:29 
GeneralRe: Font of text on button with color Pin
ashish dogra5-Jul-06 22:21
ashish dogra5-Jul-06 22:21 
CDC dc;
CRect Rect(lpDrawItemStruct->rcItem);
dc.Attach(lpDrawItemStruct->hDC);
dc.SetBkMode(0);
{
dc.FillRect(Rect,&CBrush(RGB(0,100,0)));
dc.SetTextColor(RGB(255,0,0));
dc.DrawText("Click",Rect,DT_CENTER|DT_SINGLELINE);
dc.SelectObject(m_button);
//for font
CFont pp;
pp.DeleteObject();
pp.CreateFont(30,0,0,0,0,0,0,0,0,0,0,0,0,"arial");
m_button.SetFont(&pp);
}

Ashish Dogra
MCA
Noida
GeneralRe: Font of text on button with color Pin
Hamid_RT6-Jul-06 1:00
Hamid_RT6-Jul-06 1:00 
AnswerRe: Font of text on button with color Pin
Sarath C5-Jul-06 21:13
Sarath C5-Jul-06 21:13 
Questionplease tell me what is the breakpoint how we can use this in our progarm [modified] Pin
vasusree5-Jul-06 20:22
vasusree5-Jul-06 20:22 
AnswerRe: please tell me what is the breakpoint how we can use this in our progarm [modified] Pin
Sarath C5-Jul-06 21:06
Sarath C5-Jul-06 21:06 
GeneralRe: please tell me what is the breakpoint how we can use this in our progarm Pin
vasusree5-Jul-06 21:16
vasusree5-Jul-06 21:16 
QuestionAccessing control from another dialog.. Pin
sach!!5-Jul-06 19:51
sach!!5-Jul-06 19:51 
AnswerRe: Accessing control from another dialog.. Pin
_AnsHUMAN_ 5-Jul-06 20:07
_AnsHUMAN_ 5-Jul-06 20:07 
GeneralRe: Accessing control from another dialog.. Pin
Uday Janaswamy5-Jul-06 20:19
Uday Janaswamy5-Jul-06 20:19 
GeneralRe: Accessing control from another dialog.. Pin
_AnsHUMAN_ 5-Jul-06 20:34
_AnsHUMAN_ 5-Jul-06 20:34 
GeneralRe: Accessing control from another dialog.. Pin
Uday Janaswamy5-Jul-06 20:38
Uday Janaswamy5-Jul-06 20:38 
GeneralRe: Accessing control from another dialog.. Pin
_AnsHUMAN_ 5-Jul-06 20:47
_AnsHUMAN_ 5-Jul-06 20:47 
GeneralRe: Accessing control from another dialog.. Pin
_AnsHUMAN_ 5-Jul-06 20:53
_AnsHUMAN_ 5-Jul-06 20:53 
GeneralRe: Accessing control from another dialog.. Pin
Rajesh R Subramanian5-Jul-06 20:37
professionalRajesh R Subramanian5-Jul-06 20:37 
GeneralRe: Accessing control from another dialog.. Pin
Uday Janaswamy5-Jul-06 20:41
Uday Janaswamy5-Jul-06 20:41 
GeneralRe: Accessing control from another dialog.. Pin
sach!!5-Jul-06 20:50
sach!!5-Jul-06 20:50 
GeneralRe: Accessing control from another dialog.. [modified] Pin
_AnsHUMAN_ 5-Jul-06 20:55
_AnsHUMAN_ 5-Jul-06 20:55 
GeneralRe: Accessing control from another dialog.. Pin
Uday Janaswamy5-Jul-06 20:54
Uday Janaswamy5-Jul-06 20:54 

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.