Hi guys I have a loop that increases my setsize to 1100 which works fine. My question is is it possiable for when I click my button the loop executes then if I click the button again it does not execute the loop and carry's on with the rest of the functions set for the button?
if (e.getSource() == check) {
for (int i = 900; i < 1100; i++) {
if(i == 1100) break;{
setSize(i,700);
}
}