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());
}
SelectedIndexChangedprocedure trigging. – Matty_R Jul 13 '11 at 9:52