vote up 4 vote down star
1

Within Visual Studio 2008, what would be the easiest way to prevent usage of certain functions from being allowed? Specifically, I'm trying to prevent other developers from using "old school" VB6-style commands such as:

  • Len
  • LCase
  • UCase
  • Instr
  • InstrRev
  • Trim
  • Right
  • Left
  • Mid

etc., etc., etc.... The list goes on and on.

I can usually catch these during manual code review, but sometimes things will slip by. Also, it doesn't do anything about old code that doesn't typically get seen.

I know education is probably the best tool, in the long run, but it would be nice to have something to supplement/enforce that.

flag

No offence, but why? – MarkJ Mar 5 at 15:00
@MarkJ, mainly so everyone can be in the habit of switching from stuff likely to be depreciated to the newer VB.NET equivalent. This will likely give us less issues later down the road for upgrades or for transitioning others to maintain the code. – Kevin Fairchild Mar 5 at 16:22

6 Answers

vote up 6 vote down check

I don't know if you can set a compiler flag for this kind of thing, but you can define custom rules for something like fxcop to check for. Here's some documentation on writing custom rules.

link|flag
vote up 1 vote down

Why? Seems like a waste of time to me.

link|flag
vote up 2 vote down

Hookup FxCop to your build and have it flag those usages. You can write your own rules to enforce your coding standards in an automated fashion.

link|flag
vote up 0 vote down

Perhaps another option is to add a pre-build event to VS that deletes references to Microsoft.VisualBasic.Compatibility. Then any such usage would be utterly hosed :-)

link|flag
vote up 2 vote down

I think this is a management problem and usually technological solutions will fail.

Provide coding standards to developer, enforce it in code reviews. If you have someone in charge of reviewing patches from developers, make sure they reject patches using functions you don't want to see.

link|flag
This is what we do now, but without a "technological solution", it's hard to always catch it during manual reviews. And it doesn't address the existing code that isn't making it to review. – Kevin Fairchild Oct 2 '08 at 17:22
vote up 1 vote down

You could use a tool similar to FXCop to review code and general warnings or errors in a nant script.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.