drizzt
drizzt

Reputation: 2896

Profiling a COM application?

I have a big application written in Visual Basic 6 and I need to profile it. Is there something like ANTS Profiler but for COM applications?

Upvotes: 3

Views: 1832

Answers (5)

Mike Dunlavey
Mike Dunlavey

Reputation: 40699

Better late than never? VB6 has a "pause" button, right? Not only is it free, and requires no installation, but in my opinion it is by far the best tool for locating performance problems.

Upvotes: 1

user44681
user44681

Reputation:

GlowCode is another good tool. I've used it successfully with VB6. The nice part is that you don't need to instrument or recompile your code. All you need is the symbols (.pdb file) that VB6 can already create for you.

Upvotes: 1

JoshBerke
JoshBerke

Reputation: 67128

I used to use VBWatch. I had a good experience with it and it helped me nail down and resolve some pesky performance problems

Upvotes: 2

Dror Helper
Dror Helper

Reputation: 30819

Have a look at VTune from Intel it has native profiling as well. If you're having problems using VTune try AQTime profiler from AutomatedQA instead.

Upvotes: 1

Otávio Décio
Otávio Décio

Reputation: 74300

AutomatedQA

That's your best bet.

Upvotes: 0

Related Questions