public static StoreName GetStoreName() { CertificateStoreLocation form = new CertificateStoreLocation(); form.ShowDialog(); try { return (StoreName) Enum.Parse(typeof(StoreName), (string) form.comboBox1.SelectedItem); } catch (Exception) { return StoreName.My; } }