Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
char Buchstabe;
for(int i = 65; i < 65+24; i++)
{
Buchstabe = i;
StringList->Items->Add(String(Buchstabe));
}
__fastcall TForm1::TForm1(TComponent* Owner) : TForm(Owner)
{
TListBox *LB;
LB = new TListBox(this);
LB->Parent = this;
LB->Name = "Box";
LB->Left=50;
LB->Top= 15;
for(int a=65; a < 65+26;a++)
LB->Items->Add(static_cast<char>(a));
}