If DLL is obsolete, how to manage different modules?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

if I have several modules, say Inventory, Order Processing
and General Ledger in my system.
Each module is a window applicatiion.
Each becomes a project.
If DLL is obsolete, how do I call them after login?
How do I manage them in other words?
 
* "=?Utf-8?B?c2hpbmVkb21haW4=?= said:
if I have several modules, say Inventory, Order Processing
and General Ledger in my system.
Each module is a window applicatiion.
Each becomes a project.
If DLL is obsolete, how do I call them after login?

What do you mean with "DLL is obsolete"?
 
When I read web sites of Visual Studio .Net 2005 beta,
perhaps the term "obsolete" is too strong,
Can I say that VB.NET will not create DLL programs?
 
Herfried,

I got the idea that I am the only one of the regulars from this newsgroup
who answers Combobox questions.

It is not true, by instance Ken and Jay don't avoid those. However when I
checked it at Google, I saw that you don't do that in a way you answer all
the other messages.

Any reason?

Cor
 
* "=?Utf-8?B?c2hpbmVkb21haW4=?= said:
Say if you have many vb.net window applications.
After user logins, user can call different window applications
as user wants.
How do you implement it?

\\\
System.Diagnostics.Process.Start("C:\Foo.exe")
///

I am not sure if this is what you are after.
 
I am just learning how to write VB.NET.
If each window application is a DLL, after login, user call a DLL to his
wanted
window application. If each window application is EXE, then it can be called
by double-clicked. It will be dangerous.

How will vb.net handle this dynamically?
For example, sometimes this client buys more modules,
while other clients only buy one module.
Say each module is a window application or another.
I am very new to vb.net.
What is the common way of handling this?
 
* "pc leung said:
I am just learning how to write VB.NET.
If each window application is a DLL, after login, user call a DLL to his
wanted
window application. If each window application is EXE, then it can be called
by double-clicked. It will be dangerous.

How will vb.net handle this dynamically?
For example, sometimes this client buys more modules,
while other clients only buy one module.
Say each module is a window application or another.
I am very new to vb.net.
What is the common way of handling this?

Maybe sort of plugin mechanism is a good choice:

<URL:http://dotnet.mvps.org/dotnet/samples/codingtechnique/downloads/PlugIns.zip>
 
Thank you HerFried

There are two directires: Interface and LateBinding.
Do I need both?
 
* "pc leung said:
There are two directires: Interface and LateBinding.
Do I need both?

No. I would take a closer look to the solution with the interface. The
other sample is only a demonstration of late binding.
 

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

Back
Top