Hey,

I have an code that makes form window + button bet bigger when pressed each time,
but it runs endless till out of screen,
code:
Code:
        {
                int S1 = 300;
                int S2 = 0;
                for (int loop = 1; loop <= 100; loop++)
                {
                    S1 = S1 + 100;
                    S2 = S1 - 50;
...