Apr 25, 2002 #1 dass Programmer Feb 25, 2002 33 IN I want to allow the user to resize only width of the form Can it posible please give me the response with coding dass@powerbiss.com
I want to allow the user to resize only width of the form Can it posible please give me the response with coding dass@powerbiss.com
Apr 25, 2002 #2 kpnagle MIS Mar 31, 2001 13 US In your form resize event just put this line of code thisform.height = 250 (whatever height that you want) When the user tries to change the form size the width will change but the height will always go back to the size that you specify. Upvote 0 Downvote
In your form resize event just put this line of code thisform.height = 250 (whatever height that you want) When the user tries to change the form size the width will change but the height will always go back to the size that you specify.
Apr 25, 2002 #3 weedz Programmer Dec 5, 2000 718 NL Set your maxqidth and minwidt to the width you have chosen at design time. In the init() event of the form, code the following: LOCAL llRetVal llRetVal = DODEFAULT() IF llRetVal WITH THIS .Maxheight = .Height .MinHeight = .Height ENDWITH ENDIF RETURN llRetVal HTH, Weedz (Edward W.F. Veld) My private project:http://www.crowncap.demon.nl\info\crwnbaseDownload the CrownBase source code !! Upvote 0 Downvote
Set your maxqidth and minwidt to the width you have chosen at design time. In the init() event of the form, code the following: LOCAL llRetVal llRetVal = DODEFAULT() IF llRetVal WITH THIS .Maxheight = .Height .MinHeight = .Height ENDWITH ENDIF RETURN llRetVal HTH, Weedz (Edward W.F. Veld) My private project:http://www.crowncap.demon.nl\info\crwnbaseDownload the CrownBase source code !!