NO

Author Topic: Micorsoft Visual C++ Toolkit 2003 Addin beta2  (Read 7030 times)

pocket_geek

  • Guest
Micorsoft Visual C++ Toolkit 2003 Addin beta2
« on: March 28, 2005, 05:48:39 AM »
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

  • Guest
Micorsoft Visual C++ Toolkit 2003 Addin beta2
« Reply #1 on: July 01, 2005, 01:12:48 AM »
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

  • Guest
Micorsoft Visual C++ Toolkit 2003 Addin beta2
« Reply #2 on: November 03, 2005, 12:56:00 PM »
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

  • Guest
Re: Micorsoft Visual C++ Toolkit 2003 Addin beta2
« Reply #3 on: June 17, 2009, 11:56:02 AM »
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.

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

John