Development Environment For VBP FIles

放肆的年华 提交于 2019-12-17 17:16:59

问题


I come from a C# background but we have an app that is written a long time ago and is a vbp project file

What development enviroment will open that file - I know cls and frm files are class and form files but have never used vbp projects


回答1:


This is a Visual Basic project file for vb6. Visual Studio should be able to open this file but you will need the VB6 IDE.

Update: As of Visual Studio 2010, VB6 projects are no longer supported. VB6 is still supported by Microsoft, but you will need the specific IDE for it to perform project updates. As of 9 February 2018, this can be found on the VB6 support site.




回答2:


You need the original VB6 IDE.

Versions of Visual Studio from 2003 - 2010 will attempt to migrate the VB6 to VB.Net, but this usually introduces significant errors which are difficult to fix.

  • If you have an MSDN subscription, you can download Visual Basic 6 free.
  • Otherwise try somewhere like eBay, although VB6 is often surprisingly expensive.

Once you have obtained the VB6 IDE, look at the VB6 IDE tools-and-tricks question for some good tips and free add-ins for improving the development experience.




回答3:


Visual Basic 6 creates projects which have the extension vbp. I think it stands for Visual Basic Project (obviously). As Joel suggested in his answer, you can use the VB6 IDE to open the file.

Since you stated that you have a C# background, I take the liberty to assume that you're using Visual Studio. If that's the case, you can open the project with visual studio and it will be automatically upgraded for you.
You must note, however, that the project will be 'upgraded' to VB.NET.

If the project was large and fairly complicated, you'll have to be prepared for quite some time correcting errors. VB6 and VB.NET are quite different you know.

Plus, unless you fix all the errors in the upgraded project, you can't convert the code to C# or any other .NET language.




回答4:


You need the VB 6 IDE Microsoft Visual studio



来源:https://stackoverflow.com/questions/3617486/development-environment-for-vbp-files

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!