robert.berger Posted January 7, 2005 Report Share Posted January 7, 2005 what im trying to accomplish: . start count down timer. . every ten seconds, trigger an event via notifier . do not interrupt counter while triggering event. . abort at any time via "abort" button . finish after 60 seconds what its doing: . starts count down timer . after first ten seconds trigger event . does not interrupt counter . will abort at any time . finishes after 60 seconds . will not trigger event after first ten seconds obviously im not using the notifier properly and am hoping someone here can fix my mistake with a small amount of explanation on what i did wrong. the attached "code/vi" shows what i did. i also added a .jpg screen capture incase of version issues. thanks, robert Download File:post-981-1105123825.vi Quote Link to comment
Mark Balla Posted January 7, 2005 Report Share Posted January 7, 2005 The reason the dialogue box only happens once is because it is not in a loop. If you add a loop it should solve this problem. another problem that I ran across was the send notifier case is true for 10 ticks or 100 ms. this will send a notification twice with a 50 ms timeout and caused me to have to click the ok button more than once. Quote Link to comment
robert.berger Posted January 10, 2005 Author Report Share Posted January 10, 2005 The reason the dialogue box only happens once is because it is not in a loop. If you add a loop it should solve this problem. another problem that I ran across was the send notifier case is true for 10 ticks or 100 ms. this will send a notification twice with a 50 ms timeout and caused me to have to click the ok button more than once. 3422[/snapback] thank you for the explanation. i was not aware the notifier need to loop. i had mistakenly thought that if the send notification was looped that would be sufficient. this is the modified version. robert Quote Link to comment
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.