|
-
May 12th, 2011, 04:40 AM
#1
Thread Starter
Junior Member
DLL + Analysing VB6 Source Code
Hi everyone,
I would like to know if a DLL exists to analyse VB6 source code. I would use this DLL to check whether a constant name is used in a VB6 project or not.
Thanks in advance.
-
May 12th, 2011, 07:31 AM
#2
Re: DLL + Analysing VB6 Source Code
Look for MZTools for VB6 ... it's got a pretty robust code analyzer.
-tg
edit - also... would a simple search on the module (since you have the source code) for the constant name tell you if it's in use or not?
-
May 12th, 2011, 07:42 AM
#3
Thread Starter
Junior Member
Re: DLL + Analysing VB6 Source Code
I have got MZTools available in my VB6 IDE but it can not tell me the names of constants declared and not used.
edit - also... would a simple search on the module (since you have the source code) for the constant name tell you if it's in use or not?
You are right but I would perform a search on a bunch of declarations of constants. With the help of a DLL I could perform the task programmatically.
-
May 12th, 2011, 07:59 AM
#4
Re: DLL + Analysing VB6 Source Code
that doesn't surprise me... it's easier to report what IS there vs what ISN'T there...
-tg
-
May 12th, 2011, 08:16 AM
#5
Re: DLL + Analysing VB6 Source Code
 Originally Posted by david.rougier
I have got MZTools available in my VB6 IDE but it can not tell me the names of constants declared and not used.
You are right but I would perform a search on a bunch of declarations of constants. With the help of a DLL I could perform the task programmatically.
I bleive it will tell what is not used. Use the review code option.
-
May 12th, 2011, 08:36 AM
#6
Re: DLL + Analysing VB6 Source Code
You can write an add-in yourself - it's quite simple: search for a keyword within text.
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|