I am about to give up. Tried lots of stuff for 5 hours straight. Nothing is coming to me.
I have a C# application that can add records, delete records from a database. It can also show items in textboxes and I can navigate the items using a next and previous button. Such as below for the Next button,
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);
}
}
MaxRows is this
MaxRows = ds1.Tables["Laptops"].Rows.Count;
The method I called above is NavigateRecords and this code is here
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());
}
I have an AutoNumber ID field in my Access database that the user should be able to skip to (by entering the ID into a textbox) and show the appropriate record in different textboxes (refer to NavigateRecords)
My problem is, how do I even do this? I need the correct row to be displayed in the textboxes from NavigateRecords that will also update the "inc" variable that is set globally to 0. eg, if the user starts up the program and skips to say id 7, it will display that record but when it does this the inc should also update with the row number so that if I clicked next it will take me to id 8 and not id 2... if that makes sense. I have this so far.
private void btnSkip_Click(object sender, EventArgs e)
{
string searchFor = txtSkip.Text;
DataRow[] Skip;
int results = 0;
Skip = ds1.Tables["Laptops"].Select("ID='" + searchFor + "'");
results = Skip.Length;
if (results > 0)
{
DataRow dr1;
for (int i = 0; i < MaxRows; i++)
{
// who knows what to do here.... or getting every row is even the right thing to do...
}
}
else
{
MessageBox.Show("No item found");
}
}