Click here to Skip to main content
15,898,923 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: How can merge 2 CUIntArray? Pin
Eugen Podsypalnikov9-Apr-10 3:34
Eugen Podsypalnikov9-Apr-10 3:34 
GeneralRe: How can merge 2 CUIntArray? Pin
CPallini9-Apr-10 7:11
mveCPallini9-Apr-10 7:11 
AnswerRe: How can merge 2 CUIntArray? Pin
CPallini9-Apr-10 0:23
mveCPallini9-Apr-10 0:23 
GeneralRe: How can merge 2 CUIntArray? Pin
David Crow9-Apr-10 3:54
David Crow9-Apr-10 3:54 
GeneralRe: How can merge 2 CUIntArray? Pin
CPallini9-Apr-10 7:16
mveCPallini9-Apr-10 7:16 
GeneralRe: How can merge 2 CUIntArray? Pin
David Crow9-Apr-10 7:40
David Crow9-Apr-10 7:40 
GeneralRe: How can merge 2 CUIntArray? Pin
CPallini9-Apr-10 8:35
mveCPallini9-Apr-10 8:35 
GeneralRe: How can merge 2 CUIntArray? Pin
Eugen Podsypalnikov9-Apr-10 9:42
Eugen Podsypalnikov9-Apr-10 9:42 
Another class from the same header Smile | :) :
void ProcessMerging(CMap<UINT,UINT,UINT,UINT>* pcResult,
                    const CUIntArray& caFirst,
                    const CUIntArray& caSecond)
{
  if (pcResult) {
    pcResult->RemoveAll();
    int iFirstSize(caFirst.GetCount()),
        iSecondSize(caSecond.GetCont()),
        i(0);
    for (i = 0; i < iFirstSize; i++) {
      pcResult->SetAt(caFirst[i], 0);
    }
    for (i = 0; i < iSecondSize; i++) {
      pcResult->SetAt(caSecond[i], 0);
    }
  }
}

virtual void BeHappy() = 0;

QuestionMarquee Progress Control Pin
JM22518-Apr-10 21:32
JM22518-Apr-10 21:32 
AnswerRe: Marquee Progress Control Pin
Eugen Podsypalnikov8-Apr-10 22:07
Eugen Podsypalnikov8-Apr-10 22:07 
GeneralRe: Marquee Progress Control Pin
JM22518-Apr-10 22:16
JM22518-Apr-10 22:16 
GeneralRe: Marquee Progress Control Pin
Eugen Podsypalnikov8-Apr-10 22:55
Eugen Podsypalnikov8-Apr-10 22:55 
GeneralRe: Marquee Progress Control [modified] Pin
JM22518-Apr-10 23:32
JM22518-Apr-10 23:32 
GeneralRe: Marquee Progress Control Pin
Eugen Podsypalnikov8-Apr-10 23:47
Eugen Podsypalnikov8-Apr-10 23:47 
GeneralRe: Marquee Progress Control Pin
JM22518-Apr-10 23:51
JM22518-Apr-10 23:51 
GeneralRe: Marquee Progress Control Pin
Eugen Podsypalnikov8-Apr-10 23:55
Eugen Podsypalnikov8-Apr-10 23:55 
GeneralRe: Marquee Progress Control Pin
JM22518-Apr-10 23:59
JM22518-Apr-10 23:59 
GeneralRe: Marquee Progress Control Pin
Eugen Podsypalnikov9-Apr-10 0:12
Eugen Podsypalnikov9-Apr-10 0:12 
GeneralRe: Marquee Progress Control Pin
JM22519-Apr-10 0:15
JM22519-Apr-10 0:15 
GeneralRe: Marquee Progress Control Pin
Eric Olstad25-Oct-10 8:10
Eric Olstad25-Oct-10 8:10 
QuestionGetting response from aspx page Pin
Pryabu8-Apr-10 20:35
Pryabu8-Apr-10 20:35 
AnswerRe: Getting response from aspx page Pin
eusto9-Apr-10 2:28
eusto9-Apr-10 2:28 
AnswerRe: Getting response from aspx page Pin
daveyerwin9-Apr-10 13:55
daveyerwin9-Apr-10 13:55 
GeneralRe: Getting response from aspx page Pin
Pryabu11-Apr-10 18:08
Pryabu11-Apr-10 18:08 
GeneralRe: Getting response from aspx page Pin
daveyerwin12-Apr-10 12:59
daveyerwin12-Apr-10 12:59 

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.