It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
hello i have created one windows application in c# .net and its working fine in windows xp, but when i try to install the setup in windows 7 or vista,the setup never runs.. should i have to write some code for it...?
please help
Assuming your installer is an MSI, turn logging on to find out why.
msiexec NameOfYour.msi /l*v log.txt
Make sure you installed the correct version of .net Framework on your box.
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have built an asp.net website and a C# desktop application. My client requires me to embed the C# app into a the website. I am aware that, this is only possible with the windows control library.
I gave it a try on that! But, that too didnt work out. It didnt work out on IE browser too.
Could anyone help me out on this?
1 You can register such as ActiveX control in .Net, and call this component from Web Application.
Link (RegSrv32) : http://msdn.microsoft.com/en-us/library/ms859484.aspx
2 You can convert to Sylverlight Application
3 You can also just call Process, in order to access features
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
How can I create either .msi file or setup file from the application I have created in VC# 2010. Please help me.
In the same solution as your executable package, create a "Setup" project
http://msdn.microsoft.com/en-us/library/19x10e5c.aspx
Create a Setup project in Visual Studio 2010-Creating a Setup Project and adding File Types.mp4 - YouTube .
Deployment Tasks and Walkthroughs in msdn is very useful.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
We have tens of building machines that could be old or new. We need to build the C# code with .Net 3.5, but not all the Windows machines have this version. We cannot install any software onto the building machines either. Is there a way to achieve this? We are OK to copy files to the building machines and delete them after the building it done. I tried to copy v3.5 folder to the build machine and neither msbuild.exe nor csc.exe works. I guess the .net framework has entries in the registry.
You have to install the correct version of the .NET framework on the build machines or it won't work.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
Can any one help me regarding this ? Is it mandatory?
Depending on which OS you have installed, you need to install a standalone of the .NET Framework.
At the moment there isn't an OS with the .NET Framework 4.0 installed, so you need to do it via the Windows Update or manual.
You can check out which .NET Framework is installed on this site: http://www.msigeek.com/2390/what-version-of-the-net-framework-is-included-in-which-version-of-the-os
The picture:
This means you need to install it on your OS.
Yes, if the client machine does not have the .Net framework on it you will need to install it.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
How can I install and work with mono on windows xp sp3?
Now I am using mono with the Ubuntu OS on my system.
Yes you can install Mono on Windows. You just need to make sure you run Mono when you want .NET and the other way around. If you don't use Mono-specific stuff it's possible to use MS.NET instead.
Read more about installing Mono on Windows here.