Click here to Skip to main content
15,890,123 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
any body please help me to put debugger.launch(); in my dll project (VC++)

C++
static bool SampleDbCall ()
{
    debugger.launch(); // syntax error
    
    int retValue = ARRF_ADD_ON_RET_FAILURE;
    ROW record = NULL;
    int logbuflen = 0;
    int i = 0;
    QueryObject *query = NULL;
    ResultSet *results = NULL;
    bool retVal = false;
Posted
Updated 9-Jul-14 20:50pm
v2
Comments
OriginalGriff 10-Jul-14 2:31am    
If you have a syntax error, it's probably a good idea to show us the code that caused it...just the line and half-a dozen lines either side for context should do it.
Because without that, we'd have to guess, and that rarely works with computers.
Use the "Improve question" widget to edit your question and provide better information.
jishnu123 10-Jul-14 2:45am    
static bool SampleDbCall ()
{
debugger.launch(); // syntax error

int retValue = ARRF_ADD_ON_RET_FAILURE;
ROW record = NULL;
int logbuflen = 0;
int i = 0;
QueryObject *query = NULL;
ResultSet *results = NULL;
bool retVal = false;

1 solution

1. Add
C++
using namespace System::Diagnostics;


2. Spell correctly
C++
Debugger.Launch();
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900