Nov 20, 2007 #1 Drenda Programmer Sep 1, 2007 85 GB Hi Is there any way I can resize a continous form that can sink or grow dependant on the number of records Thanks
Hi Is there any way I can resize a continous form that can sink or grow dependant on the number of records Thanks
Nov 20, 2007 #2 MajP Technical User Aug 27, 2005 9,382 US You could do something like this. Code: Private Sub Form_Load() Dim x As Integer x = Me.RecordsetClone.RecordCount Me.InsideHeight = 1500 + x * 550 End Sub On my form 1500 is the size needed to show the header and 550 needed per row. Upvote 0 Downvote
You could do something like this. Code: Private Sub Form_Load() Dim x As Integer x = Me.RecordsetClone.RecordCount Me.InsideHeight = 1500 + x * 550 End Sub On my form 1500 is the size needed to show the header and 550 needed per row.