Visual Basic Resize Objects
I have found a need to resize certain objects in my Visual Basic apps. Because of this I have written a little chunk of code that will do just that to any Visual Basic 6.0 object that has height and width properties. Now the example here only resizes one object at a time but I also have code to resize multiple objects at once. Well it technically isn’t at once because the different objects will each take turns stepping, but it looks like it is at once. There is one hangup that I have with this code and that happens when you use it to shrink the form. If you attempt to shrink the form with another window open beneath it, the form will leave a trail. I have not figured out how to get around this yet other then just not doing it. In a future post I will include my code for resizing multiple objects at once. I still need to clean up my code and get rid of the useless stuff that I had added.