|
I just had a quick read of your code and I do not see an instantiation of a TextBox object. So I guess the problem is that your TextBox object is null being returned from get_helloForm() method. In fact you are returning the global object helloTextBox which has not been instantiated. I think you should look to see if you are getting a nullPointerException.
|