私のアプリケーションでは、timer1 も timer5 も含め、いくつかのタイマーを取得しました。timer1 は timer2 をアクティブにし、前のタイマーを false に設定します。
「timer6」のように、これらに続く別のタイマーを作成したい
if timer1.enabled = true then 'then it should check if the timer2 now is enabled
if timer2.enabled = true then 'and so on to it reaches timer5..
私は停止点にいて、基本的にこの部分が機能する必要があるだけなので、これを達成するための例が必要です。
私の考えは、timer6でこれを行うことだけでした
if timer1.enabled = true then
if timer2.enabled = true then
if etc etc
else
timer6.enabled = true
timer6.enabled = false
end if
end if
end if
サブ終了
これを達成する方法はありますか?
だから..すべてのタイマーが1つの条件で有効になっていることを確認し、最後の条件を無効にする方法を探しています。