michaelcristofaro
Programmer
when i create an instance of ofstream as a global varible i get an error but if i create an instance of ifstream it is ok here is an eg
//includes
TForm1* Form1;
ofstream out; //error
what can i do about this
//includes
TForm1* Form1;
ofstream out; //error
what can i do about this