tags:

views:

44

answers:

4

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

+4  A: 

This is a visual basic project file for vb6. Visual Studio should be able to open this file but you may need VB6 IDE.

Joel Etherton
A: 

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.

Alex Essilfie
A: 

You need the original VB6 IDE.

Later versions of Visual Studio 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.

MarkJ
A: 

You need the VB 6 IDE Microsoft Visual studio

indago