How to run Mono migration analyzer in windows XP? - mono

I have installed MONO2.10 in my Windows XP Desktop.Now, i have installed Mono Analyzer on my PC.While i am double clicking the MoMA.exe it raisig following Exception.Please Guide me to get out of this problem.

If you are receiving this error message, you need to install the .NET framework from: http://go.microsoft.com/fwlink/?LinkId=17153

Related

Open XML SDK 2.5 can't install because it is not already installed?

i'm having some trouble installing OpenXML SDK for Microsoft office. I have downloaded the .msi from the MSDN website, run it but before any installation wizard shows, i get this window popping up:
It seems to want to install itself before it will install itself.. I have OpenXML on my other PC and this installed fine with no issues and have used the tool for a project.
I have .NET 4.6.2 installed on my machine.
Has anyone seen this before?
There are 2 separate installers on the OpenXml 2.5 MSDN page - the SDK and the tools. From the error message you are seeing it looks like you are trying to install the Tools but in order to do so you need the SDK installed first.

Project not working properly after publishing. VB.NET

I have published a mini project in VB.NET 2010, I'm currently using windows 7. The problem is after i transfer it to windows xp(sp2) and install it some of the buttons are not working. It is working properly when I install it to my laptop with windows 7.
Did you try installing .NET Framework 4 on Windows XP? Also you can try to install older versions like 3.5. After installing your program should work.
Download .NET Framework 4 from Microsoft

msbuild this application couldn't be started

i've got computer with Windows 8 and fresh installation of Visual Studio 13 Express.
I'm working on project which runs on .NET 4.0 Client profile.
Problem is when i try to complile, this error message is shown:
Solutions:
social.msdn : This one says:
try to restart your VS and rebuild - not working
check MSbuild from promt - not working (Message is shown twice)
I also checked project configuration vsproj and tried to make sample project
Reinstall framework:
i tried ot reinstall almost everything, framework, sdk.
when i've installed .NET Framerork v4.5.2 my VS was unnable to start and anoter .NET apps complied before had missing library
I haven't tried to reinstall VS, yet. (But i dont think if it helps)
Edit: Temporary solution shoud be Visual Studio Express 2012, but it not solves problem.
Reinstalaion of VS didn't help.

Project stopped running at Windows XP (32-bit)

I'm developing an application for a friend. I use Visual Basic 2012 (64-bit) and Windows 7 (64-bit).
I took a demo down to him to try it out to see what more features he wanted, and it was running ok.
When I got back the next week after implementing the new features, it refused to run on any of his Windows XP (32-bit) machines.
Error code:
MyApplicationName.exe is not a valid Win32 application
I tried it at a computer running Windows 7 (32-bit) which still worked all fine.
So, any ideas why it suddenly stopped running?
VS2012 will not generate an EXE that can run on XP when you use the default project settings. What matters is the .NET Framework version you target. If that's version 4.5 then there are two problems.
First one is that .NET 4.5 is not available for XP. Second one is important for this exception message, the compiler will mark the version of Windows that's required to run the EXE in the file header. That version number has always been set to 4.00. Until VS2012, it is now set to 6.00, the version number of Vista. XP will instantly reject your EXE with the "is not a valid Win32 application" message, even before it will tell you that it doesn't have .NET 4.5 installed.
Fix your problem by targeting .NET 4.0 or earlier. Project + Properties, Application tab, Target framework setting.
Try using corflags with /32bit+ and see if it works.
More information:
http://msdn.microsoft.com/en-us/library/ms164699.aspx

Installing simplest plugin on German Windows XP

I'm trying to figure out why the simplest firebreath plugin wont install on a German Windows XP SP3. I'm running Windows XP as a virtual machine.
The event viewer in Windows XP tells me something about the Windows Installer aborting but not why. I'm logged in as the administrator.
The installer works on Windows 7.
For development I use Windows 7, Visual Studio 2010 and some one months old firebreath trunk.
Is this is known problem? What are the typical steps I could use to track down the issue?
Regards,
Christian
If you get an error saying module can't be found it means that you are missing a .dll file needed to make the plugin work. The most common if it works on most computers (or many) but not that one is that your .dll was compiled with a dynamic runtime, in which case you'll have to install the common runtime for whatever version of visual studio you compiled it with.
For example, the runtime distributable for vs2008 is at http://www.microsoft.com/en-us/download/details.aspx?id=29
Dependency Walker might help you to find out which dll is missing.