Link to home
Start Free TrialLog in
Avatar of shern
shern

asked on

Forms inhertiance

hi all,

in vb6 you could access a forms objects properties from another form by simply calling

form1.label=form2.label

how do you do this in vb.net?
i know u have to create an instance of the form

dim thisform as new form1()

before you can access the objects in the form
but lets say you don't want to create a new instance of the form because its already been created and you just want to access its values from the existing form via another form. how?
ASKER CERTIFIED SOLUTION
Avatar of imessvb
imessvb

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of shern
shern

ASKER

yeah or so i figured