Hi,
I am trying to get a flexgrid to automatically resize when a form resizes. The grid currently resizes but is substantially smaller then the container form. This is the code I am using to resize the grid on a maximized form.
Me.WindowState = vbMaximized
With fgRecords
.Left = 100
.Top = 100
.Width = Me.Width
.Height = Me.Height
End With
I am trying to get a flexgrid to automatically resize when a form resizes. The grid currently resizes but is substantially smaller then the container form. This is the code I am using to resize the grid on a maximized form.
Me.WindowState = vbMaximized
With fgRecords
.Left = 100
.Top = 100
.Width = Me.Width
.Height = Me.Height
End With