Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Menu
Message
From
27/10/2003 14:25:14
 
 
To
27/10/2003 14:02:19
General information
Forum:
ASP.NET
Category:
Other
Title:
Re: Menu
Miscellaneous
Thread ID:
00843184
Message ID:
00843204
Views:
14
Paul,

Good to see ya on line. Give me a call sometime.

The main thing you must do is add a reference to the namespace of the other projects to the menu code.

Imports Somepoject.whatever
or
In C#
Using Somepoject.whatever

Then you should be able to just add a menu pad and handler code with the basic call to the form.

Dim Form1 As New NameofaForm
Form1.MdiParent = Me
Form1.Show()

Optionally you could use the following code without the Imports above by using a full reference to the form.

In VB
Dim Form1 As New Somepoject.whatever.NameofaForm
Form1.MdiParent = Me
Form1.Show()

I'm a green rookie with .NET but I hope this will help.

Terry Carroll
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform