VB Code:
'in form1
dim f as new form2
sub button1_click(sender as object,e as eventargs) handles button1.click
f.show()
end sub
'and in form2
sub button1_mouseenter(sender as object,e as eventargs) handles button1.mouseenter
button1.backcolor=color.brown 'monkey, lol
end sub
sub button1_mouseleave(sender as object, e as eventargs) handles button1.mouseleave
button1.backcolor=nothing
end sub
sub bb(sender as object,e as eventargs) handles button1.click
me.hide()
end sub
hope i don't bark a wrong tree...