I need help when i try to save the value of my buttons it says that it cannot convert 1 dimensional array to system.collections.arraylist which is the option i am using for my saving. I have seventeen buttons in total that i would like to save the text from. Any help would be appreciated. It's in visual basic.
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
My.Settings.ButtonValues = **{Button4.Text, Button5.Text}** << PROBLEM
My.Settings.Save()
End Sub
End Class