how can you change a value in another form from another form?
in vb6 you could just do this:

form1.label.caption = "blah"


what ive done is this:

dim frm as new form1
form1.label.caption = "halb"

but this will only work if i hide form1, then show it again after im done with form2.
any help is appreciated