Help me!!!!!!!!!

  • Thread starter Thread starter morice
  • Start date Start date
M

morice

Problem:
I make a G.DLL that referring a.dll,b.dll,c.dll in GAC.
a.dll: a1.function,a2.function ...
b.dll: b1.function ...
c.dll: c1.function,c2.function ...

then i make a app.exe that referring G.DLL.

I only use a1.function,so i only install a.dll into GAC(b.dll,c.dll is not
exist!)

But that don't work!
Why???

Thanks in advance!
 
morice said:
Problem:
I make a G.DLL that referring a.dll,b.dll,c.dll in GAC.
<snip>

First of all, write a descriptive subject for your post or it's
extremely unlikely you'll get much help.

Secondly, if your application is referencing G.dll and G.dll is
referencing a.dll, you need to add G.dll to your system as well. Your
app can't leapfrog from the application executable directly to a.dll, it
has to go through G.dll.

If that didn't make sense, consider explaining your problem in more detail.

And please, when you say "don't work", also tell us why you think this
doesn't work. Do you get a runtime exception ? Does the program start at
all ? Wrong behaviour ? We need error messages, etc.
 
Back
Top