Click here to Skip to main content
15,921,577 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: [Message Deleted] Pin
ThatsAlok18-Jun-06 22:17
ThatsAlok18-Jun-06 22:17 
QuestionRe: [Message Deleted] Pin
Hamid_RT18-Jun-06 23:19
Hamid_RT18-Jun-06 23:19 
Question"How can show me save/load a file in MFC plz!" Pin
secddos18-Jun-06 17:26
secddos18-Jun-06 17:26 
AnswerRe: "How can show me save/load a file in MFC plz!" [modified] Pin
_AnsHUMAN_ 18-Jun-06 17:41
_AnsHUMAN_ 18-Jun-06 17:41 
QuestionRe: "How can show me save/load a file in MFC plz!" Pin
Laxman Auti18-Jun-06 18:45
Laxman Auti18-Jun-06 18:45 
AnswerRe: "How can show me save/load a file in MFC plz!" Pin
ThatsAlok18-Jun-06 19:17
ThatsAlok18-Jun-06 19:17 
AnswerRe: "How can show me save/load a file in MFC plz!" Pin
Hamid_RT18-Jun-06 23:13
Hamid_RT18-Jun-06 23:13 
Questiondialog background color not changing [modified] Pin
locoone18-Jun-06 16:59
locoone18-Jun-06 16:59 
my code is below the messagebox never goes off so i know its not working am i missing something? Confused | :confused:
do i need to call it somehow ?

BOOL CMp3Dlg::OnEraseBkgnd(CDC *pDC)
{
AfxMessageBox("kik");
CPen myPen[64] ;
int i ;
CRect rect ;
for (i = 0 ; i <= 60 ; i++)
myPen[i].CreatePen(PS_SOLID, 1, RGB ((i * 4),(i * 4),(i * 4)));
CPen *oldPen = pDC->SelectObject(&myPen[0]) ;
GetClientRect(&rect);
for(i = 0 ; i <= rect.bottom;)
{
pDC->MoveTo(0, i);
pDC->LineTo(rect.right, i);
i++;
pDC->SelectObject (&myPen[i * 64 / rect.bottom]);
}
pDC->SelectObject(oldPen) ;
return TRUE ;
}

-- modified at 23:00 Sunday 18th June, 2006
AnswerRe: dialog background color not changing Pin
Randor 18-Jun-06 17:09
professional Randor 18-Jun-06 17:09 
GeneralRe: dialog background color not changing Pin
locoone18-Jun-06 17:21
locoone18-Jun-06 17:21 
AnswerRe: dialog background color not changing Pin
Laxman Auti18-Jun-06 18:50
Laxman Auti18-Jun-06 18:50 
GeneralRe: dialog background color not changing Pin
locoone19-Jun-06 11:33
locoone19-Jun-06 11:33 
AnswerRe: dialog background color not changing Pin
Laxman Auti19-Jun-06 18:48
Laxman Auti19-Jun-06 18:48 
QuestionUse between the panel button and control key Pin
sdhtyjnniutnbjnhbghb18-Jun-06 15:43
sdhtyjnniutnbjnhbghb18-Jun-06 15:43 
QuestionHow to output UTF-8/UTF-16 string in VS? Pin
Best Kiluyar18-Jun-06 15:32
Best Kiluyar18-Jun-06 15:32 
AnswerRe: How to output UTF-8/UTF-16 string in VS? Pin
Michael Dunn18-Jun-06 17:56
sitebuilderMichael Dunn18-Jun-06 17:56 
QuestionInternet Filtering Applications Pin
dipple18-Jun-06 15:14
dipple18-Jun-06 15:14 
AnswerRe: Internet Filtering Applications Pin
Randor 18-Jun-06 16:46
professional Randor 18-Jun-06 16:46 
GeneralRe: Internet Filtering Applications Pin
Rahul Vaishnav1-Nov-10 23:43
Rahul Vaishnav1-Nov-10 23:43 
QuestionUsing WriteFile [modified] Pin
capricious_00118-Jun-06 15:03
capricious_00118-Jun-06 15:03 
AnswerRe: Using WriteFile Pin
Michael Dunn18-Jun-06 15:17
sitebuilderMichael Dunn18-Jun-06 15:17 
GeneralRe: Using WriteFile Pin
capricious_00118-Jun-06 15:42
capricious_00118-Jun-06 15:42 
GeneralRe: Using WriteFile [modified] Pin
Stephen Hewitt18-Jun-06 16:47
Stephen Hewitt18-Jun-06 16:47 
Questionscrolling text Pin
locoone18-Jun-06 12:04
locoone18-Jun-06 12:04 
AnswerRe: scrolling text [modified] Pin
_AnsHUMAN_ 18-Jun-06 17:46
_AnsHUMAN_ 18-Jun-06 17:46 

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.