Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

VC++ .H .LIB and .DLL use in VB?

Status
Not open for further replies.

FORAND

Programmer
Joined
May 26, 2003
Messages
64
Location
CA

Is it possible to use vc++ .H, .LIB and .DLL in VB?

How?
 
.h -- absolutely not. Header files (with a .h extension) are part of C/C++ source code, therefore they will only make sense to a C/C++ compiler.

.lib -- maybe, I'm not a VB programmer.

.dll -- Yes. That is what [tt]Public Declare Function ... Lib "************"[/tt] for all the Windows API calls is all about.

I REALLY hope that helps.
Will
 
.lib -- no.

Greetings,
Rick
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top