|
分類:[VB.NET/VB2005 以降]
乱数でランダムで数字を出すブログラムを 出すプログラムを作ってるのですがA数字も ランダムで出すプログラムってどのように作るのでしょうか?
Private Sub Timer3_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer3.Tick TextBox3.Text = Int(99 * Rnd())
If TextBox3.Text = TextBox9.Text Then Timer3.Enabled = False End If
End Sub
|