-
This will probably sound dumb to most of you, but I'm having problems keeping my forms from resizing. I thought it was simply a property of the from that I need to set, but I can't seem to find it. Tried messing around in the resize event, but it looked pretty nasty. Anyway, all I ask is that when/if you answer this question, that you don't make fun of me.... :-)
-
It is a Property, Change the BorderStyle to Fixed Single
-
I can't figure out the tabstrip control, so I can't blame you.
Look at the border style property, set it to fixed single.
-
.....I'm an idiot
Thank you both!
-
You could also keep it set at property 2 so that is resizes and use:
Code:
Private Sub Form_Load()
Label1.caption = Me.Height
Label2.caption = Me.Width
End Sub
Private Sub Form_Resize()
On Error Resume Next
Me.Height = Label1.caption
Me.Width = Label2.caption
End Sub
[Edited by Matthew Gates on 07-18-2000 at 03:59 PM]