这是我一直在关注的一些背景。
http://www.homeandlearn.co.uk/csharp/csharp_s12p9.html
这将转到数据库的最后一条或第一条记录。我想通过在文本框中输入 ID 号来跳到用户想要的访问数据库中的记录,然后将正确的行放入文本框中。
我想我可以使用上述网站上的这段代码。我已经实现了上面网站上的所有其他内容。
全局变量
int inc = 0;
稍后我将在“跳过”按钮中调用的导航记录
private void NavigateRecords()
{
DataRow dRow = ds1.Tables["Laptops"].Rows[inc];
txtMaker.Text = ds1.Tables["Laptops"].Rows[inc].ItemArray.GetValue(1).ToString();
txtModel.Text = ds1.Tables["Laptops"].Rows[inc].ItemArray.GetValue(2).ToString();
txtPrice.Text = ds1.Tables["Laptops"].Rows[inc].ItemArray.GetValue(3).ToString();
txtBids.Text = ds1.Tables["Laptops"].Rows[inc].ItemArray.GetValue(4).ToString();
txtScreen.Text = ds1.Tables["Laptops"].Rows[inc].ItemArray.GetValue(5).ToString();
txtCPU.Text = ds1.Tables["Laptops"].Rows[inc].ItemArray.GetValue(6).ToString();
txtMemory.Text = ds1.Tables["Laptops"].Rows[inc].ItemArray.GetValue(7).ToString();
txtHD.Text = ds1.Tables["Laptops"].Rows[inc].ItemArray.GetValue(8).ToString();
picLaptops.Image = Image.FromFile(ds1.Tables["Laptops"].Rows[inc].ItemArray.GetValue(9).ToString());
}
到目前为止我的跳过按钮...
private void btnSkip_Click(object sender, EventArgs e)
{
NavigateRecords();
}
我很难做到这一点。我知道我想要什么,但缺乏实现它的技术技能。这是非常令人沮丧的。我不知道该怎么做。
如果有人可以解决它并向我展示代码,我就可以理解它并在其他地方使用它。
如果有帮助,这是一个转到下一条记录的下一个按钮的示例。
private void btnNext_Click(object sender, EventArgs e)
{
if (inc != MaxRows - 1)
{
inc++;
NavigateRecords();
}
else
{
MessageBox.Show("You have reached the end of available items", "End of Available Items", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}