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.
double dDoublePrecisionNumber;
try
{
dDoublePrecisionNumber = Edit1->Text.ToDouble();
}
catch (...)
{
}
int iInteger;
try
{
iInteger= Edit1->Text.ToInt();
}
catch (...)
{
}
AnsiString VarStr = Edit1->Text;
double K = VarStr.ToDouble();