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.
private void Login_Load(object sender, EventArgs e)
{
if (exists == true)
{
CODE HERE TO MAKE CHECKBOX APPEAR AS CHECKED
}
}
if ( exists )
{
// ...
}
if ( exists = true )
{
// ...
}
private void Login_Load(object sender, EventArgs e)
{
if ( exists )
{
checkBox1.Checked = true;
}
}