Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
A few years ago we had a small program created for generating reports (written in C#, probably Visual Studio 2008) - it is a Windows Forms exe with a couple of dll files.
I need to make a change to the hard-coded value of VAT but we cannot find the source code for this file anywhere. Is there a way to re-load this exe + dlls into a Visual Studio project?
I have some experience with .Net Reflector, but would that be the answer to building a new solution?
Thanks for any help.
Try to google .Net decompiler, it should give you what you are searching for.
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
Just before I got a problem with excel and I recovered MS Office with online option. After that my excel works well, but my project in Visual Basic VB.NET lost excel reference(Microsoft.Office.Interop). I recovered already Visual Studio, but it still loses reference. I use Office Home & Student 2019 and Visual Studio 2019. Please, help me to fix it.
Have you tried simply adding the Microsoft.Office.Interop.Excel extension library?
Further to your comments, if that reference isn't available/visible, check this SO question: Microsoft.Office.Interop.Excel Reference Cannot be found.
Personally, out of the answers there, I'd try the NuGet option first:
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I know how to create a project templates in visual studio.
My question is about that;
How to create a Project Template like Asp.net MVC?
When you create a project with Asp.net MVC, you'll have Razor syntax stuff like intellisense, There is a directly access to add Views and Controllers and a lot of thing to help the other programmers.
On MSDN check out the documentation on:
Custom Project and Item Templates.
The IWizard interface
Custom editors
General Visual Studio.NET Extensibility
And last but not least, since you're already quoting the ASP.NET MVC project as your example, it's open source and you can see how it's done right on codeplex.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
When i open vs2010 then click on create new website , I am not able to see any templates like empty asp .net website, it shows no templates, How can I get back all templates , help me , thanks in advance ?
Taken completely from Mitch Wheat's answer on Visual Studio 2010 missing ASP.NET projects templates?
Default Project Templates in Visual Studio
Available templates may vary according to Visual Studio version, SKU,
installation options, and other customizations. If you are missing a
template that comes with your installation, run devenv.exe with the
/installvstemplates switch. For more information, see How to:
Restore Default Project Templates.
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 8 years ago.
Improve this question
I have problem with Team Foundation Server 2010 and Visual Studio.
When I'm in offline mode the project builds very quickly but when I'm in online mode with TFS my project builds very slowly. When I stop the project it waits a long time.
Any idea what might be causing the problem?
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
Hello, I want to write a plugin in VS 2010.
Where can I select the file from solution explorer, get file properties and display a dialog or form that I have created in my plugin project?
I recommend you start with Microsoft's Getting Started with Extending Visual Studio page. Also, Channel 9 has an introductory video on VS extensibility.