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
