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

  • Thread starter Carlos Villaseñor M.
  • 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.
 
B

Bruno van Dooren

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"
 

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