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.
char s[11];
AnsiString NewS = Edit1->Text;
int j = NewS.Length();
// If newS is too big, you will a buffer overrun (DANGEROUS)
if (j <= 10)
strcpy(s, News.c_str());