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.
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
try
{
Application->Initialize();
Application->CreateForm(__classid(TForm1), &Form1);
Application->Minimize(); // Add this line
Application->Run();
}
catch (Exception &exception)
{
Application->ShowException(&exception);
}
return 0;
}