Click here to Skip to main content
15,889,868 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Free c++ compiler Pin
Henry miller15-Sep-04 4:07
Henry miller15-Sep-04 4:07 
Generalso confused! Pin
ISUstudent14-Sep-04 17:16
ISUstudent14-Sep-04 17:16 
GeneralRe: so confused! Pin
Hardy_Smith14-Sep-04 21:21
Hardy_Smith14-Sep-04 21:21 
GeneralRe: so confused! Pin
rotu15-Sep-04 17:41
rotu15-Sep-04 17:41 
Generalso confused! Pin
Anonymous14-Sep-04 17:14
Anonymous14-Sep-04 17:14 
GeneralRe: so confused! Pin
Arsalan Malik14-Sep-04 18:19
Arsalan Malik14-Sep-04 18:19 
GeneralAutomating the VC7 debugger Pin
Stephen Vivash14-Sep-04 16:49
Stephen Vivash14-Sep-04 16:49 
GeneralRe: This is ! Pin
Anonymous14-Sep-04 21:05
Anonymous14-Sep-04 21:05 
void Debug()
{
HRESULT hResult;
CComPtr<envdte::_dte> spIDevStudioApp;
CComPtr<envdte::window> spMainWindow;
CComPtr<envdte::debugger> spIDebugger;
CComPtr<envdte::breakpoints> spIBreakpoints;
CComPtr<envdte::_solution> spSolution;
CComPtr<envdte::project> spProject;
CComBSTR bstrTemp1 = _T("VisualStudio.DTE.7.1");
CComBSTR bstrTemp2;
if(SUCCEEDED(hResult = spIDevStudioApp.CoCreateInstance(bstrTemp1,NULL,
CLSCTX_LOCAL_SERVER)))
{
if(SUCCEEDED(hResult = spIDevStudioApp->get_Debugger(&spIDebugger)))
{
spIDevStudioApp->get_MainWindow(&spMainWindow);
spMainWindow->put_Visible(VARIANT_TRUE);
spIDevStudioApp->get_Solution(&spSolution);
bstrTemp1 = _T("C:\\Temp");
bstrTemp2 = _T("Program.sln");
spSolution->Create(bstrTemp1,bstrTemp2);
bstrTemp1 = _T("Program.exe");
spSolution->AddFromFile(bstrTemp1,VARIANT_FALSE,&spProject);
spIDebugger->get_Breakpoints(&spIBreakpoints);
spIDebugger->Go(VARIANT_FALSE);
}
}
}
Generalabout domain Pin
yingkou14-Sep-04 14:44
yingkou14-Sep-04 14:44 
GeneralRe: about domain Pin
Ryan Binns14-Sep-04 18:14
Ryan Binns14-Sep-04 18:14 
GeneralRe: about domain Pin
yingkou14-Sep-04 18:40
yingkou14-Sep-04 18:40 
GeneralRe: about domain Pin
Ryan Binns14-Sep-04 22:57
Ryan Binns14-Sep-04 22:57 
Generalwin32 multi-threading Pin
stevieo8414-Sep-04 14:31
stevieo8414-Sep-04 14:31 
GeneralRe: win32 multi-threading Pin
CodyDaemon14-Sep-04 15:51
CodyDaemon14-Sep-04 15:51 
GeneralRe: win32 multi-threading Pin
stevieo8414-Sep-04 16:28
stevieo8414-Sep-04 16:28 
QuestionKBDLLHOOKSTRUCT error why? Pin
zubeido14-Sep-04 13:37
zubeido14-Sep-04 13:37 
AnswerRe: KBDLLHOOKSTRUCT error why? Pin
Anonymous14-Sep-04 15:46
Anonymous14-Sep-04 15:46 
AnswerRe: KBDLLHOOKSTRUCT error why? Pin
Blake Miller15-Sep-04 4:16
Blake Miller15-Sep-04 4:16 
GeneralPInvoke Context menus Pin
Jumpin' Jeff14-Sep-04 13:19
Jumpin' Jeff14-Sep-04 13:19 
GeneralRe: PInvoke Context menus Pin
Jörgen Sigvardsson14-Sep-04 13:33
Jörgen Sigvardsson14-Sep-04 13:33 
GeneralRe: PInvoke Context menus Pin
Jumpin' Jeff14-Sep-04 15:56
Jumpin' Jeff14-Sep-04 15:56 
GeneralRe: PInvoke Context menus Pin
Jörgen Sigvardsson14-Sep-04 22:40
Jörgen Sigvardsson14-Sep-04 22:40 
GeneralRe: PInvoke Context menus Pin
Jumpin' Jeff15-Sep-04 2:28
Jumpin' Jeff15-Sep-04 2:28 
GeneralRe: PInvoke Context menus Pin
Jörgen Sigvardsson15-Sep-04 2:35
Jörgen Sigvardsson15-Sep-04 2:35 
GeneralRe: PInvoke Context menus Pin
Jumpin' Jeff15-Sep-04 4:49
Jumpin' Jeff15-Sep-04 4:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.