Israel

Israel

  • NA
  • 1.3k
  • 204.1k

Forced to display to the label after last row selected

Jan 18 2018 2:03 PM
Hi!
 
Anyone can help please. I have these code and I need to display only the last row of datagrid on my label.
 
This first line it's works:
 
dgvNprint.CurrentCell = dgvNprint.Rows[dgvNprint.Rows.Count - 2].Cells[0];
 
the whole code:
 
...On Button_Click
  1. dgvNprint.CurrentCell = dgvNprint.Rows[dgvNprint.Rows.Count - 2].Cells[0];  
  2. string connectionString = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\test\\table.mdb;Persist Security Info=False";  
  3. OleDbConnection sqlCon = newOleDbConnection(connectionString);  
  4. sqlCon.Open();  
  5. string commandString = "select * from companyname where S='order by ID" + '*' + "'";  
  6. OleDbCommand sqlCmd = newOleDbCommand(commandString, sqlCon);  
  7. OleDbDataReader read = sqlCmd.ExecuteReader();  
  8. while (read.Read())  
  9. {  
  10. lblNumberprint.Text = read["ID"].ToString(); // it will show your friend's name  
  11. }  
  12. sqlCon.Close();  

Answers (5)