Exemplo n.º 1
0
 private void cmb_Acciones_Click(object sender, EventArgs e)
 {
     try
     {
         MenuAcciones.Show(cmb_Acciones, new Point(0, cmb_Acciones.Height));
     }
     catch (Exception ex)
     {
     }
 }
Exemplo n.º 2
0
 private void cmb_Acciones_Click_1(object sender, EventArgs e)
 {
     try
     {
         MenuAcciones.Show(cmb_Acciones, new Point(0, cmb_Acciones.Height));
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.ToString());
     }
 }
Exemplo n.º 3
0
 private void cmb_Acciones_Click(object sender, EventArgs e)
 {
     try
     {
         MenuAcciones.Show(cmb_Acciones, new Point(0, cmb_Acciones.Height));
     }
     catch (Exception ex)
     {
         string NameMetodo = System.Reflection.MethodBase.GetCurrentMethod().Name;
         MessageBox.Show(NameMetodo + " - " + ex.ToString(), "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
         Log_Error_bus.Log_Error(NameMetodo + " - " + ex.ToString());
     }
 }
Exemplo n.º 4
0
 private void cmb_Acciones_Click(object sender, EventArgs e)
 {
     MenuAcciones.Show(cmb_Acciones, new Point(0, cmb_Acciones.Height));
 }