Micorsoft Visual C++ Toolkit 2003 Addin beta2

Started by pocket_geek, March 28, 2005, 05:48:39 AM

Previous topic - Next topic

pocket_geek

Hey all,
    Here's beta2 of my Microsoft Toolkit addin.  This version has some more build options, allows you to specify global defaults and will launch your compiled exe in windbg.  

You can adjust global defaults by going to Tools --> Options --> Select this addin and then click options.

Requirments:

Micorsoft Visual C++ Toolkit 2003
http://www.microsoft.com/downloads/details.aspx?FamilyId=272BE09D-40BB-49FD-9CB0-4BFA122FA91B&displaylang=en

Platform SDK
http://www.microsoft.com/msdownload/platformsdk/sdkupdate/

.NET SDK, This has some *.libs the Toolkit doesn't have
http://www.microsoft.com/downloads/details.aspx?familyid=9b3a2ca6-3647-4070-9f41-a333c6b9181d&displaylang=en

WinDbg, Free Microsoft Debugger
http://www.microsoft.com/whdc/devtools/debugging/installx86.mspx

Let me know if you have any problems.

C_Bastian

Hi pocket_geek,

can you tell me, witch part of the sdks I need for your Add-In. Or do I need all the 400 MB?
:shock:

Thank you,

Sebastian

cane

Hi, I've used your addin and it works fine, also with Visual C++ Express Edition Beta 2 ( http://lab.msdn.microsoft.com/express/visualc/ ) if properly configured.

But there's a bug that affects the file names of the sources to compile in the batch file if the sources don't live in the same dir of the project (ppj) file.

You'll find the patch attached.

JohnF

pocket_geek,

Don't know if I'm the only one to see this, but, just after loading a project - then click MsCnf the wrong configuration is in the dialog. I found that if one does 'Update all dependances' all is ok.

Adding this to your code works.


case ID_MSCONF:
AddIn_SendIDECommand(g_hwndMain, AIC_PROJ_MAKEALLPREQS);
DialogBox(g_hmod, MAKEINTRESOURCE(DLG_CONF), g_hwndMain, (DLGPROC)ConfFunc);
return;


John