Sourceobject

  • Thread starter Thread starter Peter D
  • Start date Start date
P

Peter D

In Access 97 I use Forms!Frmmain!Frmcontainer.sourceobject = "FrmWhateverform"
So I don't close forms, i just change the frmcontainer's source.

Is there something similar in VB.net? And how does the code loke like?


TX, anyone, anywhere, anytime.
 
Did you just want to stop showing the form but keep it loaded ?

Me.Hide() ' To Hide the form

Me.Show() 'Shows the form

Is this what you need ?

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .

Time flies when you don't know what you're doing
 
In Access, because i use sourceobject i don't have to close or hide the
form. When i write frm!sourceobject = "frmmyform" that form is loaded
into the container and the previous form is gone.


So in vb.net, i know the "show form or hide form...." codes. But it's
not really that what i'm looking for.

TX for the reply anyway.



*** Sent via Devdex http://www.devdex.com ***
Don't just participate in USENET...get rewarded for it!
 
Hi Peter,

You can create your mdi child forms shared

And then there are a lot of possibitlities

I hope this helps?

Cor
 
..NET does not really have this concept

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .

Time flies when you don't know what you're doing
 
Back
Top