Hola eennzzoo.
No te preocupes, a todos nos ha pasado.
Tal vez te pueda interesar acceder al archivo usando sintáxis privativa de C++:
Código:
...
#include<fstream>
...
void __fastcall TForm1::StringGrid1MouseDown(TObject *Sender,
TMouseButton Button, TShiftState Shift, int X, int Y)
{
if(Shift.Contains(ssCtrl)) {
TStringGrid *sg = StringGrid1;
std::fstream fs("peliculas.txt", std::fstream::out | std::fstream::app);
fs << sg->Cells[sg->Col][sg->Row].c_str();
fs.close();
}
}
Saludos
