button + loop
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);
}
}
Related Article: how to code 'save Button' in java
is a Java discussion thread by Osaid9 that has 1 reply, was last updated 4 months ago and has been tagged with the keywords: java.
TIM_M_91
Junior Poster in Training
83 posts since Feb 2012
Reputation Points: 18
Solved Threads: 0
Skill Endorsements: 0
well ... one way is to do it in a thread.
first time you click => start
next time you click => sleep
stultuske
Industrious Poster
4,374 posts since Jan 2007
Reputation Points: 1,318
Solved Threads: 610
Skill Endorsements: 24
well ... one way is to do it in a thread.
first time you click => start
next time you click => sleep
How would I implement it?
TIM_M_91
Junior Poster in Training
83 posts since Feb 2012
Reputation Points: 18
Solved Threads: 0
Skill Endorsements: 0
thread tutorial.
I would go for the 'implements Runnable' solution. might be a good exercise for you to figure out why.
stultuske
Industrious Poster
4,374 posts since Jan 2007
Reputation Points: 1,318
Solved Threads: 610
Skill Endorsements: 24