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.
for (int i = 1; i <= 5; i++) {
TButton *newButton = new TButton(Form1);
newButton->Parent = Form1;
newButton->Caption = "Button " + IntToStr(i);
// Set other properties, such as Top, Left...
}