public void RemoveGetModelsForm() { try { if (getModelsForm != null) { getModelsForm.Close(); } } catch { getModelsForm = null; } }
public void LoadGetModelsForm() { try { getModelsForm = new GetModels(this); getModelsForm.Show(); } catch { } }