Modifying and running VB.net project in Visual Studio Code? - vb.net

Is it possible to modify and run existing VB Visual Studio 2010 projects in Visual Studio Code? I have some VB.NET projects that I would like to open in visual studio code and I haven't found anything online that says whether or not this is possible. Drag and drop functionality isn't necessary for me, I only care about being able to run the source code.
I'm running Ubuntu 14.04 if that makes any difference.
Thanks in advance!

You can use Visual Studio Code to edit any text file you want.

Related

Visual Studio for Mac - Can't read or write any code

I have a problem with Visual Studio for Mac. When I make a new project or I open an existent one, I can't read correctly the code or even write. The code is correctly, in others Text Editors looks fine, but in Visual don't.
Do somebody know about this error? thanks.
Update Visual Studio.
(Click 'Visual Studio Community' in the top bar -> Check For Updates)
This must have been an early bug because I updated to 7.0.1 (Build 24) and it fixed the issue for me.

how to export Visual Studio 2013 project into sourcecode

Could anyone please help and tell me how to export visual studio project into source code. My client has asked me if they can see a file with source code, so that they are able to recreate the application by using the source code only.
Could you please advise and tell me how I can export the visual studio project into source code, which will include all of the files, code and etc.
Are you sure they don't mean check it into source code control?
For example you can link your Visual Studio project up to TFS, check in your code and other developers can download and work on it in Visual Studio
https://www.visualstudio.com/products/visual-studio-team-services-vs
Just a thought

Add VB.NET to Visual Studio 2010 Professional

In the past I have only used Visual Studio 2010 Professional for C#, but now I need to work on a little bit of Visual Basic. When I go to create a project it only shows C# project templates. I am assuming when I installed Visual Studio 2010, I only installed C#.
How do I now install VB.NET support?
I tried following a MS tutorial: I went to Control Panel and selected Change/Uninstall on Visual Studio, but then it asked me to insert a CD, of which I have none since it was donwloaded.
Nevermind I figured it out. (win7) Control Panel -> Programs and Features -> Uninstall/Change on Visual Studio -> then when you hit the Add/Remove features and you get the popup asking about the cd (which is where I assumed i was stuck before) if you hit Download it takes you to the dialog where you choose additional languages to install and it worked.
I apologize for my earlier flippant comment, and offer you
http://download.cnet.com/Microsoft-Visual-Studio-2010-Professional/3000-2212_4-10618634.html
I had same problem but i did the simplest solution ,since i had my .iso(visual studio express) file i had downloaded I used my winrar to extract files ,went to VBExpress ,open the folder and click on the setup and it all worked out successfully...

vs 2008 broken snippets functionality

Is there a way to reset to the original vb.net snippets that came along with visual studio 2008?
I recently installed a purchased third party lib, that managed to break almost all the default snippets.
I can see that the snippets do physically exist in C:\Program Files\Microsoft Visual Studio 9.0\VB\Snippets\1033 but only the following sections are loaded to vs 2008:
application
office development
os
wpf
Any help would be appreciated...
Found a solution !!!
I went to tools > Code snippet Manager
and re-added the C:\Program Files\Microsoft Visual Studio 9.0\VB\Snippets\1033 folder
Everything works great now !!!
You can try to reset the IDE-settings by calling it with /resetsettings
It sounds like your SnippetIndex file is broken. There should be a file at the directory you listed named SnippetIndex.xml. This is the file that is consulted in order to build the initial list of snippets. Can you check that file and see how big it is. It should be at least 500+ lines (mine is 579).
If it's less then this is almost certainly your problem. You can fix this by repairing the Visual Studio install
Go to Control Panel -> Add Remove Programs
Select Visual Studio
Choose Repair

Visual Studio Tools for Office (VSTO 2005) newbie deployment question

I have Visual Studio setup with a VSTO word project, and when I hit run it runs fine.
But, how do I setup a word document to use my code without having Visual Studio running?
You must deploy the VSTO runtime whether by hand or with an installer. Check out this blog post for a detailed explanation.
You can do it using a Windows Installer project; starting point here. You can also use the Publish Wizard.
A more general starting point can be found in MSDN here.