QUOTE(hyteck @ 29 Aug, 2007 - 03:00 AM)

in visual basic can you open a form in a window already open .... like if you had a game and you went to a new land and the land was a form could you load that land as the form thats already open
if someone could tell me a site or give me a snip to work with that would be grate
thanks
Well, depends what you want to do with it. Anyhow I think, syntax in vb6 for it, might have been something like:
CODE
Sub make_new_instance_of_an_existing_form()
dim x as new Form_land
with x
.visible=true
.show()
rem set other properties
end with
end sub
Note that as the procedure closes, you might have left only events with what you can communicate with the form. You can however create a global variable before and then just assign memory to it.