How to change language of visual web developer 2010 express from german to english - visual-web-developer

Because all error messages are in German and Google doesn't help me to find solutions for German error messages I want to change the language of visual web developer to English.
This shouldn't be too hard, but I just cant find a way to configure the language. Google didn't help me either.

You need to change the culture of your application:
http://msdn.microsoft.com/en-us/library/b28bx3bh(v=VS.100).aspx

you got to reinstall after uninstall the program at the control panel.
when reinstall with web flatform installer, there is an option to choose a language you want.
choose the English, then start install.

Related

Develop application on top of Visual Studio Code

I would like to know if Visual Studio Code provides an API that help you develop a desktop application on top of it platform. The main idea is to do like in Eclipe RCP or IntelliJ Plateform.
I want to use the plugin system available in VS Code instead of developing my own plugin system.
Any help, any link or any information will be helpful.
Thanks in advance.
There are at least two ongoing projects that you can take inspiration from in this field:
https://theia-ide.org/ by Eclipse, which is an extensible platform to develop multi-language Cloud & Desktop IDEs. In the screenshots, you'll clearly distinguish the part coming from VSCode (like the Activity Bar) and custom ones, like the flexible layout system.
https://v2.onivim.io/ based on Vim but that should also leverage the VSCode plugins ecosystem according to the roadmap.

Visual Studio Code Plugins (Format / Spell Check)

Using the new Visual Studio Code editor vs 1. This is not the full Visual Studio IDE but their atom.io based code editor. I would like to install plugins specifically for spell check and formatting my code. How can I do this?
I've followed instructions here: Is there a command for formatting HTML in the Atom editor?
but realized that I do not have a install plugin command.
It's been a few months since the question was asked (and answered), but thankfully, things have changed!
VSCode now support extensions!
Here's a relevant excerpt from the above blog post:
Extension Marketplace/Gallery
To complement the extensibility mechanism, we have also launched an in product gallery and web based extension marketplace. These allow you to discover and install extensions. To open this up in VSCode, simply hit F1 and select Extensions: Install Extensions.
Alternatively, you can browse the Extension Marketplace at https://marketplace.visualstudio.com/#VSCode.
I gave the marketplace a quick search and easily found multiple extensions for spelling and source formatting, but I'll forego making any specific recommendations since everyone's requirements are different.
For anyone looking to write their own extensions for VSCode, take a look at the documentation for extending VSCode, as it has a lot of the information you'd need to start writing your own extensions.
Lastly, thanks to Daniel for his comment. It helped me find the information I needed, but to save future visitors some time, I thought it was worth sharing my findings.
Plugin support is not currently enabled in the VSCode editor. The development team were not happy with the plugin API, so they have disabled them until further work can be made on this.
For more information, see this post: https://stackoverflow.com/a/30006220/495328
Nowadays you can use Prettier and Code Spell Checker for the purposes.
Here are some use case for spell check:
Load a CSS, JavaScript, Text, etc. file. Words not in the dictionary files will have a squiggly underline below the text.
To see the list of suggestions just click on the 💡 (lightbulb) in the left hand margin. You have the option to add your own words to the workspace dictionary.

As-you-type spell-checking for VS2012

After Google I couldn't find As-you-type spell-checking for VS2012.
I have used one for VS210. I don't remember name of it which was quite useful to avoid spell mistakes in Aspx/razor Views
Does anyone know any free plugin,extension for VS2012?
Here's a spell checker you might try for VS 2012. You could download it from the Visual Studio Extensions Gallery.

Filemaker plugin development in c# IDE for window

Is there any IDE which allow to produce .fmx file extension, Actually i am developing filemaker plugin with .fmx extension so that i can simply put it in "Extension" folder in where tha all plugin is resided used by filemaker pro application software and start using, when i tried to search extension .fmx in visual basic 2008 then it didn't show any result , still i am searching over internet, but i am not able to find. please sugest me some alternative, or some thing related
Thanks,
Nishant
FileMaker plug-ins are regular Win32 DLLs. The .fmx extension is just a custom extension. I'm not sure you can produce such a DLL with Visual Basic or C# (but I'm not an expert in these); you might have to use Visual C++.
Check out http://www.dotnet2fm.com/ They provide a tool to write filemaker plugin in c#

Adding licensing support for Eclipse PDE

I have built an eclipse plugin which basically makes writing Java GUI applications as easy as using a 4GL programming language (Oracle Forms, Visual Basic etc). The plugin generates no GUI code but rather metadata which is parsed at runtime. I am building in a trial licence within the plugin but which will stop the plugin from working when the trial licence has run out. I am unsure of the best way to implement this. MAybe to stop one of the editors opening. I have managed to integrate my licensing software (Protection! from JProductivity), which will get called when the user tries to open on of my editors. But how can I stop an editor from opening?
Any help on this subject would be much appreciated!
Editor and its type alway is contributed by extension. So there is no good way to remove this extension besides early startup your bundle. But I don't think it's a good practice.
So the better way is checking your license in EditorPart.init(IEditorSite, IEditorInput) or createPartControl, throw the exception in init call or not create any widget in createPartControl if the license is invalid or expired.