To All
I have an xBrowse based on an array created with employee names based on an Employee table. When I create the browse I use the employee array to create the ( dynamic ) headers that label the columns with the Employees name.
As I start filling in the browse grid, the columns change in size based on the data I plug into each element. Is there a way to set a fixed column width without using the ColSizes clause ?
Here is my code for the browse :

Thanks
Rick Lipkin
I have an xBrowse based on an array created with employee names based on an Employee table. When I create the browse I use the employee array to create the ( dynamic ) headers that label the columns with the Employees name.
As I start filling in the browse grid, the columns change in size based on the data I plug into each element. Is there a way to set a fixed column width without using the ColSizes clause ?
Here is my code for the browse :
DEFINE WINDOW oWndChildA ;
FROM 0,0 to 39,102 ;
MDICHILD ;
OF oWnd ;
ICON oIco ;
TITLE xTITLE
DEFINE DIALOG oSch RESOURCE "SCHEDULE" of oWndChildA
REDEFINE xBROWSE oLbxA ;
ARRAY aSchedule ;
HEADERS aHeader ;
ID 172 of oSch ;
AUTOCOLS LINES CELL //FASTEDIT
oLbxA:nRowHeight() := 35
Thanks
Rick Lipkin