If I'm understanding the question correctly, I guess it comes down to how
the information is to be shared with the rest of the application. There are
at least two options. One is to create a custom event and another is to
create a custom property on the Form. If another Form needs to be notified,
information "push", when something has happened then you would use an event,
if another Form is going to "pull" the information out then a property would
be best. So if the whole idea is to allow a user to enter information into a
TextBox and then have this information exposed on another Form, then look
into a property. Or, if the information is vital to the data on the other
Form, then you might even want to create a constructor (sub New in VB) that
requires this information.