如何将错误处理程序放入所有 vb 函数中
我们有多个 vb 项目。我们希望将错误处理程序放入所有函数中,并且错误处理程序应写入文件。是否有任何可用的工具 - 我们已经查看了codesmart 和 vbwatch。
We have multiple vb projects.We want to put error handlers in all functions, and error handler should write to a file.Are there any tools available - we have looked at codesmart and vbwatch.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
MZ-Tools,免费且易于安装,经常推荐:
支持 Microsoft 开发工具
支持的编程语言
MZ-Tools, which is free and very easy to install, is often recommended:
Supported Microsoft Development Tools
Supported Programming Languages
这是一个免费软件程序:
http://wareseeker.com/Software- Development/automatic-error-handling-pro-1.1.0.zip/238557
这里有一些你自己做的源代码:
http://www.nigelrivett.net/VB/VBAddErrorHandling.html
Here's a freeware program:
http://wareseeker.com/Software-Development/automatic-error-handling-pro-1.1.0.zip/238557
and here's some source code for doing it yourself:
http://www.nigelrivett.net/VB/VBAddErrorHandling.html
确保在将其放入所有程序之前测试性能。 我们的错误处理解决方案 (VBRig) 显着影响了 CAD/CAM 应用程序中的数学计算和屏幕重绘。 它写得不错,但是加上数百次的日志记录加起来。
我们转而在所有事件例程中使用错误处理,并选择了其他区域。 虽然从设计的角度来看并不理想,但它使性能恢复到了所需的水平。
Make sure you test performance before putting it in all procedures. Our Error Handler solution (VBRig) noticeably impacted math calculation and screen redraws in our CAD/CAM application. It wasn't badly written but the addition of doing the logging hundreds of time added up.
We switched to use error handling in all event routines and selected other area. While not ideal from a design standpoint it brought performance back up to what it needed to be.