Ejemplo n.º 1
0
 public MDIPrincipal()
 {
     InitializeComponent();
     if (Properties.Settings.Default.ConnectionString == "")
     {
         FormConexion f = new FormConexion();
         f.ShowDialog();
     }
 }
Ejemplo n.º 2
0
        private void optionsToolStripMenuItem_Click(object sender, EventArgs e)
        {
            FormConexion conexion = new FormConexion();

            conexion.ShowDialog();
        }
Ejemplo n.º 3
0
        private void MostrarDialogoConexion()
        {
            FormConexion f = new FormConexion();

            f.ShowDialog();
        }