|
-
Sep 6th, 2004, 07:41 AM
#1
Thread Starter
Fanatic Member
How can I prevent my form from shrinking?
hello,
How can prevent the user from resizing the form's width under
8400 pixels?
and for that matter, the height too...
thanks
-
Sep 6th, 2004, 07:44 AM
#2
is this u mean ?
Form1.BorderStyle = vbFixedSingle
-
Sep 6th, 2004, 08:06 AM
#3
Thread Starter
Fanatic Member
no.. I want the form to be sizable, just not under 8400...
-
Sep 6th, 2004, 09:10 AM
#4
Addicted Member
From AllAPI.net -
"With this program you can set the maximum and minimum size of a form."
(attatched)
-
Sep 6th, 2004, 10:33 PM
#5
Hyperactive Member
VB Code:
sub form_resize()
if me.width<8400 then
me.width=8400
end if
end sub
Don't leave it till tomorrow, Do It Now!
5361726176757468204368616E63686F747361746869656E

Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|