Link to home
Start Free TrialLog in
Avatar of markogonzo
markogonzo

asked on

Persistent fractional Width and Height, unequal to Scale

I have an ordinary form (BorderStyle None) with labels and so forth on it.

I want to make the Width and ScaleWidth the same, and
an integral value.  Ditto for Height.

The problem is:

1.  Changing one makes the other change to something else.
2.  Changing either to a whole number makes it change only
    to a near by fractional number, listed to three decimal
    places.
This applies to both the form and some of the controls on it.

How can I regain control of Width and Height?

I have this problem in both VB 4.0 and VB 6.0 SP3.
Avatar of Richie_Simonetti
Richie_Simonetti
Flag of Argentina image

Width and scalewidth are not the same thing.
Avatar of markogonzo
markogonzo

ASKER

I'm aware of that.  In any case
1.  I don't want Width to be fractional.
2.  It would be useful to set the ScaleWidth
    equal to the Width.
Ditto for Height.
I'm aware of that.  In any case
1.  I don't want Width to be fractional.
2.  It would be useful to set the ScaleWidth
    equal to the Width.
Ditto for Height.
ASKER CERTIFIED SOLUTION
Avatar of pierrecampe
pierrecampe

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
>>1.  I don't want Width to be fractional.
use twips or pixels and your width will never be fractional
>>2.  It would be useful to set the ScaleWidth equal to the Width.
if your form has no borders and you dont set scalewidth then scalewidth will always be the same as the width

 
pierrecampe  --

Thank you for your comment, which I've accepted
as an answer.
For future reference, here's pierrecampe's
comment with some minor copy-editing to make
is easier to read.
=================================================

Suppose your form's scalemode is twip.  You see that
setting in the design environment.

You cannot set a form's width/height to anything
but a multiple of screen.twipsperpixelX/Y.   That's
because it's inpossible to draw between the screen's
pixels.

Now if you change a forms width/height to a number
that's not a multiple of screen.twipsperpixelX/Y
your forms width/height will be the nearest possible
width that IS a multiple of screen.twipsperpixelX/Y.

For example, my screen's screen.twipsperpixelX/Y is 15.
Say at run time I make my forms width 4000 twips, then
it will actually be 4005 twips, but VB will tell you it
is 4000 twips (I suppose you could call that a bug).

Now if you have a form with no borders, the width will
be the same as the scalewidth (supposing you have not
yet changed the scalewidth) and if you ask VB, it will
say the forms width is 4000 and if you ask the scalewidth
it will say 4005, but in reality your forms width will
be 4005.  

As for the scalewidth, if you change the scalewidth you
are actually saying that the inside of your form is no
longer to be measured in twips but in the units you gave.  

Say if you change the scalewidth to 100 and scaleheight
to 100.  Then the top left coordinate will be 0,0 and the
bottom right will be 100,100.  So if you change the
scalewidth and AFTER that the width, and the ratio of
the change is not a divisor of the scalewidth, then the
scalewidth will be a non integer.

Suppose you have a width of 5880 (form without borders),
then you'll have a scalewidth of 5880.  Suppose you change
the scalewidth to 200,  then you'll have a width of 5880
and a scalewidth of 200.  Now if you make your form's
width 4005 its scalewidth will be 136.2245 because
5880/4005 = 1.468164794 and 200/1.468164794 = 136.244897.

Also keep in mind that if you have a form without borders
its runtime width will be smaller then its designtime width.