Bonjour
Using the strataListview
What is the best approche to emulate the (auto navigate) available in the standard listview
Thank you
I was able to do it using (SeekToPrimaryKey) in the SelectedItemChanged event
private void strataListViewNotes_SelectedItemChanged(object sender, EventArgs e) { if (strataListViewNotes.SelectedItems.GetLength(0) > 0) { this.toolStripButtonEdit.Enabled = true; this.toolStripButtonDelete.Enabled = true;
this.notesBO1.SeekToPrimaryKey((Int32)strataListViewNotes.SelectedItems[0].CustomData["PrimaryKey"]); txtNote.Text = this.notesBO1.Tbl_Notes; } else { this.toolStripButtonEdit.Enabled = false; this.toolStripButtonDelete.Enabled = false; } }