Probably very basic question!

  • Thread starter Thread starter Paul
  • Start date Start date
P

Paul

I have a vb.net app with a textbox (textbox1 created using the designer).

I've created a new class, how can I use textbox1 within my new class? (I
want to do textbox1.text = "TEST")


Thanks
 
Create an instance of the class inside your form and the past the TextBox to
the class constructor or a method inside your class.

Regards,

Jose Luis Manners, MCP
 
Back
Top