|
> timerを使って制限時間を作りたいのですが、timerをどう設定すれば良いのか分かりません。
Timer を 1 秒間隔にして
100 回動いたらクイズ終了にすればいいと思います。
' 経過時間
Private m_TotalTime As Integer = 0
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
Me.m_TotalTime += 1
If Me.m_TotalTime >= 100 Then
MessageBox.Show("クイズ終了")
End If
End Sub
> timer使って一定時間プログラム停止させる方法ぐらいはわかるんですが
こっちの方が難しい気がしますが・・・
|