Click here to Skip to main content
Licence 
First Posted 16 Sep 2002
Views 90,798
Bookmarked 50 times

Tips for Visual C++ Developers

By | 16 Sep 2002 | Article
Series of tips for Visual C++ Developers

Introduction

These are a collection of tips that I found really useful for VC++ developers. This collection of tips uses the explorer shell to execute batch commands. To use these tips, you only need to merge the .reg file (using Microsoft Explorer), then the new command will be available for you to use.

Register/Unregister

The first tips helps to register/unregister ActiveX/COM component on your computer. Someone else posted a similar article a while ago, but now at least you can download it here. This tip can be used when you right click on a DLL file to register or unregister your component. The section for dependency walker (Depends.exe) is not really necessary since Depends will automatically add these to your registry.

REGEDIT4

[HKEY_CLASSES_ROOT\dllfile\shell]

[HKEY_CLASSES_ROOT\dllfile\shell\RegSvr32]

[HKEY_CLASSES_ROOT\dllfile\shell\RegSvr32\Command]
@="Regsvr32.exe %1"

[HKEY_CLASSES_ROOT\dllfile\shell\UnRegSvr32]

[HKEY_CLASSES_ROOT\dllfile\shell\UnRegSvr32\Command]
@="Regsvr32.exe /u %1"

[HKEY_CLASSES_ROOT\dllfile\shell\View Dependencies]

[HKEY_CLASSES_ROOT\dllfile\shell\View Dependencies\command]
@="DEPENDS.EXE /dde"

[HKEY_CLASSES_ROOT\dllfile\shell\View Dependencies\ddeexec]
@="[open(\"%1\")]"

Delete Temporary files

This next tip allows you to delete most of the temporary files created with VC++. You can add other files in this list too. Class Wizard file (.clw) was not included in this list since it can useful for most of us. To use this tips, you will have to right click on a "folder" this time. It will delete all VC++ temporary files including sub directories.

REGEDIT4

[HKEY_CLASSES_ROOT\Folder\shell\Delete Temp VC++ files]

[HKEY_CLASSES_ROOT\Folder\shell\Delete Temp VC++ files\command]
@="\"cmd.exe\" \"/c del /s *.obj,*.res;*.pch;*.pdb;*.tlb;*.idb;*.ilk;
    *.opt;*ncb;*.sbr;*.sup;*.bsc\""

Rebuild from Explorer

This tip allows you to build your project from Explorer. This is really cool if you don't have too many configurations. Just right click a DSP or DSW file to do it; presto! This tip was first inspired by a joke, but now at least we all can laugh! :-)

REGEDIT4

[HKEY_CLASSES_ROOT\dspfile\shell\Rebuild All]

[HKEY_CLASSES_ROOT\dspfile\shell\Rebuild All\command]
@="\"Cmd.exe\" \"/C Start MSDev %1 /REBUILD /MAKE ALL\""

[HKEY_CLASSES_ROOT\dswfile\shell\Rebuild All]

[HKEY_CLASSES_ROOT\dswfile\shell\Rebuild All\command]
@="\"Cmd.exe\" \"/C Start MSDev %1 /REBUILD /MAKE ALL\""

Conclusion

I hope you enjoyed these tips. My favorite is "Delete Temp VC++ files", which one is yours?

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Ernest Laurentin

Software Developer (Senior)

United States United States

Member

Ernest is a multi-discipline software engineer.
Skilled at software design and development for all Windows platforms (starting Windows 3.11),
Windows CE and cross-platform UI development.
-
MCSD (C#, .NET)
Interests: User Interface, GDI/GDI+, Scripting, Windows CE .NET.
Programming Skills: C/C++, C#, Java, VB and ASP.NET.
 
I hope you will enjoy my contributions.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralVery good Pinmembersajeeshmohanp19:27 1 Mar '11  
GeneralRe: Very good PinmemberErnest Laurentin13:21 2 Mar '11  
GeneralRegister/unregister for OCXs PinmemberAmmar18:38 23 Sep '02  
GeneralRe: Register/unregister for OCXs PinmemberErnest Laurentin17:34 24 Sep '02  
GeneralRe: Register/unregister for OCXs PinmemberAmmar19:10 24 Sep '02  
QuestionVS.NET version? PinsussAnonymous6:48 23 Sep '02  
AnswerRe: VS.NET version? PinmemberGary Wheeler1:34 24 Sep '02  
The approach and syntax are similar. Look up "devenv" in the online help, and make the appropriate substitutions.
 

"Think of it as evolution in action." - 'Oath of Fealty' by Larry Niven and Jerry Pournelle
GeneralNice :-) PineditorNishant S14:58 20 Sep '02  
GeneralRe: Nice :-) PinmemberErnest Laurentin19:40 20 Sep '02  
GeneralDirectory cleaner PinmemberErnest Laurentin4:44 18 Sep '02  
GeneralVery useful PinmemberMichael P Butler22:33 17 Sep '02  
GeneralRe: Very useful PinmemberErnest Laurentin4:33 18 Sep '02  
GeneralFastest rated article PinmemberErnest Laurentin6:40 17 Sep '02  
GeneralRe: Fastest rated article PinmemberNemanja Trifunovic7:09 17 Sep '02  
GeneralRe: Fastest rated article PinmemberErnest Laurentin7:28 17 Sep '02  
GeneralRe: Fastest rated article PinmemberBrigg Thorp7:37 17 Sep '02  
GeneralRe: Fastest rated article PinmemberErnest Laurentin7:54 17 Sep '02  

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

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120604.1 | Last Updated 17 Sep 2002
Article Copyright 2002 by Ernest Laurentin
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid