quote:
Originally posted by Leroux
What do you mean "won't change back to the bigger"? Are you clicking the same button twice, or are you manually resizing the window before calling the function?
I'll guess that you need to change "if (PlusWnd.Height > 63)" to "if (PlusWnd.Height < 63)" (less than). Can't be sure this would be your issue but it's the only thing making sense to me immediately.
nah, greater than is what its supposed to be, and each way it should resize the window...
the way it should be is
if (PlusWnd.Height > 63){
will check if the window is taller than 63px, and if it is then it will make it smaller, and otherwise, it returns it to the original size, but it will only call the else, it will not call the main portion...i tried changing the symbol to greater than, and still nothing...