Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Text Box in Frame Not Working When Program is Distributed

Status
Not open for further replies.
Apr 22, 2003
14
US
I have a text box that is inside a frame and it looks fine on the developer computer but when I packaged it and put it on other computers it is TOO BIG. I checked and it seems to be inside the frame b/c when I click on the frame the text box moves with the frame. Any suggestions?
 
Can you do something like this .....

in your form load event

text1.height = (frame1.height - 200)
text1.width = (frame1.width - 200)
 
Atliens911

Can you locate and post the relevant bits of code from the .frm file? It seems rather odd that the TextBox should suddenly start changing size. Does it get bigger than the containing Frame?

Andy
"Logic is invincible because in order to combat logic it is necessary to use logic." -- Pierre Boutroux
 
It'll get bigger if the user has selected, say, Large Fonts and you designed for Small Fonts
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top