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.
WideString PromptDataSource(int Handle, WideString ConnectionString);
void __fastcall TMyForm::DialogButtonClick(TObject *Sender)
{
WideString WCEStr = Edit1->Text;
WideString WResult = PromptDataSource((int)Application->Handle, WCEStr);
Edit1->Text = WResult;
}
//---------------------------------------------------------------------------