Plugin Software Components

J

Jon

I once read a pretty good article using VB 6 on how to design a framework using MDI forms and ActiveX controls to display different documents. It was a pretty good tutorial and I have been looking for something similar for VB.NET. What I am trying to do is code a framework and by adding different components display different data. If I choose to have a component that displays TV schedules say I can add that component and start showing them along side say a calander of events component.

I am not be using the correct terms so any help would be greatly appreciated as I am pretty new to .NET.

Thanks,
Jon


--------------= Posted using GrabIt =----------------
------= Binary Usenet downloading made easy =---------
-= Get GrabIt for free from http://www.shemes.com/ =-
 
L

Lloyd Sheen

Jon said:
I once read a pretty good article using VB 6 on how to design a framework
using MDI forms and ActiveX controls to display different documents. It was
a pretty good tutorial and I have been looking for something similar for
VB.NET. What I am trying to do is code a framework and by adding different
components display different data. If I choose to have a component that
displays TV schedules say I can add that component and start showing them
along side say a calander of events component.

I am not be using the correct terms so any help would be greatly
appreciated as I am pretty new to .NET.

Thanks,
Jon


--------------= Posted using GrabIt =----------------
------= Binary Usenet downloading made easy =---------
-= Get GrabIt for free from http://www.shemes.com/ =-

I think what you want to look into are Interfaces. Lets suppose you have a
"framework" app. Now you define the app to have a menu (an Interface), a
toolbar (an Interface), a navigation area (an Interface) , a status bar (an
Interface) and a user form area (another Interface).

Now you can create usercontrols / forms (for MDI) that implement those
interfaces and you are on your way. Lots of work to create an interface but
that is the embryo of the idea. I have done this for a media player I
designed. The app provides services to play various media types and I can
use several navigators to provide the views of the media.

Lloyd Sheen
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top