-
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?
-
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.
-
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
-
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
-
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.