|
-
Sep 4th, 2002, 03:51 AM
#1
Thread Starter
Hyperactive Member
Some strange thing :s
Dear friends,
I have some strange problem. I have installed VB6 on windows 2000 os. Everything work fine but when i run the program or a compiled exe file the widh en height of the form is wrong. It seems that he take a random size :s. how is that possible? :s?
-
Sep 4th, 2002, 03:55 AM
#2
Member
ok that one i don't know i work with vb 6 and 2000 to but i don't have that problem maybe you made some propertie changes in vb or you program.
-
Sep 4th, 2002, 04:49 AM
#3
Thread Starter
Hyperactive Member
No i don't have make any changes, it is a clean installation , i don't know what to do about it. But hanks anyway for you reply
-
Sep 4th, 2002, 04:59 AM
#4
Fanatic Member
I've had that probem to (win200, vb6)
I think you used the default options of the form or you resized the from(in design time) by stretching it (drag &drop with your mouse) It'srecommendabkle to adhjust the size by chaging the width/height-property in the property-windows or changin it by using code
Code:
private sub form_load()
form1.width = 1000
form1.height = 1000
end sub
-
Sep 4th, 2002, 06:15 AM
#5
Thread Starter
Hyperactive Member
thanks for your reply but it doesn't work. It works only after the load. So i have set a timer with interval 50 and then it works but it is a strange thing to do it so. Thanks anyway.
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
|