Problems setting List Properties*RESOLVED*
I am having difficulty setting the following properties:
Column Widths
List Width
Here is my code
ctlControl.RowSource = "qryHeadDetails"
ctlControl.ColumnCount = 5
ctlControl.ColumnHeads = True
ctlControl.ColumnWidths = 1
ctlControl.ListWidth = 2.5
ctlControl.LimitToList = True
After running this code, the COLUMN WIDTHS value is:
0.0007"
And the LIST WIDTH value is:
0.0021"
What I would like to do is set the column widths to the following:
0";.5";.5";.35";.75"
and the LIST WIDTH value to 2.5"
What am I doing wrong?
Scott
I am having difficulty setting the following properties:
Column Widths
List Width
Here is my code
ctlControl.RowSource = "qryHeadDetails"
ctlControl.ColumnCount = 5
ctlControl.ColumnHeads = True
ctlControl.ColumnWidths = 1
ctlControl.ListWidth = 2.5
ctlControl.LimitToList = True
After running this code, the COLUMN WIDTHS value is:
0.0007"
And the LIST WIDTH value is:
0.0021"
What I would like to do is set the column widths to the following:
0";.5";.5";.35";.75"
and the LIST WIDTH value to 2.5"
What am I doing wrong?
Scott
Last edited: