yaron89
asked on
winform when no framework
i have a winform app.
When trying to run the exe file at a computer with no framework installed at all, windows error
message apear.
I would like that my winform app will send another message indicating to the user that he has to install the framework.
Is it possible?
When trying to run the exe file at a computer with no framework installed at all, windows error
message apear.
I would like that my winform app will send another message indicating to the user that he has to install the framework.
Is it possible?
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
Since the installation is from the internet is it possible to check in the server if the conncted computer has the Framwork ?
ASKER
Thanks
You could start a non .NET based app (which will run without .net being installed) and have that check if the required .NET is already installed. If it isn't give your error message. If it is then it starts your real app and exits.