|
-
Nov 6th, 2000, 07:50 AM
#1
Thread Starter
Lively Member
Hoi,
On run-time I would like to have a textbox that can be modified by the user.
Dragging the object to another place is possible, but how do I change the width and height?
Fedor
If swimming makes you slim, then what the hell is wrong with the whales?
-
Nov 6th, 2000, 05:07 PM
#2
Fanatic Member
I'm not sure of the code that will allow you to drag the textbox to desired height/width...but what you could do is...have two text boxes and in their Text1/Text2_Change Events place this code:
Code:
'Under Text1_Change
Text3.Width = Text1.Text
'Under Text2_Change
Text3.Height = Text2.Text
You might want to restrict the textboxes to numeric characters only.
Gl,
D!m
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
|