我有一个简单的 c# 应用程序,它显示来自访问数据库的数据
private void DisplayRow(int rowIndex)
{
// Check that we can retrieve the given row
if (myDataTable.Rows.Count == 0)
return; // nothing to display
if (rowIndex >= myDataTable.Rows.Count)
return; // the index is out of range
// If we get this far then we can retrieve the data
try
{
DataRow row = myDataTable.Rows[rowIndex];
SurnametextBox.Text = row["Surname"].ToString();
FirstNametextBox.Text = row["Firstname"].ToString();
PhonetextBox.Text = row["Phone"].ToString();
ContactTypetextBox.Text = row["ContactType"].ToString();
}
catch (Exception ex)
{
MessageBox.Show("Error in DisplayRow : \r\n" + ex.Message);
}
}
现在它显示了数据库中的第一条记录,就是这样,我有下一步和后退按钮以便单击数据,但是显示下一条记录需要什么代码?