What is your suggested way to check if for example a form doesn't exist?
Following code works for me till now:
try
{
if(Host.Local.FindSingle(path) != null)
{
return true;
}
return false;
}
catch(ElementNotFoundException ex)
{
//Do something with ex
return false;
}Max