Hello and thanks in advance for the help.
I have a form with two grids. The second grid is a child of the first. In
the AfterRowColChangeEvent of the first grid, I do the query for the second
grid.
I always thought that this problem had something to do with the recordsource
property of the grid but that is apparently not the whole story.
My code in the AfterRowColChangeEvent of the first grid is
thisform.orderdetails.recordsource = ""
select.........into cursor orderinfo readwrite
index on line tag line
go top
thisform.orderdetails.recordsource = "orderinfo"
Why do all the columns get smaller when I run the form for the first time
(and then stay that way)?
I know I could add code to set the column widths back to what I want but why
do they change in the first place?
Thanks,
Jeff