Search results for query: *

  1. D

    object reference not set to an instance of an object

    I did define the function like that and i figured out my problem. I did not define symbols correctly. I guess I created the variable to point to an arraylist but did not actually create the arraylist object. I needed to add "= new arraylist" after my symbols declaration.
  2. D

    object reference not set to an instance of an object

    sorry, it is the line symbols2.Add(Me.TextBox1.Text) . With out the line, the program does not produce an error. It still produces an error when like changed to symbols2.Add("text") so it is something with the "symbols.add" part. the LoadSymbolList() function is in a module and just reads...
  3. D

    object reference not set to an instance of an object

    I just started learning Visual Basic a few days ago and have played with this for an hour. If I use line 113 (about ten lines from bottom), I get the error. If I replace "textbox1.text" with "fubar", it still gives the error. Imports System.Text Imports System.IO Imports System.Net...
Back
Top