用c# 定时提取数据 来改变label坐标
坐标数据已存入表中privatevoidtimer2_Tick(objectsender,EventArgse){SqlConnectionsql=newSqlConne...
坐标数据已存入表中
private void timer2_Tick(object sender, EventArgs e)
{
SqlConnection sql = new SqlConnection("Data Source=WWW-01DB9817D75;Initial Catalog=tempdb;Integrated Security=True");
SqlCommand cmd = new SqlCommand("select x,y from Table_1 where id=1",sql );
sql.Open();
SqlDataReader reader = cmd.ExecuteReader();
while (reader.Read())
{
x=reader.GetInt32(0);
y=reader.GetInt32(1);
}
sql.Close();
}
x y为label的location参数 label一下就到了最后一个坐标 没有动起来的效果 不知道除了什么问题 请教高手
没有 where id=1的筛选 展开
private void timer2_Tick(object sender, EventArgs e)
{
SqlConnection sql = new SqlConnection("Data Source=WWW-01DB9817D75;Initial Catalog=tempdb;Integrated Security=True");
SqlCommand cmd = new SqlCommand("select x,y from Table_1 where id=1",sql );
sql.Open();
SqlDataReader reader = cmd.ExecuteReader();
while (reader.Read())
{
x=reader.GetInt32(0);
y=reader.GetInt32(1);
}
sql.Close();
}
x y为label的location参数 label一下就到了最后一个坐标 没有动起来的效果 不知道除了什么问题 请教高手
没有 where id=1的筛选 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询