473,326 Members | 2,048 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,326 software developers and data experts.

Please help

Could someone please tell me what the error
is in the second function?

private void Form1_Load(object sender, System.EventArgs e)
{
string [ ] show = new string [3];
show[0] = "ene";
show[1] = "mane";
ListViewItem listItem1 = new ListViewItem(show);
listView1.Items.Add(listItem1);
show[0] = "one";
show[1] = "two";
ListViewItem listItem2 = new ListViewItem(show);
listView1.Items.Add(listItem2);
}

private void listView1_SelectedIndexChanged(object sender, System.EventArgs
e)
{
ListViewItem lvi = listView1.SelectedItems[0];
textBox1.Text = lvi.SubItems[1].ToString(); // error line
}
Nov 16 '05 #1
3 2942
Hi Paddy,

Try like this:
private void listView1_SelectedIndexChanged(object sender, System.EventArgs
e)
{
for (int i = 0; i < listView1.Items.Count; i ++)
{
if (listView1.Items[i].Selected)
textBox1.Text = listView1.Items[i].SubItems[1].ToString ();
}

}

Peter
"Paddy" <no@spam.pls> wrote in message
news:32**************************@freeler.nl...
Could someone please tell me what the error
is in the second function?

private void Form1_Load(object sender, System.EventArgs e)
{
string [ ] show = new string [3];
show[0] = "ene";
show[1] = "mane";
ListViewItem listItem1 = new ListViewItem(show);
listView1.Items.Add(listItem1);
show[0] = "one";
show[1] = "two";
ListViewItem listItem2 = new ListViewItem(show);
listView1.Items.Add(listItem2);
}

private void listView1_SelectedIndexChanged(object sender, System.EventArgs e)
{
ListViewItem lvi = listView1.SelectedItems[0];
textBox1.Text = lvi.SubItems[1].ToString(); // error line
}

Nov 16 '05 #2
Peter,

I have it right now, like so:

private void listView1_SelectedIndexChanged(object sender, EventArgs e)
{
ListView.SelectedListViewItemCollection contents =
this.listView1.SelectedItems;
if(contents.Count>0)
textBox1.Text = contents[0].SubItems[1].Text;
else
textBox1.Text ="error";
}

Thank you for your reponse.
Paddy,
************************************************** ***
"Peter Jausovec" <pe************@uni-mb.si> wrote in message
news:O7**************@tk2msftngp13.phx.gbl...
Hi Paddy,

Try like this:
private void listView1_SelectedIndexChanged(object sender, System.EventArgs e)
{
for (int i = 0; i < listView1.Items.Count; i ++)
{
if (listView1.Items[i].Selected)
textBox1.Text = listView1.Items[i].SubItems[1].ToString ();
}

}

Peter
"Paddy" <no@spam.pls> wrote in message
news:32**************************@freeler.nl...
Could someone please tell me what the error
is in the second function?

private void Form1_Load(object sender, System.EventArgs e)
{
string [ ] show = new string [3];
show[0] = "ene";
show[1] = "mane";
ListViewItem listItem1 = new ListViewItem(show);
listView1.Items.Add(listItem1);
show[0] = "one";
show[1] = "two";
ListViewItem listItem2 = new ListViewItem(show);
listView1.Items.Add(listItem2);
}

private void listView1_SelectedIndexChanged(object sender,

System.EventArgs
e)
{
ListViewItem lvi = listView1.SelectedItems[0];
textBox1.Text = lvi.SubItems[1].ToString(); // error line
}


Nov 16 '05 #3
Thank you.
See my previous post.
I found out how to do it.
Paddy.
"Sree" <Sr**@discussions.microsoft.com> wrote in message
news:EA**********************************@microsof t.com...
Try this
listView1.Items[ listView1.SelectedIndex].Text
"Paddy" wrote:
Could someone please tell me what the error
is in the second function?

private void Form1_Load(object sender, System.EventArgs e)
{
string [ ] show = new string [3];
show[0] = "ene";
show[1] = "mane";
ListViewItem listItem1 = new ListViewItem(show);
listView1.Items.Add(listItem1);
show[0] = "one";
show[1] = "two";
ListViewItem listItem2 = new ListViewItem(show);
listView1.Items.Add(listItem2);
}

private void listView1_SelectedIndexChanged(object sender, System.EventArgs e)
{
ListViewItem lvi = listView1.SelectedItems[0];
textBox1.Text = lvi.SubItems[1].ToString(); // error line
}

Nov 16 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Kurt Watson | last post by:
I’m having a different kind of problem with Hotmail when I sign in it says, "Web Browser Software Limitations Your Current Software Will Limit Your Ability to Use Hotmail You are using a web...
7
by: x muzuo | last post by:
Hi guys, I have got a prob of javascript form validation which just doesnt work with my ASP code. Can any one help me out please. Here is the code: {////<<head> <title>IIBO Submit Page</title>...
7
by: tyler_durden | last post by:
thanks a lot for all your help..I'm really appreciated... with all the help I've been getting in forums I've been able to continue my program and it's almost done, but I'm having a big problem that...
23
by: Jason | last post by:
Hi, I was wondering if any could point me to an example or give me ideas on how to dynamically create a form based on a database table? So, I would have a table designed to tell my application...
13
by: Joner | last post by:
Hello, I'm having trouble with a little programme of mine where I connect to an access database. It seems to connect fine, and disconnect fine, but then after it won't reconnect, I get the error...
1
by: David Van D | last post by:
Hi there, A few weeks until I begin my journey towards a degree in Computer Science at Canterbury University in New Zealand, Anyway the course tutors are going to be teaching us JAVA wth bluej...
1
PEB
by: PEB | last post by:
POSTING GUIDELINES Please follow these guidelines when posting questions Post your question in a relevant forum Do NOT PM questions to individual experts - This is not fair on them and...
0
by: 2Barter.net | last post by:
newsmail@reuters.uk.ed10.net Fwd: Money for New Orleans, AL & GA Inbox Reply Reply to all Forward Print Add 2Barter.net to Contacts list Delete this message Report phishing Show original
6
by: jenipriya | last post by:
Hi all... its very urgent.. please........i m a beginner in oracle.... Anyone please help me wit dese codes i hv tried... and correct the errors... The table structures i hav Employee (EmpID,...
5
by: tabani | last post by:
I wrote the program and its not giving me correct answer can any one help me with that please and specify my mistake please it will be highly appreciable... The error arrives from option 'a' it asks...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.