Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
TStringList *MyTextFile = new TStringList ();
MyQuery->First();
for (int i=0; i<MyQuery->RecordCount; i++)
{
/*You have to add the string conaining all the record, you can use delimitiers as ',' or tab characters, ro whatever you want*/
MyTextFile->Append (YourPreparedString);
MyQuery->Next();
}
MyTextFile->SaveToFile ("AnyPath");
delete MyTextFile;
AnsiString YourPreparedString;
YourPreparedString = MyQuery_Field1 + ", " + MyQuery_Field2 + ... etc;