S
Stephen
I hate this error and usually can find a way to fix it but this one has me
stumped
tColors is an ArrayList
At first I had this:
tColors.Add(ColorsTextBox.Text)
Now I have this:
Dim str As String
str = ColorsTextBox.Text
tColors.Add(str)
Neither one works and both give me the "Object reference not set to an
instance of an object" error. How is str NOT an instance of an object?? It
is clearly defined right above.
stumped
tColors is an ArrayList
At first I had this:
tColors.Add(ColorsTextBox.Text)
Now I have this:
Dim str As String
str = ColorsTextBox.Text
tColors.Add(str)
Neither one works and both give me the "Object reference not set to an
instance of an object" error. How is str NOT an instance of an object?? It
is clearly defined right above.