help me....

  • Thread starter Thread starter Sheryll via DotNetMonster.com
  • Start date Start date
S

Sheryll via DotNetMonster.com

im currently working on a .dll, can somebody give me an idea on how can i use
some of my .exe class..thanks...
 
Sheryll said:
im currently working on a .dll, can somebody give me an idea on how can i use
some of my .exe class..thanks...

It's not clear what you're asking. Please rephrase the question, and
give us more details...
 
Are you sayinng you want to use your dll in your exe? What kind of dll is
it and what kind of exe? If its a normal shared win32 dll you need to at
least build your app with the lib file you created with the dll, and include
the header (.h) file, and then finally make sure that the dll is accessible
to the exe (I just put copies in my debug and release folders).

If it doesn't work....make sure your dll is exporting your functions. Use:
dumpbin mylib.dll /exports to see what functions have been exported.....

That's all i can offer w/out knowing more....

good luck
 
Back
Top