Click here to Skip to main content
15,889,694 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: When does Message Queue get created in window programming? Pin
enhzflep20-Dec-09 3:09
enhzflep20-Dec-09 3:09 
AnswerRe: When does Message Queue get created in window programming? Pin
Richard MacCutchan20-Dec-09 4:33
mveRichard MacCutchan20-Dec-09 4:33 
AnswerRe: When does Message Queue get created in window programming? Pin
CPallini20-Dec-09 4:47
mveCPallini20-Dec-09 4:47 
GeneralRe: When does Message Queue get created in window programming? Pin
Luc Pattyn20-Dec-09 5:40
sitebuilderLuc Pattyn20-Dec-09 5:40 
GeneralRe: When does Message Queue get created in window programming? Pin
CPallini20-Dec-09 7:33
mveCPallini20-Dec-09 7:33 
AnswerRe: When does Message Queue get created in window programming? Pin
«_Superman_»20-Dec-09 4:51
professional«_Superman_»20-Dec-09 4:51 
AnswerRe: When does Message Queue get created in window programming? Pin
Prabhu09200920-Dec-09 20:12
Prabhu09200920-Dec-09 20:12 
QuestionStrange Initialize.......... Pin
milestanley19-Dec-09 17:49
milestanley19-Dec-09 17:49 
In "Programming Priciples and Practice Using C++".
chapter 17.5 destructors
//a very simplified vector of doubles
class  vector{
    int sz;         // the size
    double* elem;       //a pointer to the elements
public:
      vector(int s)       //constructor
      :sz(s),           //"initialize sz", <big>I have no idea what does it mean that writting</big>?
      elem(new double[s])       //initialize elem, and the same as above
      {
          for(int i=0; i < s;i++)  elem[i]=0;   //initialize elements
      }      
      int size()  const {return sz;}  //the current size
};

AnswerRe: Strange Initialize.......... Pin
Chris Losinger19-Dec-09 19:31
professionalChris Losinger19-Dec-09 19:31 
AnswerRe: Strange Initialize.......... Pin
Richard MacCutchan19-Dec-09 21:40
mveRichard MacCutchan19-Dec-09 21:40 
AnswerRe: Strange Initialize.......... Pin
«_Superman_»20-Dec-09 4:57
professional«_Superman_»20-Dec-09 4:57 
Questionhow to use this code ?? Pin
a04.lqd19-Dec-09 6:19
a04.lqd19-Dec-09 6:19 
AnswerRe: how to use this code ?? Pin
loyal ginger19-Dec-09 6:48
loyal ginger19-Dec-09 6:48 
GeneralRe: how to use this code ?? Pin
a04.lqd19-Dec-09 8:27
a04.lqd19-Dec-09 8:27 
GeneralRe: how to use this code ?? Pin
Rajesh R Subramanian19-Dec-09 8:37
professionalRajesh R Subramanian19-Dec-09 8:37 
GeneralRe: how to use this code ?? Pin
a04.lqd19-Dec-09 14:23
a04.lqd19-Dec-09 14:23 
GeneralRe: how to use this code ?? Pin
Tim Craig19-Dec-09 21:55
Tim Craig19-Dec-09 21:55 
GeneralRe: how to use this code ?? Pin
a04.lqd20-Dec-09 3:50
a04.lqd20-Dec-09 3:50 
GeneralRe: how to use this code ?? Pin
Tim Craig20-Dec-09 14:17
Tim Craig20-Dec-09 14:17 
GeneralRe: how to use this code ?? Pin
a04.lqd20-Dec-09 14:32
a04.lqd20-Dec-09 14:32 
GeneralRe: how to use this code ?? Pin
Tim Craig20-Dec-09 17:11
Tim Craig20-Dec-09 17:11 
Questionplese help me these error !! Pin
a04.lqd19-Dec-09 5:15
a04.lqd19-Dec-09 5:15 
AnswerRe: plese help me these error !! Pin
loyal ginger19-Dec-09 5:37
loyal ginger19-Dec-09 5:37 
Questionmay i have openGL version 1.1 or higher ??? Pin
a04.lqd19-Dec-09 4:51
a04.lqd19-Dec-09 4:51 
AnswerRe: may i have openGL version 1.1 or higher ??? Pin
CPallini19-Dec-09 4:56
mveCPallini19-Dec-09 4: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.