¿How can I share some DLL's functions in other applicactions?

  • Thread starter Thread starter Carlos Villaseñor M.
  • Start date Start date
C

Carlos Villaseñor M.

Hi everybody!

I'm trying to develop a funtions series in a DLL's file made in C++ (Class
Library) (VS-2005), when I try to insert it as a referece in a VBasic
application, it appears with his class, but don´t appears the functions
class, why?

I appreciate some help.
Regards
Carlos Villaseñor M.
 
I'm trying to develop a funtions series in a DLL's file made in C++ (Class
Library) (VS-2005), when I try to insert it as a referece in a VBasic
application, it appears with his class, but don´t appears the functions
class, why?

Hi,

did you declare the functions public?
if you declared them private or internal they will not show up in
intellisense.
if you don't specify accessibility for a class they will be private.

if you did make them public, then the problem is something else.
could you post some code in that case that demonstrates the problem?

--

Kind regards,
Bruno van Dooren
(e-mail address removed)
Remove only "_nos_pam"
 
Back
Top