Click here to Skip to main content
15,920,632 members
Home / Discussions / C#
   

C#

 
QuestionRepeated : Visio 2003 Problem or my add-in problem Pin
salman_syed_0126-Apr-06 18:43
salman_syed_0126-Apr-06 18:43 
Questiondata from client into hashtable on server Pin
salman_syed_0126-Apr-06 18:36
salman_syed_0126-Apr-06 18:36 
QuestionWeb hosting in intranet Pin
Jijo BP26-Apr-06 17:07
Jijo BP26-Apr-06 17:07 
AnswerRe: Web hosting in intranet Pin
Ed.Poore26-Apr-06 23:47
Ed.Poore26-Apr-06 23:47 
AnswerRe: Web hosting in intranet Pin
Vasudevan Deepak Kumar27-Apr-06 4:04
Vasudevan Deepak Kumar27-Apr-06 4:04 
Questiona question about WebBrowser Pin
ylw6626-Apr-06 17:00
ylw6626-Apr-06 17:00 
GeneralRe: a question about WebBrowser Pin
Guffa26-Apr-06 20:52
Guffa26-Apr-06 20:52 
GeneralRe: a question about WebBrowser Pin
ylw6626-Apr-06 21:03
ylw6626-Apr-06 21:03 
GeneralRe: a question about WebBrowser Pin
Guffa26-Apr-06 22:35
Guffa26-Apr-06 22:35 
GeneralRe: a question about WebBrowser Pin
ylw6626-Apr-06 23:15
ylw6626-Apr-06 23:15 
GeneralRe: a question about WebBrowser Pin
Guffa27-Apr-06 1:07
Guffa27-Apr-06 1:07 
GeneralRe: a question about WebBrowser Pin
ylw6627-Apr-06 15:32
ylw6627-Apr-06 15:32 
GeneralRe: a question about WebBrowser Pin
Guffa28-Apr-06 3:21
Guffa28-Apr-06 3:21 
GeneralRe: a question about WebBrowser Pin
ylw6628-Apr-06 15:01
ylw6628-Apr-06 15:01 
AnswerRe: a question about WebBrowser Pin
J4amieC26-Apr-06 22:24
J4amieC26-Apr-06 22:24 
GeneralRe: a question about WebBrowser Pin
ylw6626-Apr-06 23:18
ylw6626-Apr-06 23:18 
GeneralRe: a question about WebBrowser Pin
J4amieC26-Apr-06 23:59
J4amieC26-Apr-06 23:59 
QuestionHow to decode Octal email encode Pin
kiachik26-Apr-06 14:51
kiachik26-Apr-06 14:51 
AnswerRe: How to decode Octal email encode Pin
kiachik26-Apr-06 23:46
kiachik26-Apr-06 23:46 
QuestionGetting data from listview Pin
teejayem26-Apr-06 14:38
teejayem26-Apr-06 14:38 
AnswerRe: Getting data from listview Pin
Sean8926-Apr-06 15:13
Sean8926-Apr-06 15:13 
GeneralRe: Getting data from listview Pin
teejayem26-Apr-06 15:58
teejayem26-Apr-06 15:58 
GeneralRe: Getting data from listview Pin
Sean8926-Apr-06 16:01
Sean8926-Apr-06 16:01 
GeneralRe: Getting data from listview Pin
teejayem26-Apr-06 16:11
teejayem26-Apr-06 16:11 
GeneralRe: Getting data from listview Pin
teejayem26-Apr-06 16:16
teejayem26-Apr-06 16:16 
I'm sorry sean i shoulda read more clearly. this is how i tested it
private void button6_Click(object sender, EventArgs e)
{
    int selected = listView1.SelectedItems[0].Index;  // get the first selected item's index
    textBox1.Text = listView1.Items[selected].Text; // to get the data in the the first column.
    textBox2.Text = listView1.Items[selected].SubItems[1].Text; // to get the data in the second column
    textBox3.Text = listView1.Items[selected].SubItems[2].Text;


}


but i couldn't get it to show in the 3 boxes

Don't be overcome by evil, but overcome evil with good

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.