分析 COM 应用程序?
我有一个用 Visual Basic 6 编写的大型应用程序,我需要对其进行分析。 是否有类似 ANTS Profiler 但适用于 COM 应用程序?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
我曾经使用VBWatch。 我对此有很好的体验,它帮助我确定并解决了一些烦人的性能问题
I used to use VBWatch. I had a good experience with it and it helped me nail down and resolve some pesky performance problems
看看 Intel 的 VTune也有本机分析。
如果您在使用 VTune 时遇到问题,请尝试使用 AutomatedQA 中的 AQTime 分析器。
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.
GlowCode 是另一个不错的工具。 我已经在 VB6 中成功使用了它。 好处是您不需要检测或重新编译代码。 您所需要的只是 VB6 已经为您创建的符号(.pdb 文件)。
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.
迟到总比不到好? VB6有一个“暂停”按钮,对吧? 它不仅是免费的,并且不需要安装,而且在我看来它是 迄今为止定位性能问题的最佳工具。
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.
AutomatedQA
这是您最好的选择。
AutomatedQA
That's your best bet.