Click here to Skip to main content
15,905,144 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionRe: Function Enquiry Pin
prasad_som3-Apr-07 1:41
prasad_som3-Apr-07 1:41 
AnswerRe: Function Enquiry Pin
Programm3r3-Apr-07 2:05
Programm3r3-Apr-07 2:05 
QuestionGDI+ & MFC - Resizing problem Pin
FreeCastle2-Apr-07 23:54
FreeCastle2-Apr-07 23:54 
AnswerRe: GDI+ & MFC - Resizing problem Pin
Parthi_Appu2-Apr-07 23:59
Parthi_Appu2-Apr-07 23:59 
GeneralRe: GDI+ & MFC - Resizing problem Pin
FreeCastle3-Apr-07 1:01
FreeCastle3-Apr-07 1:01 
GeneralRe: GDI+ & MFC - Resizing problem Pin
Parthi_Appu3-Apr-07 1:15
Parthi_Appu3-Apr-07 1:15 
GeneralRe: GDI+ & MFC - Resizing problem Pin
FreeCastle3-Apr-07 2:01
FreeCastle3-Apr-07 2:01 
GeneralRe: GDI+ & MFC - Resizing problem Pin
Parthi_Appu3-Apr-07 2:16
Parthi_Appu3-Apr-07 2:16 
Do as below,

OnPaint(..)
{
 CPaintDC dc(this);
 DrawLines(&dc);
 //CDialog::OnPaint(); /* Don't call this */
}

OnSize()
{
 /* No Need for this */
}

DrawLines(CDC* pDC)
{
 Graphics g(pDC->m_hDC);
 Pen pen(Color::Red);
 CRect rc; GetClientRect(rc);
 g.DrawLine(&pen, 10, 10, rc.Width() - 20, 10);
 g.DrawLine(&pen, 10, 10, 10, rc.Height() - 20);
}






Do your Duty and Don't expect the Result
Rate this Post, if I helped You

GeneralRe: GDI+ & MFC - Resizing problem Pin
FreeCastle3-Apr-07 3:17
FreeCastle3-Apr-07 3:17 
GeneralRe: GDI+ & MFC - Resizing problem Pin
Mark Salsbery3-Apr-07 8:19
Mark Salsbery3-Apr-07 8:19 
QuestionCircle Equation Pin
faridah_hani2-Apr-07 23:24
faridah_hani2-Apr-07 23:24 
AnswerRe: Circle Equation Pin
_AnsHUMAN_ 2-Apr-07 23:43
_AnsHUMAN_ 2-Apr-07 23:43 
QuestionRe: Circle Equation Pin
David Crow3-Apr-07 2:56
David Crow3-Apr-07 2:56 
AnswerRe: Circle Equation Pin
Hamid_RT3-Apr-07 6:18
Hamid_RT3-Apr-07 6:18 
Questionwindows recycle bin Pin
apoluo2-Apr-07 23:14
apoluo2-Apr-07 23:14 
AnswerRe: windows recycle bin Pin
Parthi_Appu3-Apr-07 0:07
Parthi_Appu3-Apr-07 0:07 
GeneralRe: windows recycle bin Pin
apoluo3-Apr-07 4:42
apoluo3-Apr-07 4:42 
GeneralRe: windows recycle bin Pin
apoluo3-Apr-07 4:44
apoluo3-Apr-07 4:44 
AnswerRe: windows recycle bin Pin
Hamid_RT3-Apr-07 6:18
Hamid_RT3-Apr-07 6:18 
Questionlinker problem VS2005 and lua library Pin
abac_mefisto2-Apr-07 22:58
abac_mefisto2-Apr-07 22:58 
GeneralRe: linker problem VS2005 and lua library Pin
prasad_som3-Apr-07 1:53
prasad_som3-Apr-07 1:53 
QuestionRe: linker problem VS2005 and lua library Pin
abac_mefisto3-Apr-07 2:19
abac_mefisto3-Apr-07 2:19 
AnswerRe: linker problem VS2005 and lua library Pin
prasad_som3-Apr-07 2:33
prasad_som3-Apr-07 2:33 
GeneralRe: linker problem VS2005 and lua library Pin
abac_mefisto3-Apr-07 2:23
abac_mefisto3-Apr-07 2:23 
QuestionHow to paint background of a CWnd derived class? Pin
narayanagvs2-Apr-07 22:56
narayanagvs2-Apr-07 22:56 

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.