Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

I will explain this as simply as possible.

 

I have a multi project solution. I have a project with a form. On that form there is a button. When I click the button I want it to open a form in another project. Is this possible? If so how?

Posted

Whats the best way then to write a modular application. I want to be able to send customers PARTS of a program, without affecting everything else. For example:

 

I have a Menu program that calls different parts of my application. If I add a feature to the 'salesman master table editor' I want to be able to send just the 'salesman master table editor' without sending other parts of the solution, incase another programmer is in the middle of adding a feature to another part of the solution.

  • *Experts*
Posted

You might want to look in the Tutors Corner for divil's Plugin Based Application tutorial, as well as an accompanying sample that supports a UI included in the plugin.

 

You could put each section of the app in a plugin. I'm not sure how practical this would be with your app, but it's worth investigation.

 

Take a look at those two links.

 

http://www.xtremedotnettalk.com/showthread.php?s=&threadid=49597

http://www.xtremedotnettalk.com/showthread.php?s=&threadid=70920

  • *Experts*
Posted

If you compile your other project to a DLL and add a reference to that DLL you can create a new instance of a form if its in that class. Then you can access it.

Something like this:

Dim frmForm As New YourNameSpace.FormClass()

That is of course after you add a reference to the DLL.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...