yozhi Posted February 5, 2016 at 04:23 PM Report Share #593203 Posted February 5, 2016 at 04:23 PM Há forma de juntar várias forms numa só form ? Neste momento tinha andado a tentar fazer com que ao clicar num item do MenuStrip que abrisse uma nova form dentro da mesmo , ou que desse para fazer algo nem que fosse do genero das Tabs , por isso se pudessem aconselhar agradecia. Cumprimentos Link to comment Share on other sites More sharing options...
Retsu9 Posted February 5, 2016 at 04:51 PM Report Share #593204 Posted February 5, 2016 at 04:51 PM (edited) podes usar um MDI container ou um panel e meter um form ou qualquer coisa dentro dele através da propriedade parent Exemplo: tens 1 painel no form1 em que vais chamar o form2 para dentro dele. Dim F2 as new form2 F2.TopLevel=False F2.Parent=Panel1 F2.Show() Edited February 5, 2016 at 05:00 PM by Retsu9 Link to comment Share on other sites More sharing options...
yozhi Posted February 5, 2016 at 06:54 PM Author Report Share #593206 Posted February 5, 2016 at 06:54 PM (edited) eu fiz da seguinte forma, meti uma tabcontrol e um menu strip por cima de onde aparece as tab, e pus o seguinte código dentro do item do menu. Dim frm As New introduzirmanual() frm.TopLevel = False tabmanual.Controls.Add(frm) frm.Dock = DockStyle.Fill frm.Show() Para o que pretendo para já está a funcionar direito. Edited February 15, 2016 at 12:37 AM by apocsantos Link to comment Share on other sites More sharing options...
MouserMan Posted February 17, 2016 at 06:53 PM Report Share #593635 Posted February 17, 2016 at 06:53 PM No lugar do Panel, pode usar TabControl também, vai depender do seu projeto. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now