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

C / C++ / MFC

 
GeneralRe: Memory Tracking 2 Pin
Maxwell Chen22-May-03 2:02
Maxwell Chen22-May-03 2:02 
GeneralRe: Memory Tracking 2 Pin
Maxwell Chen22-May-03 1:55
Maxwell Chen22-May-03 1:55 
GeneralRe: Memory Tracking 2 Pin
Neville Franks22-May-03 2:34
Neville Franks22-May-03 2:34 
GeneralRe: Memory Tracking 2 Pin
Maxwell Chen22-May-03 16:40
Maxwell Chen22-May-03 16:40 
Generalincluding resources from static library in vc++ .net Pin
roel_22-May-03 0:01
roel_22-May-03 0:01 
GeneralRe: including resources from static library in vc++ .net Pin
roel_22-May-03 0:10
roel_22-May-03 0:10 
GeneralRemoving Duplicates from CListCtrl Pin
si_6921-May-03 23:56
si_6921-May-03 23:56 
GeneralRe: Removing Duplicates from CListCtrl Pin
Alin Negru22-May-03 0:15
Alin Negru22-May-03 0:15 
something like this:
bool bIdExists = false;<br />
CString strIdListTemp = "";<br />
<br />
<br />
for(int i = 0; i< m_messageList.GetItemCount(); i++)<br />
{<br />
    CString strIdList = m_messageList.GetItemText(i, 4);                    <br />
    if( strIdList == m_yourDuplicateStr)<br />
    {<br />
        strIdListTemp = strIdList;<br />
        bIdExists = true;<br />
    }<br />
}<br />
        <br />
if(bIdExists)<br />
{<br />
    CString temp = "";<br />
    temp.Format("Str: %s already exists", strIdListTemp);<br />
    AfxMessageBox(temp);<br />
}<br />
else<br />
{<br />
    //ok, do further processing <br />
}

GeneralRe: Removing Duplicates from CListCtrl Pin
David Crow22-May-03 2:37
David Crow22-May-03 2:37 
GeneralRe: STRANGE PROBLEM Pin
Neville Franks21-May-03 23:57
Neville Franks21-May-03 23:57 
GeneralPrevent webbrowser win activation Pin
rrrado21-May-03 22:36
rrrado21-May-03 22:36 
GeneralCString Class &amp; Find Function... Pin
JongGu Kim21-May-03 22:23
JongGu Kim21-May-03 22:23 
GeneralRe: CString Class &amp; Find Function... Pin
rrrado21-May-03 22:39
rrrado21-May-03 22:39 
QuestionIs deleting &quot;void*&quot; safe? Pin
Abin21-May-03 22:08
Abin21-May-03 22:08 
AnswerRe: Is deleting &quot;void*&quot; safe? Pin
rrrado21-May-03 22:41
rrrado21-May-03 22:41 
AnswerRe: Is deleting &quot;void*&quot; safe? Pin
Iain Clarke, Warrior Programmer21-May-03 23:19
Iain Clarke, Warrior Programmer21-May-03 23:19 
GeneralRe: Is deleting &quot;void*&quot; safe? Pin
Abin21-May-03 23:58
Abin21-May-03 23:58 
GeneralRe: Is deleting &quot;void*&quot; safe? Pin
rrrado22-May-03 1:06
rrrado22-May-03 1:06 
Generalinheritance of templates &amp; linking Pin
Themis21-May-03 21:51
Themis21-May-03 21:51 
GeneralRe: inheritance of templates &amp; linking Pin
Iain Clarke, Warrior Programmer21-May-03 23:27
Iain Clarke, Warrior Programmer21-May-03 23:27 
GeneralRe: inheritance of templates &amp; linking Pin
Themis22-May-03 1:07
Themis22-May-03 1:07 
GeneralRe: inheritance of templates &amp; linking Pin
Iain Clarke, Warrior Programmer22-May-03 1:30
Iain Clarke, Warrior Programmer22-May-03 1:30 
Generalfile list Pin
YanivNahum21-May-03 21:50
YanivNahum21-May-03 21:50 
GeneralRe: file list Pin
Martyn Pearson21-May-03 22:57
Martyn Pearson21-May-03 22:57 
GenerallDrawing a staic picture onto a moving(constant refreshing) picture Pin
Member 40481321-May-03 21:50
Member 40481321-May-03 21:50 

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.