When I tried to select designer view in VS 2010 I get this error:
There is no editor available for \'c:\\user\\teadrinkinggeek\\documents\\visual
Well I faced the same issue. I right clicked on edmx file and opened it with Entity Data model designer. Hope this helps.
To solve that issue just check your reference and fix those that has "!".
This happened to me also: related/additional notes related to this fix.
Solution Explorer
--> Expand References
--> Right click on the item with "Yellow Triange w/ "!" point"
--> select "Remove"
Open the "Build" Menu at the top
--> select: Rebuild "filename"
Double clicking on the from name in Solution Explorer would then open the from normally for me.
This problem is somewhat difficult to diagnose. The easiest thing is probably to re-install your copy of Visual Studio. Most likely, something got corrupted during the installation, or you failed to install a crucial component required for opening ASPX files.
Aside from that, there is one trick that I've seen work before. I suppose it's worth a try before you go through the trouble of re-installing. Here are the steps:
Execute the following command, where "devenv
" is the name of the executable you use to start
the Visual Studio IDE:
devenv /resetskippkgs
Sometimes it happens because one of the references of the project are making problems.
Solution:
Build your solution to Identify the reference that is making problems, remove the reference and add it again, after rebuilding your project everything will work fine.
I tried the devenv /resetskippkgs
command with no results. However, after it failed, I played around with the form properties. When I clicked on frmFormName.vb in the Solution Explorer, the properties window showed something different for "build action" than did my other form. I changed this property to "compile" to match my other form. Now, everything is working fine. I hope this helps.
I've also encountered the same problem in Visual Studio 2008. But don't worry folks it's damn simple to solve.
Just follow the simple steps stated as follows:
♦Enjoy coding my pals♦