how come when i make a program and send it to my friends they say some of the graphics are messed up
Printable View
how come when i make a program and send it to my friends they say some of the graphics are messed up
Do they have the same colour depth as you?
i mean that the pictures are dispositioned
here is what the program is supposed to look like
if you have any comments on the interface please give them to me
http://www.geocities.com/trigger957/cool.jpg
Could be that their Screen Resolution is different from yours.
It could the the screen resolution is different, although this shouldn't affect the positioning on the form.
More likely, it is the fact that you are running in different font sizes - in large fonts, the value of Screen.TwipsPerPixelX is different from the value when you are in small fonts.
So if you are using magic numbers to position stuff, change them to be pixel values * Scree.TwipsPerPixelX & Y.
- gaffa