Hi, I have a RadToolBarSplitButton where I set buttons in runtime. I calcule the dropdown height from the number of button. But everyime the vertical scroll bar are visible. How do you remove this scroll bar ?int dropDownHeight = (int)(Annees.Buttons.Count * 25);if (dropDownHeight > 250){dropDownHeight = 250;//show vertical scroll bar}else{//not show vertical scroll bar}Annees.DropDownHeight = Unit.Pixel(dropDownHeight);