Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Forms

Status
Not open for further replies.

job357

Technical User
Sep 16, 2002
106
US
I am trying to find a way to get around form pop ups all over the screen for a menu system I am trying to implement. As it stands, the user is prompt for user/pass, upon authentication; they can then enter the system, which is another form. The problem now is that the login form is on the desktop along with the menu. Is there a neater way of having the windows somehow embed themselves in the background or something?

-Travis
 
one is called mdi

another is embedded forms wich goes something like this

Code:
dim frm1 as new form1
frm1.toplevel = false
me.controls.add(frm1)
frm1.show



Christiaan Baes
Belgium

"Time for a new sig." - Me
 
Thanks, this has put me on the right track!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top