I would appreciate any help with the following.....
Code:
       'Initialize an array
        Dim myArray() As String = {"One", "Two", "Three"}

        'as expected the text property of Textbox1 displays "One"
        TextBox1.DataBindings.Add("Text", myArray(0), "")

        ' subsequently myArray is modified but Textbox1 still displays "One"
        myArray(0) = "Four"
How do I get Textbox1.text to display the new value in myArray(0)?

Thanks