Click here to Skip to main content
15,917,622 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: shape file header reading problem Pin
softtec8-Jun-05 5:27
softtec8-Jun-05 5:27 
GeneralShowWindow Pin
leifmikael8-Jun-05 2:41
leifmikael8-Jun-05 2:41 
GeneralRe: ShowWindow Pin
ddmcr8-Jun-05 3:38
ddmcr8-Jun-05 3:38 
GeneralRe: ShowWindow Pin
leifmikael8-Jun-05 4:29
leifmikael8-Jun-05 4:29 
GeneralRe: ShowWindow Pin
ddmcr8-Jun-05 5:18
ddmcr8-Jun-05 5:18 
GeneralRe: ShowWindow Pin
leifmikael8-Jun-05 5:48
leifmikael8-Jun-05 5:48 
GeneralRe: ShowWindow Pin
ddmcr8-Jun-05 5:58
ddmcr8-Jun-05 5:58 
GeneralRe: ShowWindow Pin
leifmikael8-Jun-05 6:42
leifmikael8-Jun-05 6:42 
GeneralRe: ShowWindow Pin
ThatsAlok8-Jun-05 18:04
ThatsAlok8-Jun-05 18:04 
GeneralRe: ShowWindow Pin
ThatsAlok8-Jun-05 18:05
ThatsAlok8-Jun-05 18:05 
GeneralRe: ShowWindow Pin
leifmikael9-Jun-05 0:29
leifmikael9-Jun-05 0:29 
GeneralChild windows Pin
nombrecinq8-Jun-05 2:30
nombrecinq8-Jun-05 2:30 
GeneralRe: Child windows Pin
ThatsAlok8-Jun-05 2:34
ThatsAlok8-Jun-05 2:34 
GeneralRe: Child windows Pin
Bob Stanneveld8-Jun-05 2:51
Bob Stanneveld8-Jun-05 2:51 
GeneralRe: Child windows Pin
nombrecinq8-Jun-05 14:22
nombrecinq8-Jun-05 14:22 
GeneralRe: Child windows Pin
Bob Stanneveld8-Jun-05 20:23
Bob Stanneveld8-Jun-05 20:23 
QuestionHow to Detect Computer Name in VC++ Pin
Girish6018-Jun-05 2:21
Girish6018-Jun-05 2:21 
AnswerRe: How to Detect Computer Name in VC++ Pin
ThatsAlok8-Jun-05 2:33
ThatsAlok8-Jun-05 2:33 
AnswerRe: How to Detect Computer Name in VC++ Pin
David Crow8-Jun-05 2:35
David Crow8-Jun-05 2:35 
GeneralGetOpenFileName() Pin
User 5838528-Jun-05 2:13
User 5838528-Jun-05 2:13 
GeneralRe: GetOpenFileName() Pin
David Crow8-Jun-05 2:49
David Crow8-Jun-05 2:49 
GeneralRe: GetOpenFileName() Pin
Graham Bradshaw8-Jun-05 3:17
Graham Bradshaw8-Jun-05 3:17 
GeneralRe: GetOpenFileName() Pin
User 5838528-Jun-05 3:28
User 5838528-Jun-05 3:28 
GeneralRe: GetOpenFileName() Pin
David Crow8-Jun-05 4:54
David Crow8-Jun-05 4:54 
GeneralProblem implementing the priority_queue Pin
r3dqu33n8-Jun-05 1:46
r3dqu33n8-Jun-05 1:46 
Hello:

I'm trying to do a proirity_queue like this:

 #include < queue ><br />
using namespace std;<br />
<br />
struct stman{<br />
   int age;<br />
   double Height;<br />
   char Name[255];<br />
}<br />
<br />
priority_queue <stman> myQueue;<br />
stman sMan;<br />
<br />
int main(){<br />
<br />
  myQueue.push(sMan);<br />
  <br />
}


The code here does nothing...Hmmm | :| but it explains the trouble in what i am, i can't save these tipe of struct into the queue, and order the priority based in the age of any instance of the struct.

The question is... someone knows how solve it???Roll eyes | :rolleyes:

Thank you in advance

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.