展开全部
timer控件的Enabled属性设为false
timer控件的Interval属性改为3000,也就是3s
Private Sub Command1_Click() ’点击按钮开始计时
Timer1.Enabled = True
End Sub
Private Sub Timer1_Timer() '每隔3s产生一个1-9的随机数
Text1.Text = Int(Rnd() * 9 - 1 + 1) + 1
End Sub
timer控件的Interval属性改为3000,也就是3s
Private Sub Command1_Click() ’点击按钮开始计时
Timer1.Enabled = True
End Sub
Private Sub Timer1_Timer() '每隔3s产生一个1-9的随机数
Text1.Text = Int(Rnd() * 9 - 1 + 1) + 1
End Sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
界面:三个文本框,一个按钮,一个计时器。
代码如下:
Private Sub Command1_Click()
Timer1.Enabled = Not Timer1.Enabled
If Timer1.Enabled Then
Timer1_Timer
Command1.Caption = "暂停"
Else
初始状态
End If
End Sub
Private Sub Form_Load()
Timer1.Enabled = False
Timer1.Interval = 3000
初始状态
End Sub
Private Sub Timer1_Timer()
Randomize
Text1 = Int(Rnd * 9 + 1)
Text2 = Int(Rnd * 9 + 1)
Text3 = Int(Rnd * 9 + 1)
End Sub
Private Sub 初始状态()
Text1 = ""
Text2 = ""
Text3 = ""
Command1.Caption = "出数"
End Sub
代码如下:
Private Sub Command1_Click()
Timer1.Enabled = Not Timer1.Enabled
If Timer1.Enabled Then
Timer1_Timer
Command1.Caption = "暂停"
Else
初始状态
End If
End Sub
Private Sub Form_Load()
Timer1.Enabled = False
Timer1.Interval = 3000
初始状态
End Sub
Private Sub Timer1_Timer()
Randomize
Text1 = Int(Rnd * 9 + 1)
Text2 = Int(Rnd * 9 + 1)
Text3 = Int(Rnd * 9 + 1)
End Sub
Private Sub 初始状态()
Text1 = ""
Text2 = ""
Text3 = ""
Command1.Caption = "出数"
End Sub
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
this.timer1.Enabled = true;
}
private void timer1_Tick(object sender, EventArgs e)
{
int b = GetRandom();
textBox1.Text = b.ToString();
int c = GetRandom();
textBox2.Text = c.ToString();
int d = GetRandom();
textBox3.Text = d.ToString();
}
private static int GetRandom()
{
Random a = new Random((int)DateTime.Now.Ticks);
int b = a.Next(10);
return b;
}
}
}
加个 timer控件就好了!
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
this.timer1.Enabled = true;
}
private void timer1_Tick(object sender, EventArgs e)
{
int b = GetRandom();
textBox1.Text = b.ToString();
int c = GetRandom();
textBox2.Text = c.ToString();
int d = GetRandom();
textBox3.Text = d.ToString();
}
private static int GetRandom()
{
Random a = new Random((int)DateTime.Now.Ticks);
int b = a.Next(10);
return b;
}
}
}
加个 timer控件就好了!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
三个文本框 每个文本框 出一个,还是 在同一个 文本框里 三秒 变一次?
追问
三个文本框,每个文本框出一个。谢谢这位大哥帮忙。谢谢啦
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
整数还是小数?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询