473,473 Members | 2,147 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Code validation tool for VB.NET?

Hello All,

Hope all is having a cool holiday season...

I am looking for a code validation tool for VB.NET. It should be able to
point out variables that are not in use as well as ways to make existing
code faster among other things.... Perhaps it can even detect memory
leakage....

Does anyone know of a tool like this for the .Net platform? For a while, I
have been searching the net without success....

Thanks in advance,
Chris H
Nov 20 '05 #1
5 1401
"Chris H" <ke**********@yahoo.com> wrote in message
news:Oz**************@TK2MSFTNGP12.phx.gbl...
Hello All,

Hope all is having a cool holiday season...

I am looking for a code validation tool for VB.NET. It should be able to
point out variables that are not in use as well as ways to make existing
code faster among other things.... Perhaps it can even detect memory
leakage....

Does anyone know of a tool like this for the .Net platform? For a while, I
have been searching the net without success....

Thanks in advance,
Chris H


I think the garbage collector was designed to cut out the problem of memory
leakage.
Nov 20 '05 #2
You might want to look at FXCop, which is pretty nice, I don't know how well
it works with mem leaks, but it does do some nice features for code
improvement.

-CJ
"Chris H" <ke**********@yahoo.com> wrote in message
news:Oz**************@TK2MSFTNGP12.phx.gbl...
Hello All,

Hope all is having a cool holiday season...

I am looking for a code validation tool for VB.NET. It should be able to
point out variables that are not in use as well as ways to make existing
code faster among other things.... Perhaps it can even detect memory
leakage....

Does anyone know of a tool like this for the .Net platform? For a while, I
have been searching the net without success....

Thanks in advance,
Chris H

Nov 20 '05 #3
DevPartner Studio has code checking in VB.NET. It has quite a few other
features, as well.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

************************************************** ********************
Think Outside the Box!
************************************************** ********************
"Chris H" <ke**********@yahoo.com> wrote in message
news:Oz**************@TK2MSFTNGP12.phx.gbl...
Hello All,

Hope all is having a cool holiday season...

I am looking for a code validation tool for VB.NET. It should be able to
point out variables that are not in use as well as ways to make existing
code faster among other things.... Perhaps it can even detect memory
leakage....

Does anyone know of a tool like this for the .Net platform? For a while, I
have been searching the net without success....

Thanks in advance,
Chris H

Nov 20 '05 #4
Thanks a lot guys...

I also found this one Project Analyzer v7.0 from this page
http://www.aivosto.com/project/project.html
It does many things as well as make graphs, charts and help files...

Now I have a few options to play with...

Thanks again,
Chris H
"Cowboy (Gregory A. Beamer)" <No************@comcast.netNoSpamM> wrote in
message news:Oe**************@TK2MSFTNGP09.phx.gbl...
DevPartner Studio has code checking in VB.NET. It has quite a few other
features, as well.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

************************************************** ********************
Think Outside the Box!
************************************************** ********************
"Chris H" <ke**********@yahoo.com> wrote in message
news:Oz**************@TK2MSFTNGP12.phx.gbl...
Hello All,

Hope all is having a cool holiday season...

I am looking for a code validation tool for VB.NET. It should be able to
point out variables that are not in use as well as ways to make existing
code faster among other things.... Perhaps it can even detect memory
leakage....

Does anyone know of a tool like this for the .Net platform? For a while, I have been searching the net without success....

Thanks in advance,
Chris H


Nov 20 '05 #5
Just using this tool for a half day I know I got my moneys worth... I only
paid for the Pro version and it included all the add-ins i need. It is
amazingly flexible. I am surprised on that it can report about simple
savings if I use VbNullString vs "" and for example...if LenB("ffff") = 0 is
faster than if "ffff" = ""

It can note unessessary scoping issues where for example a
procedure/variable don't have to be declared Public....

It is smart enough to tell me of possible tab problems on my forms as well
things like forms that is able to resize but does not have resize code...

The latest version works for .Net 2002 and 2003 and If you are using VB3-6,
it can help you to prepare for .Net.

There is so much more to to this program... You can't go wrong.

Regards,
Chris H

"CJ Taylor" <no****@blowgoats.com> wrote in message
news:vv************@corp.supernews.com...
Let me know how you like it.
"Chris H" <ke**********@yahoo.com> wrote in message
news:ud**************@TK2MSFTNGP12.phx.gbl...
Thanks a lot guys...

I also found this one Project Analyzer v7.0 from this page
http://www.aivosto.com/project/project.html
It does many things as well as make graphs, charts and help files...

Now I have a few options to play with...

Thanks again,
Chris H
"Cowboy (Gregory A. Beamer)" <No************@comcast.netNoSpamM> wrote in
message news:Oe**************@TK2MSFTNGP09.phx.gbl...
DevPartner Studio has code checking in VB.NET. It has quite a few other features, as well.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

************************************************** ********************
Think Outside the Box!
************************************************** ********************
"Chris H" <ke**********@yahoo.com> wrote in message
news:Oz**************@TK2MSFTNGP12.phx.gbl...
> Hello All,
>
> Hope all is having a cool holiday season...
>
> I am looking for a code validation tool for VB.NET. It should be
able to > point out variables that are not in use as well as ways to make existing > code faster among other things.... Perhaps it can even detect memory
> leakage....
>
> Does anyone know of a tool like this for the .Net platform? For a

while,
I
> have been searching the net without success....
>
> Thanks in advance,
> Chris H
>
>



Nov 20 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Rasmus Marcussen | last post by:
hello i friend of mine has made this page: http://home1.stofanet.dk/samtaleterapi/home.htm it validates like this:...
19
by: Vinod | last post by:
Hi, I have got a peculiar requirement. I want to distinquish between the color codes. I have got two text fields and i will enter the color codes there. The first text field will have ...
4
by: Michelle A. | last post by:
I have a form that takes in a credit card number, just a series of numbers 1234123412341234. When they get to the "Review" page and display all the information a user has entered, I would like the...
4
by: Alphonse Giambrone | last post by:
I have a simple login page that has two text boxes, two requiredfieldvalidators, a couple of labels and a button. It has been reduced down to almost nothing to troubleshoot the below problem. ...
2
by: GD | last post by:
Hi, There are serveral validation controls in our intranet application. The controls work fine on all of our local machines that have Windows XP professional operating systems on them. After...
8
by: Ronald S. Cook | last post by:
On a new project, my management thought it would be a good idea to utilize a 3rd party tool to generate the database, and middle-tier classes. We chose DeKlarit and I went to work. While...
26
by: webrod | last post by:
Hi, I have some php pages with a lot of HTML code. I am looking for a HTML validator tool (like TIDY). TIDY is not good enough with PHP tags (it removes a lot of php code). Do you have any...
2
by: steadyspirit | last post by:
I'm now using STG XML validation tool to validate my XML files through uploading. But, STG can not include local DTD files. Also, testing XML files on Firefox and IE always lead to inconsistent...
3
by: Water Cooler v2 | last post by:
Sorry for asking this beginner question. I've written DTDs so far and read about XML Schemas. I understand that they are a replacement of the DTD fundamentally, and therefore allow for the...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.