or
							<Window x:Class="ReportingTest.MainWindow"        xmlns:telerik="clr-namespace:Telerik.ReportViewer.Wpf;assembly=Telerik.ReportViewer.Wpf"    Title="MainWindow" Height="350" Width="525">    <Grid>        <telerik:ReportViewer Name="ReportViewer" />    </Grid></Window>using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Windows;using System.Windows.Controls;using System.Windows.Data;using System.Windows.Documents;using System.Windows.Input;using System.Windows.Media;using System.Windows.Media.Imaging;using System.Windows.Navigation;using System.Windows.Shapes;using Telerik.ReportViewer.Wpf;namespace ReportingTest{    /// <summary>    /// Interaction logic for MainWindow.xaml    /// </summary>    public partial class MainWindow : Window    {        public MainWindow()        {            InitializeComponent();            var report = new TelerikReport();            ReportViewer.Report = report;        }    }}namespace ReportingTest{    partial class TelerikReport    {        #region Component Designer generated code        /// <summary>        /// Required method for telerik Reporting designer support - do not modify        /// the contents of this method with the code editor.        /// </summary>        private void InitializeComponent()        {            this.pageHeader = new Telerik.Reporting.PageHeaderSection();            this.detail = new Telerik.Reporting.DetailSection();            this.pageFooter = new Telerik.Reporting.PageFooterSection();            //             // TelerikReport            //             this.Style.BackgroundColor = System.Drawing.Color.White;            this.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {                                                                           this.pageHeader,                                                                           this.detail,                                                                           this.pageFooter});        }        #endregion        private Telerik.Reporting.PageHeaderSection pageHeader;        private Telerik.Reporting.DetailSection detail;        private Telerik.Reporting.PageFooterSection pageFooter;    }}namespace ReportingTest{    using System;    using System.ComponentModel;    using System.Drawing;    using System.Windows.Forms;    using Telerik.Reporting;    using Telerik.Reporting.Drawing;    /// <summary>    /// Summary description for TelerikReport.    /// </summary>    public partial class TelerikReport : Telerik.Reporting.Report    {        public TelerikReport()        {            //            // Required for telerik Reporting designer support            //            InitializeComponent();            //            // TODO: Add any constructor code after InitializeComponent call            //        }    }}

Dim
 printerSettings As New System.Drawing.Printing.PrinterSettings()
It 's not problem.
But When I Use Report on "Dotnetnuke Portal", It show "Printer default is not set".





I have a textbox that sometimes have too long text and therefore increased to more row. The problem is that the rest of the columns do not grow and the report does not look good. How can I make the rest of the columns increase when grown one column?
Find attached image.


