Wrox Programmer Forums
|
VB.NET 2002/2003 Basics For coders who are new to Visual Basic, working in .NET versions 2002 or 2003 (1.0 and 1.1).
Welcome to the p2p.wrox.com Forums.

You are currently viewing the VB.NET 2002/2003 Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old November 28th, 2003, 11:10 AM
Friend of Wrox
 
Join Date: Sep 2003
Posts: 130
Thanks: 0
Thanked 0 Times in 0 Posts
Default Forms

I have just started to use VB.Net and are experiencing a major problem, the components on my child forms are not showing at run time. On the main form I have main menu component with the other forms leading from this, this section all works fine, however all the components on the called forms are invisible even though the visible properties are true.

 
Old December 8th, 2003, 05:51 PM
Authorized User
 
Join Date: Oct 2003
Posts: 41
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Is the main form a MDI container? I am writing a similar application. On my 'main' form - (MDI container = true), I simply have:

     Private WithEvents Form2 As Form

and a menu-click event:

     Form2 = New Form2()
     Form2.MdiParent = Me
     Form2.Show()

to create instances of my "Form2", complete with my components visible.






Similar Threads
Thread Thread Starter Forum Replies Last Post
Forms and Sub forms Mink Access 1 December 1st, 2004 08:38 AM
Opening forms from other forms Paulsh Access VBA 1 September 30th, 2004 06:54 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.