i found it
thanks for help ;)
User Profile
Collapse
Profile Sidebar
Collapse
mrar
Last Activity: Feb 23 '12, 05:00 PM
Joined: Dec 27 '11
Location:
-
How Select listview item to show it content into text box programmatically
hello guys!
i want select next row from listview to show it content in textbox with a shortcut key
i test this:
this code don't show the contents just change...Code:private void textBox1_KeyDown(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.F8) { int index = 0; index = this.listView1.SelectedIndices[0]; listView1.Items[index+1].Selected = true; listView1.Select();
No activity results to display
Show More
Leave a comment: