Dec 6, 2000 #1 Guest_imported New member Joined Jan 1, 1970 Messages 0 How do you make it so that when resizing a form with a listbox on it, the listbox fills the form?
Dec 6, 2000 #2 swilliams Programmer Joined Aug 23, 2000 Messages 583 Location BM Private Sub Form_Resize() List1.Top = 0 List1.Left = 0 List1.Width = Form1.Width List1.Height = Form1.Height End Sub Simon Upvote 0 Downvote
Private Sub Form_Resize() List1.Top = 0 List1.Left = 0 List1.Width = Form1.Width List1.Height = Form1.Height End Sub Simon