我的代码在运行时会打开一个窗体,当窗体打开时,它会打开并读取Excel电子表格中的数据。在初始加载过程中,它会读取当前单元格中的特定数据。为了测试阅读额外数据的原理,我使用一个按钮并调用特定单元格来手动重新读取数据。下面是我的代码:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace test_read_data_from_excel
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
OpenFile();
}
public void OpenFile()
{
Excel excel = new Excel(@"Test.xlsx", 1);
textBox1.Text = excel.ReadCell(1, 0);
textBox2.Text = excel.ReadCell(1, 1);
textBox3.Text = excel.ReadCell(3, 2);
}
private void button1_Click(object sender, EventArgs e)
{
Form2 frm = new Form2();
frm.Show();
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
}
private void button2_Click(object sender, EventArgs e)
{
Excel excel = new Excel(@"Test.xlsx", 1);
textBox1.Text = excel.ReadCell(2, 0);
textBox2.Text = excel.ReadCell(2, 1);
textBox3.Text = excel.ReadCell(4 , 2);
}
}
}
如何让表单自动读取数据,然后每隔10秒显示下一行或下一个数据单元格?P.S.我使用了一个按钮来检查下一行数据或下一个单元格的阅读是否正常工作。
1条答案
按热度按时间tct7dpnv1#
对于计时器功能,请尝试以下操作: