answersLogoWhite

0


Best Answer

The main project file has a VBPROJ extension. This is also a file with the same name as the main project file, but with an SLN extension. The SLN extension is a solution file.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What file extension is given to visual studio 2005 files?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How open .mmg files?

Given the fact that mmg file extension is not common, one needs a specific software to do the same. The mmg file extension allows modifications on Matroska video files.


How do you open a .pdb file?

Another working software is "isilo". It can be downloaded from http://www.isilo.com/download/iSiloW32.htm.There's is one more and i.e. is ereader version 3.0.4 or above.---http://en.filesupport.org/file-extension/pdb


What do extension and intentions of relations mean in dbms?

ExtensionThe extension of a given relation is the set of tuples appearing in that relation at any given instance. The extension thus varies with time. It changes as tuples are created, destroyed, and updated.


What is the definition of the word extension?

The term 'extension' is defined as to enlarge, prolong, or continue. If one was to receive an extension on a term paper, one would be given more time to complete it.


What extension is there for gift tax when the donor obtain an automatic filing extension for income taxes?

When filing an extension for income taxes related to gift taxes, you are granted an automatic extension. As long as the paperwork is filed on time, an automatic 6 month extension is given.


What m file extension?

A file with extension .m is most likely code. Matlab, Mathematica, Maple, and WinAmp scripts all use .m extension. In addition, Objective-C code is given the .m extension.


What file extension is given to a template?

What is a cookie in computer terminology?


Visual Studio Visual Basic NET?

Learning a computer language is a big undertaking and cannot be explained in only one Answers.com answer, but I can post links on where to find resources to begin programing. First off google-ing tutorials is how I learned a lot of my knowledge and another website that is very helpful is: stackoverflow.com It is a Q & A site for developers. Also, Microsoft MSDN has some VERY GOOD tutorials built right into visual studio. Just open Visual Studio 2010 and then click the "Guidance and Resources" Tab. A few helpful starter pieces of code that I had a VERY HARD time finding: To show a new form already in your project: 1. Insert the following code into a Button Click Property 2. The code: Form2.Show() 3. Replace Form2 with the name of the form you want to show To close a form: Repeat Step 1 2. The Code: Me.Close() To End a program: The Code: End Also, you should organize your code by regions using: #Region "Region Title Goes Here" All your Code #End Region This is like putting your code into groups... but it just makes it easier to deal with if you have a lot. GOOD LUCK!


What is the name given to the extension of the peritoneum holding the digestive organs in position?

the arm


I wrote a Visual Basic program a few years back but I have lost the programming code Is there any way to open my program and still have the program in Visual Studio?

- If you mean to get the code from an exe file ... well, that is illegal. - Its not illegal if you created the code in the first place ... So an answer can not be given here. If you find some way to get the source out of the exe and THEN prove that you own it then every thing should be OK.


What is extension and intension in dbms?

extension in a relation is set of tuples appearing in relation at any given instance . it varies with time .it changes tuple are created ,destroyed and update


How do you make a program in Visual studio To know the number whether its Even or Odd?

using system; { public static void main(string[] args) { int n; n=int.parse(console.ReadLine()); if(n%2==0) console.WriteLine("Even number"); else console.WriteLine("Odd number"); } }