Jan 7, 2002 #1 striker73 MIS Jun 7, 2001 376 US Does anyone know how to change the height of a form dynamically?
Jan 7, 2002 1 #2 BoxHead Technical User May 6, 2001 876 US Try the InsideHeight property of the form. Code: Me.InsideHeight = Me.InsideHeight * 2 ...worked to double the height of a test form. HTH John Use what you have, Learn what you can, Create what you need. Upvote 0 Downvote
Try the InsideHeight property of the form. Code: Me.InsideHeight = Me.InsideHeight * 2 ...worked to double the height of a test form. HTH John Use what you have, Learn what you can, Create what you need.
Jan 7, 2002 Thread starter #3 striker73 MIS Jun 7, 2001 376 US Thanks so much, that worked perfectly!!!!! Upvote 0 Downvote