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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hi Folks, I am kind of new to VB

Status
Not open for further replies.

weedz

Programmer
Dec 5, 2000
718
NL
Hi Folks,

I am kind of new to VB (coming from Visual FoxPro).
I have this project in VB that calls a dll written in C++ of which I have the sources.
Is it possible to debug the c++ source from VB. So when stepping through the VB code, it switches to C++ when debugging.
I use VB 6.0 sp5 and VC++ 6.0.

TIA,

Weedz (Edward W.F. Veld)
My private project:Download the CrownBase source code !!
 
You can't debug the c++ code from VB, you need to have both the C++ project and the VB project running at the same time.

Open the c++ project, set your break points, and then pick "Start Debug" from the build menu.

Then run the VB project. It will let you bounce back and forth between projects as the code that is executing goes from one to the other.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top