Forum: C# Jan 27th, 2009 |
| Replies: 15 Views: 1,084 If the language change was one that converted that god awful shorthand msg/txt speak into useful English then that could possibly earn some credit.
Or perhaps you could write a web based spell... |
Forum: Windows Software Sep 22nd, 2008 |
| Replies: 2 Views: 547 Thanks for the reply Timothy.
Sorry I shouldn't have used the term drop-down because of it's association with controls. By drop-down I simply meant an excel list.
Anyhow I haven't had a chance... |
Forum: Windows Software Sep 21st, 2008 |
| Replies: 2 Views: 547 Hi all.
I have a worksheet with col A populated by reoccuring numbers (LINES), and col B by unique text (VARIANTS) ...
A B
= =
2 Bananas
6 Oranges
3 Apples
3 Grapes |
Forum: C++ Mar 20th, 2007 |
| Replies: 5 Views: 923 Joe & thekashyap - thanks so much for your help.
To be honest I missed the 'else' suggestion; in the meantime in an effort to figure out how to step through the source file without using ignore I... |
Forum: C++ Mar 20th, 2007 |
| Replies: 5 Views: 923 Joe,
Because my source lines are variable lenght I don't know what else to use as a terminting character? Are you suggesting i find lenght of the line and then just getline the characters I need? ... |
Forum: C++ Mar 19th, 2007 |
| Replies: 5 Views: 923 Folks,
Most of you can see what the below segment of code is doing, the problem I have is that the program is skipping the next line in the source file (airportsMaster) after it has processed a... |
Forum: C++ Mar 11th, 2007 |
| Replies: 3 Views: 1,651 Thank you very much Joe !!!!!
I used
ifstream airportsSource(airportFileName.c_str());
works fine.
:) |
Forum: C++ Mar 10th, 2007 |
| Replies: 3 Views: 1,651 I've also tried this with no luck ...
...
string tempString1 = "Airports_";
string tempString2 = airlineICAO;
string tempString3 = ".txt";
airportFileName =... |
Forum: C++ Mar 10th, 2007 |
| Replies: 3 Views: 1,651 Hi all,
I require some help using ifstream. I want to open a file who's name is made up in part by a user enter string - this is the format of the filename ...
"Airports_" << airlineICAO <<... |
Forum: C May 8th, 2004 |
| Replies: 1 Views: 13,281 Hi all,
Quite a basic question for most of you; I am trying to obtain length of a string < char name[MAX_ENTRIES][MAX_NAME_SIZE] > for use in a for loop that will perform isalpha.
for (int... |