static void SBO_Application_RightClickEvent(ref SAPbouiCOM.ContextMenuInfo eventInfo, out bool BubbleEvent) { BubbleEvent = true; try { oForm = Application.SBO_Application.Forms.ActiveForm; switch (oForm.TypeEx) { case "ComisionesVentas.Parametros": Parametros.Parametros_RightClickEvent(ref eventInfo, out BubbleEvent); break; case "ComisionesVentas.Comisiones": Comisiones.Comisiones_RightClickEvent(ref eventInfo, out BubbleEvent); break; } } catch (Exception) { } }