You may have already seen my questions about how to output to a file, now that i have that sorted out, now's time to learn how to get it back!

i tried this
Code:
   ifstream open((cName + ".txt").c_str());
   fin >> getline(2);
the first like seemed to work ok, but
Code:
fin >> getline(2);
didnt seem to work for me. for some reason or another i cant seem to figure out how to get fin to declare where its getting info from.

Thanx for the help in advance!