Click here to Skip to main content
15,899,560 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Dialog windows -- where does the application code go Pin
PJ Arends16-Nov-03 19:06
professionalPJ Arends16-Nov-03 19:06 
GeneralRe: Dialog windows -- where does the application code go Pin
David Crow17-Nov-03 4:38
David Crow17-Nov-03 4:38 
GeneralRe: Dialog windows -- where does the application code go Pin
Mike Danberg17-Nov-03 10:20
Mike Danberg17-Nov-03 10:20 
GeneralRe: Dialog windows -- where does the application code go Pin
Mike Danberg17-Nov-03 11:43
Mike Danberg17-Nov-03 11:43 
General.NET issue Pin
kjessee16-Nov-03 15:32
kjessee16-Nov-03 15:32 
GeneralRe: .NET issue Pin
Christian Graus16-Nov-03 16:12
protectorChristian Graus16-Nov-03 16:12 
GeneralRe: .NET issue Pin
kjessee16-Nov-03 16:20
kjessee16-Nov-03 16:20 
GeneralRe: .NET issue Pin
Christian Graus16-Nov-03 16:28
protectorChristian Graus16-Nov-03 16:28 
I'd use a struct so I could stream them in one go - read my article on iostream inserters and extrators. The problem would be that your string at the end is able to have a space in it. There are multiple ways to handle this, but the first that comes to mind is to read the floats in directly, as in

#include <fstream>
#include <string>

std::ifstream strm("c:\\my file.txt");
float a,b,c,d,e;
std::string suffix;

while (strm.good())
{
strm << a << b << c << d << e;
std::getline(strm, suffix);

// process each line here
}

that's off the top of my head, so not guarenteed to be production code, or even to compile Smile | :) You get the idea though.

Christian

I have drunk the cool-aid and found it wan and bitter. - Chris Maunder
GeneralRe: .NET issue Pin
Prakash Nadar16-Nov-03 17:24
Prakash Nadar16-Nov-03 17:24 
GeneralRe: .NET issue Pin
kjessee16-Nov-03 21:55
kjessee16-Nov-03 21:55 
Questionwhere's main() ??? Pin
Dave Sweetser16-Nov-03 14:10
Dave Sweetser16-Nov-03 14:10 
AnswerRe: where's main() ??? Pin
Ravi Bhavnani16-Nov-03 14:22
professionalRavi Bhavnani16-Nov-03 14:22 
GeneralRe: where's main() ??? Pin
Dave Sweetser16-Nov-03 14:34
Dave Sweetser16-Nov-03 14:34 
GeneralRe: where's main() ??? Pin
Ravi Bhavnani16-Nov-03 15:00
professionalRavi Bhavnani16-Nov-03 15:00 
GeneralRe: where's main() ??? Pin
Dave Sweetser16-Nov-03 15:22
Dave Sweetser16-Nov-03 15:22 
GeneralRe: where's main() ??? Pin
Ravi Bhavnani16-Nov-03 15:37
professionalRavi Bhavnani16-Nov-03 15:37 
GeneralRe: where's main() ??? Pin
Dave Sweetser16-Nov-03 15:57
Dave Sweetser16-Nov-03 15:57 
GeneralRe: where's main() ??? Pin
Johnny ²16-Nov-03 21:43
Johnny ²16-Nov-03 21:43 
GeneralRe: where's main() ??? Pin
Ravi Bhavnani17-Nov-03 3:43
professionalRavi Bhavnani17-Nov-03 3:43 
GeneralI need some help please Pin
Anonymous16-Nov-03 13:18
Anonymous16-Nov-03 13:18 
GeneralRe: I need some help please Pin
Christian Graus16-Nov-03 16:16
protectorChristian Graus16-Nov-03 16:16 
GeneralGetting the system date Pin
kerplatz16-Nov-03 11:56
kerplatz16-Nov-03 11:56 
GeneralRe: Getting the system date Pin
Michael Dunn16-Nov-03 12:38
sitebuilderMichael Dunn16-Nov-03 12:38 
GeneralRe: Getting the system date Pin
kerplatz16-Nov-03 13:10
kerplatz16-Nov-03 13:10 
GeneralRe: Getting the system date Pin
Steve S17-Nov-03 2:05
Steve S17-Nov-03 2:05 

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.