Form Design Error
-
Hi, Kindly help me, i took textbox from one of my other project into my current project but whenevr i click on Form Design its showing me this errors: The variable TextBox1 is either undeclared or was never assigned Plzzz help me... Thank you
-
Hi, Kindly help me, i took textbox from one of my other project into my current project but whenevr i click on Form Design its showing me this errors: The variable TextBox1 is either undeclared or was never assigned Plzzz help me... Thank you
mirzamujib wrote:
The variable TextBox1 is either undeclared or was never assigned
That's a fairly clear error message. Somewher in your copying you have omitted an allocation or reference so the main form does not have a variable called TextBox1. Take a look at the form and also the code behind to see which parts are missing. You would probably have found it simpler to add a new text box from scratch rather than doing it this way.
-
mirzamujib wrote:
The variable TextBox1 is either undeclared or was never assigned
That's a fairly clear error message. Somewher in your copying you have omitted an allocation or reference so the main form does not have a variable called TextBox1. Take a look at the form and also the code behind to see which parts are missing. You would probably have found it simpler to add a new text box from scratch rather than doing it this way.
Thanks a lot....
-
Hi, Kindly help me, i took textbox from one of my other project into my current project but whenevr i click on Form Design its showing me this errors: The variable TextBox1 is either undeclared or was never assigned Plzzz help me... Thank you