private void Button1_ClickAfter(object sboObject, SAPbouiCOM.SBOItemEventArg pVal)
 {
     try
     {
         if (Grid0.Rows.SelectedRows.Count > 0)
         {
             oUDS = oForm.DataSources.UserDataSources.Item("UD_1");
             string sPedido       = Convert.ToString(Grid0.DataTable.GetValue(1, Grid0.Rows.SelectedRows.Item(0, SAPbouiCOM.BoOrderType.ot_RowOrder)));
             int    TipoOperacion = OptionBtn0.Selected ? 1 : -1;
             int    Vend          = CheckBox0.Checked ?  Convert.ToInt32(oUDS.ValueEx) : 0;//Si muestra todos los vendedores se pasa la info con el vendedor consultado.
             Comisiones.Agregar_Documento_Grid_Comisiones(sPedido, ref TipoOperacion, Vend);
             if (TipoOperacion != 0)
             {
                 oForm.Close();
             }
         }
     }
     catch (Exception)
     {
     }
 }