Howdy,
I have just written a small program in VB 2005 in .net framework 2.0, i wondering if there is a way that the executable could still run in ver 1.1 as i have been getting errors (ie not compatible!)
The program is very simple, and i dont think i use any new "fancy" parts of 2.0 (I am very new to VB and .net....like today)
thanks...
Dwayne

Converting between Ver 1.1 and ver 2.0 .net
Dmitry Polyakovsky
"Application generated an Exception that cannot be handled" when I tried to force a v2.0 EXE on v1.1
So, I guess the only option is to rebuild the app for v1.1.
Regards,
Vikram
chenthorn
Rajeev Karunakaran
You could give the supportedRuntime option a try.
<supportedRuntime>
Also take a look at:
Specifying which runtime version to use:
In case, you dint specify it, then an attepmt would be made to run the app with the version of the framework it was built with. When you specify using the supportedRuntime property, the CLR tries to run it with the other version.
However, this does not guarantee that the app will work fine. You need to test that out yourself.
Regards,
Vikram
Krishi