I'd like to remove the Izenda Reports Administrative Settings button
Add this code to the reportdesigner.aspx.cs (or vb)
override protected void OnInit(EventArgs e)
{
queryBuilder.Toolbar.Items.Remove(""AboutButton"");
InitializeComponent();
base.OnInit(e);
}