Click here to Skip to main content
15,896,912 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Questionrelated to network module Pin
sudhir.marni5-Feb-07 0:23
sudhir.marni5-Feb-07 0:23 
GeneralRe: related to network module Pin
johnalek5-Feb-07 1:12
johnalek5-Feb-07 1:12 
AnswerRe: related to network module Pin
David Crow5-Feb-07 3:01
David Crow5-Feb-07 3:01 
AnswerRe: related to network module Pin
Hamid_RT5-Feb-07 7:46
Hamid_RT5-Feb-07 7:46 
QuestionON Network module Pin
Member 35534025-Feb-07 0:17
Member 35534025-Feb-07 0:17 
AnswerRe: ON Network module Pin
Waldermort5-Feb-07 2:06
Waldermort5-Feb-07 2:06 
AnswerRe: ON Network module Pin
David Crow5-Feb-07 3:03
David Crow5-Feb-07 3:03 
AnswerRe: ON Network module Pin
Eytukan5-Feb-07 3:15
Eytukan5-Feb-07 3:15 
AnswerRe: ON Network module Pin
Hamid_RT5-Feb-07 7:42
Hamid_RT5-Feb-07 7:42 
QuestionMFC STATUS BAR PROBLEM Pin
T.RATHA KRISHNAN4-Feb-07 23:44
T.RATHA KRISHNAN4-Feb-07 23:44 
AnswerRe: MFC STATUS BAR PROBLEM Pin
kasturi_haribabu5-Feb-07 0:04
kasturi_haribabu5-Feb-07 0:04 
GeneralRe: MFC STATUS BAR PROBLEM Pin
T.RATHA KRISHNAN5-Feb-07 0:20
T.RATHA KRISHNAN5-Feb-07 0:20 
AnswerRe: MFC STATUS BAR PROBLEM Pin
#realJSOP5-Feb-07 0:07
professional#realJSOP5-Feb-07 0:07 
AnswerRe: MFC STATUS BAR PROBLEM Pin
#realJSOP5-Feb-07 0:29
professional#realJSOP5-Feb-07 0:29 
GeneralMFC STATUS BAR PROBLEM ADDITIONAL Pin
T.RATHA KRISHNAN5-Feb-07 1:10
T.RATHA KRISHNAN5-Feb-07 1:10 
GeneralRe: MFC STATUS BAR PROBLEM ADDITIONAL Pin
#realJSOP5-Feb-07 1:40
professional#realJSOP5-Feb-07 1:40 
QuestionRe: MFC STATUS BAR PROBLEM ADDITIONAL [modified] Pin
T.RATHA KRISHNAN5-Feb-07 17:40
T.RATHA KRISHNAN5-Feb-07 17:40 
AnswerRe: MFC STATUS BAR PROBLEM ADDITIONAL Pin
#realJSOP5-Feb-07 23:13
professional#realJSOP5-Feb-07 23:13 
QuestionRe: MFC STATUS BAR PROBLEM ADDITIONAL [modified] Pin
T.RATHA KRISHNAN6-Feb-07 1:42
T.RATHA KRISHNAN6-Feb-07 1:42 
QuestionPlease help, SendMesssage not working in MFC Dialog Application, (with wizard) Pin
XTr1NiTy4-Feb-07 23:17
XTr1NiTy4-Feb-07 23:17 
AnswerRe: Please help, SendMesssage not working in MFC Dialog Application, (with wizard) Pin
kasturi_haribabu4-Feb-07 23:44
kasturi_haribabu4-Feb-07 23:44 
AnswerRe: Please help, SendMesssage not working in MFC Dialog Application, (with wizard) Pin
#realJSOP4-Feb-07 23:47
professional#realJSOP4-Feb-07 23:47 
GeneralRe: Please help, SendMesssage not working in MFC Dialog Application, (with wizard) Pin
XTr1NiTy5-Feb-07 0:16
XTr1NiTy5-Feb-07 0:16 
QuestionRe: Please help, SendMesssage not working in MFC Dialog Application, (with wizard) [modified] Pin
XTr1NiTy5-Feb-07 0:02
XTr1NiTy5-Feb-07 0:02 
AnswerRe: Please help, SendMesssage not working in MFC Dialog Application, (with wizard) Pin
#realJSOP5-Feb-07 0:24
professional#realJSOP5-Feb-07 0:24 
1) Add a control variable for the listctrl. It will simplify further manipulation of the control, eliminating the need for code like this:

hList = (CListBox*)(GetDlgItem(IDC_LIST));


2) If you want to remove all items from the list control, use this (based on your apparent current code):

hList->DeleteAllItems();


3) There's no need to send a message to the listbox (see item #2 above).

4) Quite frankly, your naming conventions suck. Personally, I would never name a dialog box class something like "frmMenu". If you scan file names and you see frmmenu.cpp, wouldn't you assume that file contains some sort of menu code?

Is the message you're sending coming from outside the dialog box? If so, make a programmer-defined message and handle it that way:

// in a separate header file, like "CustomMessages.h"

#define UWM_DELETE_ALL_ITEMS WM_APP+1

// in the dlg header file
#include "CustomeMessages.h"
class frmMenu public
{
public:
afx_msg LRESULT OnDeleteAllItems(WPARAM wParam=0, LPARAM lParam=0);
};

// in the dlg cpp file
{MESSAGE_MAP
   ON_MESSAGE(UWM_DELETE_ALL_ITEMS, OnDeleteAllItems)
MESSAGE_MAP}

LRESULT frmMenu::OnDeleteAllItems(WPARAM wParam, LPARAM lParam)
{
    lParam;
    wParam;
    ((CListBox*)(GetDlgItem(IDC_LIST)))->DeleteAllItems();
    return 1L;
}


This was all done off the top of my head, so you may need to adjust the code to fit/compile, but this should do what you need.



"Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997
-----
"...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001


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.