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.
わかりました、長いタイトルは知っていますが、助けが必要です。
どこから始めればよいかわからないため、現時点ではコードを取得していません。
ここに私がする必要があるものがあります:
テキストの最初の行をリストボックスからテキストボックスに移動し、数秒待ってからテキストの 2 行目に移動し、数秒待ってから 3 行目に移動する必要があります。
それは、私が取り組みたいと思っているプログラムですが、まだこの1つの部分にこだわっています。
助けてください、約4時間立ち往生しています。
このコードを試してください:
For Each objItem As Object In Me.ListBox1.Items Me.TextBox1.Text = objItem.ToString Me.TextBox1.Refresh() Threading.Thread.Sleep(2000) 'wait 2000 milliseconds = 2 seconds Next objItem