Click here to Skip to main content
15,921,990 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Closing an MFC Application Pin
lavate malllik25-Apr-06 20:49
lavate malllik25-Apr-06 20:49 
Questionrasentry alternate number problem Pin
jack122025-Apr-06 17:58
jack122025-Apr-06 17:58 
AnswerRe: rasentry alternate number problem Pin
Renjith Ramachandran25-Apr-06 19:50
Renjith Ramachandran25-Apr-06 19:50 
GeneralRe: rasentry alternate number problem Pin
jack122025-Apr-06 22:54
jack122025-Apr-06 22:54 
QuestionRe: rasentry alternate number problem Pin
David Crow26-Apr-06 3:23
David Crow26-Apr-06 3:23 
Questionhow to get the return code of ShellExecute() Pin
lekshmipriya25-Apr-06 17:04
lekshmipriya25-Apr-06 17:04 
AnswerRe: how to get the return code of ShellExecute() Pin
Michael Dunn25-Apr-06 17:12
sitebuilderMichael Dunn25-Apr-06 17:12 
AnswerRe: how to get the return code of ShellExecute() Pin
Naveen25-Apr-06 17:13
Naveen25-Apr-06 17:13 
QuestionRe: how to get the return code of ShellExecute() Pin
lekshmipriya25-Apr-06 17:31
lekshmipriya25-Apr-06 17:31 
AnswerRe: how to get the return code of ShellExecute() Pin
Naveen25-Apr-06 17:44
Naveen25-Apr-06 17:44 
AnswerRe: how to get the return code of ShellExecute() Pin
Aqueel25-Apr-06 17:50
Aqueel25-Apr-06 17:50 
AnswerRe: how to get the return code of ShellExecute() Pin
David Crow26-Apr-06 3:31
David Crow26-Apr-06 3:31 
QuestionRe: how to get the return code of ShellExecute() Pin
lekshmipriya26-Apr-06 5:48
lekshmipriya26-Apr-06 5:48 
QuestionRe: how to get the return code of ShellExecute() Pin
David Crow26-Apr-06 5:58
David Crow26-Apr-06 5:58 
Questionhow to change data to color Pin
snowheavy25-Apr-06 16:45
snowheavy25-Apr-06 16:45 
AnswerRe: how to change data to color Pin
Nishad S25-Apr-06 23:21
Nishad S25-Apr-06 23:21 
QuestionWhen I change large arrays from 'float' to 'double' I got problem Pin
mrby12325-Apr-06 16:07
mrby12325-Apr-06 16:07 
AnswerRe: When I change large arrays from 'float' to 'double' I got problem Pin
Nibu babu thomas25-Apr-06 16:44
Nibu babu thomas25-Apr-06 16:44 
GeneralRe: When I change large arrays from 'float' to 'double' I got problem Pin
mrby12325-Apr-06 18:14
mrby12325-Apr-06 18:14 
QuestionRe: When I change large arrays from 'float' to 'double' I got problem Pin
David Crow26-Apr-06 3:35
David Crow26-Apr-06 3:35 
QuestionSetWindowText Question Pin
JBAK_CP25-Apr-06 16:02
JBAK_CP25-Apr-06 16:02 
QuestionRe: SetWindowText Question Pin
Nibu babu thomas25-Apr-06 16:42
Nibu babu thomas25-Apr-06 16:42 
QuestionHow to make a .OLB file? Pin
hdj831125-Apr-06 15:30
hdj831125-Apr-06 15:30 
Questionifstream question Pin
etm12425-Apr-06 13:44
etm12425-Apr-06 13:44 
AnswerRe: ifstream question Pin
Stephen Hewitt25-Apr-06 13:52
Stephen Hewitt25-Apr-06 13:52 
Reading a char doesn't skip white space and you don't need the get. Try this:
inf >> n >> ws >> x  >> ws >> y  >> ws >> z  >> ws;


The ws manipulator can be used to explicitly skip white space.

Steve

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.