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

I have a save button in my project and it is supposed to save the contents of my 2 listboxes into a textfile, but it isn't saving everything. Instead, it deletes the last 5 lines of one of the listboxs. What have I done wrong with my code?

Dim loops As Integer 'Declare variable
    Dim savefile As New SaveFileDialog
    savefile.FileName = ""
    savefile.Filter = "textfiles(*.txt)|*.txt|file(*)|*|All files('.')|'.')"
    savefile.Title = "save"
    savefile.ShowDialog()
    Try
        Dim write As New System.IO.StreamWriter(savefile.FileName) 'Write and save a new file
        For loops = 1 To itemcount - 1 'loop until no lines are left in listbox
            write.WriteLine(firstname(loops)) 'Write out firstname
            write.WriteLine(lastname(loops)) 'Write out lastname
            write.WriteLine(gender(loops)) 'Write out gender 
            write.WriteLine(applicationdate(loops)) 'Write out date of regestration
            write.WriteLine(address(loops)) 'Write out address
        Next
        write.Close() 'Close file
        MsgBox("File Saved") 'Display message box
    Catch ex As Exception
    End Try
share|improve this question
1  
Where do you get the value of itemcount? – Steve Aug 12 '12 at 14:40
1  
is an exception being thrown somewhere? Your code silently ignores any exceptions. – orzechowskid Aug 12 '12 at 14:42
Yes, as @orzechowskid said, remove that empty catch and see if exception for Index out of Range appears – Steve Aug 12 '12 at 14:48
When I get rid of the catch, no error comes up, but it does make the program hang, so it definitely causes something to happen. – nurafh Aug 12 '12 at 15:01
I checked the textfile I was saving and it was still trying to save, its size was 4.7gb when i stopped it. – nurafh Aug 12 '12 at 15:06
show 6 more comments

1 Answer

You need to Set a break point on the line For loops = 1 To itemcount - 1

Then press the F8 key and inspect the value of itemcount as your code executes. Use this article about debugging in vb.net to help you.

From the comments it sounds as though the value of itemcount is incorrect in some way.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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