Ah, you thought this one would be an easy one (or maybe it still is), but I do have the ScrollBars property set to flexScrollBoth, and it is not changed anywhere in my code. But the horizontal scrollbar will not show up no matter how small I resize to.
Actually, I have my own resize subroutine. Maybe that's what the problem is. Here's my resize routine...
Private Sub Form_Resize()
If ScaleHeight > 1500 And ScaleWidth > 20 Then
flxFileTextGrid.Height = ScaleHeight - 1500
flxFileTextGrid.Width = ScaleWidth - 20
fraButtons.Top = 960 + flxFileTextGrid.Height + 120
fraButtons.Left = 2295 * (flxFileTextGrid.Width / 1
End If
End Sub
The height of the grid is 1500 twips smaller than the form height, width is 20 less than the form. The If statement makes sure that I don't get a negative height or width for the grid when the form is minimized.
Anyone? Anyone? Bueller?
Thanks,
JT
Actually, I have my own resize subroutine. Maybe that's what the problem is. Here's my resize routine...
Private Sub Form_Resize()
If ScaleHeight > 1500 And ScaleWidth > 20 Then
flxFileTextGrid.Height = ScaleHeight - 1500
flxFileTextGrid.Width = ScaleWidth - 20
fraButtons.Top = 960 + flxFileTextGrid.Height + 120
fraButtons.Left = 2295 * (flxFileTextGrid.Width / 1
End If
End Sub
The height of the grid is 1500 twips smaller than the form height, width is 20 less than the form. The If statement makes sure that I don't get a negative height or width for the grid when the form is minimized.
Anyone? Anyone? Bueller?
Thanks,
JT