Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

G'day all,

I'm having a problem using the listbox1.items[x] = stringhere for some reason when ever I call this property to change the text all it does is remove the item completely from the listbox. Thanks a bunch guys.

Here is the code: (The problem occurs inside the case "tb_MName" switch)

public void SetMovieEditable(string sendername, string movie)
    {
        Boolean changeoccured = false;
        XDoc.Load(tb_DBDir.Text + "\\MMM.xml");
        int x = lb_Movies.SelectedIndex;

        foreach (XmlNode XNode in XDoc.DocumentElement.ChildNodes)
        {
    //Only do the work if we are working with the right XmlNode
            if (XNode.Attributes.GetNamedItem("Name").Value == lb_Movies.SelectedItem.ToString())
            {
                switch (sendername)
                {
        //Movie name has been changed?
                    case "tb_MName": 
            //Is the new movie name actually different from current name?
                        if (tb_MName.Text != XNode.Attributes.GetNamedItem("Name").Value)
                        {
            //Add input to the debugging window
                            DebugStatus(sendername, movie, XNode.Attributes.GetNamedItem("Name").Value, movie);
            //This should be changing the items text but instead just deletes it.
                            lb_Movies.Items[x] = movie;
            //Change the value of the XmlNodes name attribute to the new movie name
                            XNode.Attributes.GetNamedItem("Name").Value = lb_Movies.Items[x].ToString();
            //If a change has occured
                            changeoccured = true;
                        }
                        else { changeoccured = false; }
                        break;

                }
                if (changeoccured != false)
                {   
        //save the document with the change
                    XDoc.Save(tb_DBDir.Text + "\\MMM.xml");
                }
            }
        }
    }

private void tb_MName_KeyPress(object sender, KeyPressEventArgs e)
    {
    //Did they just press enter?
        if (e.KeyChar == 13)
        {
    //Lets begin the change of the old movie name to the new movie name
            SetMovieEditable(tb_MName.Name, tb_MName.Text);

            //Does the new movie name match the actual files name? If not then do you want to rename it?
            if (tb_MName.Text != Path.GetFileNameWithoutExtension(lb_FName.Text))
            {
                if (MessageBox.Show("Would you like to rename the file to match the new Movie name?", "Rename file?", MessageBoxButtons.YesNo, MessageBoxIcon.Exclamation) == System.Windows.Forms.DialogResult.Yes)
                {
        //Update the FName label with the MName text box
                    lb_FName.Text = tb_MName.Text;
        //Lets begin the change of the old filename to the new filename
                    SetMovieEditable(lb_FName.Name, tb_MName.Text);
                }
            }

        }
    }


private void lb_Movies_SelectedIndexChanged(object sender, EventArgs e)
        {
         //Showing the saved properties of the selected movie
             DisplayMovie(lb_Movies.SelectedItem.ToString());
        }
share|improve this question
winform, wpf, or asp.net? – Bolu Jul 13 '11 at 8:56
It is using winform. If I just create a button with the same code that changes the text it works fine. – Matty_R Jul 13 '11 at 9:07
Managed to fix it. Will post my solution soon. There was a problem with the logic of the loop and the SelectedIndexChanged procedure trigging. – Matty_R Jul 13 '11 at 9:52

closed as too localized by Bill the Lizard Jul 15 '11 at 11:02

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

I think you want to set the Text property of the list item listbox1.items[x].Text = stringhere

share|improve this answer
Are you sure there is a property called Text? – Bolu Jul 13 '11 at 8:54
2  
There is no text property for listbox1.items[x]. – Matty_R Jul 13 '11 at 9:08

Managed to fix it. There was a problem with the logic of my foreach statements and the way the SelectedIndexChanged was interacting. Below is the changed code.

     public void SetMovieEditable(string sendername, string movie)
        {
            Boolean changeoccured = false;
            string firstselected = lb_Movies.SelectedItem.ToString();
            int x = lb_Movies.SelectedIndex;

            foreach (XmlNode XNode in XDoc.DocumentElement.ChildNodes)
            {
        //Change this so that it will only get the value of the currently
        //selected item at the beginning of the foreach loop.
                if (XNode.Attributes.GetNamedItem("Name").Value == firstselected)
                {
                    switch (sendername)
                    {
                        case "tb_MName": 
                            if (tb_MName.Text != XNode.Attributes.GetNamedItem("Name").Value)
                            {
                                DebugStatus(sendername, movie, XNode.Attributes.GetNamedItem("Name").Value, movie);
                                //Change made here - Set the selectedindex to -1
                //so the SelectedIndexChanged procedure doesn't trigger
                lb_Movies.SelectedIndex = -1;
                                lb_Movies.Items[x] = movie;
                                XNode.Attributes.GetNamedItem("Name").Value = movie;
                                changeoccured = true;
                            }
                            else { changeoccured = false; }
                            break;                            
                    }
                    if (changeoccured != false)
                    {
                        XDoc.Save(tb_DBDir.Text + "\\MMM.xml");
                        lb_Movies.SelectedIndex = x;
                    }
//we are also breaking here out of the loop once its found.
                    break;
                }
            }
        }



        private void lb_Movies_SelectedIndexChanged(object sender, EventArgs e)
        {
    //Only trigger the display movie procedure if the SelectedIndex is 
    //greater than -1, which is nothing.
            if (lb_Movies.SelectedIndex > -1)
            {
                DisplayMovie(lb_Movies.SelectedItem.ToString());
            }
        }
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.