here you go...
'Set the grid columns to specific width
thru VB#
grdPart.DisplayLayout.Bands(0).Columns("ShortChar01").Width = 135
grdPart.DisplayLayout.Bands(0).Columns("Number01").Width = 80
thru V#
grdPart.DisplayLayout.Bands[0].Columns["ShortChar01"].Width = 135;
grdPart.DisplayLayout.Bands[0].Columns["Number01"].Width = 80;
'Set the grid columns to specific width
thru VB#
grdPart.DisplayLayout.Bands(0).Columns("ShortChar01").Width = 135
grdPart.DisplayLayout.Bands(0).Columns("Number01").Width = 80
thru V#
grdPart.DisplayLayout.Bands[0].Columns["ShortChar01"].Width = 135;
grdPart.DisplayLayout.Bands[0].Columns["Number01"].Width = 80;
--- In vantage@yahoogroups.com, "nbuckman@..." <nbuckman@...> wrote:
>
>
> Friends,
>
> Is there a way to set the width of columns in a dashboard?
>
> I have a dashboard with text fields in the display and everytime it is opened you have to widen the columns to see the content. I tried putting a wide heading but that did not help much. Saving layouts does not impact the column widths...
>
> - Neil
>