Tag: error
Error – The Windows Phone Emulator wasn’t able to create the virtual machine “Windows Phone 8 Emulator”
This was one of the errors that I received when trying to install the Windows Phone 8 SDK in my Windows 8.1 system and trying to create a new project and run it. The error message was “The Windows Phone Emulator wasn’t able to create the virtual machine, something happened while creating a switch”… The Windows Phone 8 emulator has the prerequisite that the system…
CS1502: The best overloaded method match for System.Web.WebPages.WebPageExecutingBase.WriteSystem.Web.WebPages.HelperResult)’ has some invalid arguments Error in ASP.NET MVC
If you are getting the below error message in ASP.NET MVC Web Application, you can resolve it by looking at the methods that renders the partial view in the screen. “Server Error in ‘/’ Application. ——————————————————————————– Compilation Error Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code…
Could not load file or assembly … An attempt was made to load a program with an incorrect format (System.BadImageFormatException)
There are times when you might get the following error when running the application from Visual Studio or opening your application page in the browser. Could not load file or assembly … An attempt was made to load a program with an incorrect format (System.BadImageFormatException) I received this error recently when trying to deploy the application in the IIS and accessing the page from the…
WP8 Error – Cannot clear the icon while in a list Parameter name: value
When using the ApplicationBar in the Windows Phone Application and dynamically setting the IconButtons from code behind , I encounter this error . Cannot clear the icon while in a list Parameter name: value The cause of the error and the fix is pretty straight forward . I was setting the IconUri of the ApplicationBarIcon button programmatically and the value of the IconUri was not…
Exception from HRESULT: 0x800455BC Error when using SpeechRecognizer in WP8
When using the SpeechRecognizerUI in your windows phone 8 app, there are times when you receive the “Exception from HRESULT: 0x800455BC Error”. The outcome of this error is “When you call the SpeechRecognizerUI’s RecognizeWithUIAsync() method , it displays a dialog for few seconds and then disappears immediately. When you debug the app, you will find the error “Exception from HRESULT: 0x800455BC ” with the stack…
UnauthorizedAccessException or unhandled Exception when accessing Geolocator in Windows Phone
When using the Geolocator GetGeopositionAsync () method, it is necessary to handle the necessary exceptions that may arise based on various scenarios. One such scenario is the Location is disabled by the use in the Phone Settings. In this case, when the Geolocator’s GetGeopositionAsync() method is called, you will receive the UnauthorizedAccessException or unhandled Exception as shown below. “An exception of type ‘System.Exception’ occurred in…
No parameterless constructor defined for this object error in ASP.NET MVC Project
If you are getting an error similar to the one shown below in your ASP.NET MVC Project , you could verify your Model. No parameterless constructor defined for this object error in ASP.NET MVC Project Server Error in ‘/’ Application. No parameterless constructor defined for this object. An unhandled exception occurred during the execution of the current web request. Please review the stack trace for…