-
I'm considering dropping $55 for the ReSize OCX V3.7 from Larcom and Young.
It seems to be a complete solution for the resizing of forms and controls. Does anyone here use it or have used it and is it worthe the coin??? It appears to be a popular component and I see it advertised in the back of VB Programmers Journal.
Or would a Module do the same thing???
-
Code.
Less money, more complication.
Code:
Listbox1.Height = Form.Height / 2
Text1.Height = Form.Height / 4 - 20
Text1.Top = Form.Height / 2 + 20
'......
Pretty complicated, but those controls may not work as well, so the MORE FLEXIBLe way is to use your own.
REMEMBER: Nothing is better than your own, for it is a step to success.
-
Don't spend money. Try searching http://www.softseek.com for an ActiveX Resize Control. I'm sure you will find one for free that probably does that same job as one that will cost you money.