private void Form1_Load(object sender, EventArgs e) { try { string sConString = cSeguridad.LeerCadenaConexion(); if (sConString.Length < 37) { frmConfig oConfig = new frmConfig(); oConfig.ShowDialog(); } } catch (Exception ex) { cLog.ErrorSistema("Form1", "Form1_Load", ex.Message, ""); } }
private void configuraciónToolStripMenuItem_Click(object sender, EventArgs e) { frmConfig oConfig = new frmConfig(); oConfig.ShowDialog(); }