Link to home
Start Free TrialLog in
Avatar of yaron89
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?
Avatar of AndyAinscow
AndyAinscow
Flag of Switzerland image

Not so easily.
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.
ASKER CERTIFIED SOLUTION
Avatar of AndyAinscow
AndyAinscow
Flag of Switzerland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of yaron89
yaron89

ASKER

Since the installation is from the internet is it possible to check in the server if the conncted computer has the Framwork ?
Avatar of yaron89

ASKER

Thanks