Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
3270 メインフレームの情報を更新するためにタイマーを 60 秒ごとに実行する必要があるアプリケーションに取り組んでいます。GUI を使用したくないのですが、Tick イベントなしでタイマーを機能させる方法が見つからないようです。ユーザーがタイマーを使用せずにアプリケーションを閉じるまで、タイマーを常に実行することは可能でしょうか?アプリケーションのコンポーネント?
これを試して:
Public Sub Wait(ByVal sec As Integer) sec = sec * 1000 Dim sw As New Stopwatch sw.Start() Do Until sw.ElapsedMilliseconds >= sec Application.DoEvents() Threading.Thread.Sleep(1) Loop sw.Stop() End Sub
お楽しみください =)