Alright, this is hard to explain, but hopefully you get it. My bot, I've got the layout done and everything. When you run it, and you go to maximize it, how do you get it so everything resizes to fit the screen and not just have the bot stay the same size and the blank form filling in the space where the bot doesn originally fill. Hopefully you guys understand what I'm trying to ask. Thanks!
If it's Visual Basic (I'm assuming it is, you called your window a form!) then resize the controls (object.Move) when Form_Resize is fired.
Oops, yes I did mean Window. I'm using VB .net, if that helps at all.
Quote from: Antichrist on August 21, 2004, 09:30 PM
Oops, yes I did mean Window. I'm using VB .net, if that helps at all.
Newby answered your question for you, you need to make changes to your objects when Form_Resize fires, so everytime your form's size changes, your objects change accordingly.
Alright, thank you Newby.
Quote from: Antichrist on August 21, 2004, 09:30 PM
Oops, yes I did mean Window. I'm using VB .net, if that helps at all.
VB .NET has resizing built-in with the framework. You need to set your controls'
Dock property or
Anchor property. My bot resizes very well, and has no code for resizing controls outside of Dock and Anchor.
Awesome, thanks MyndFyre.