Revert application from 1.1 to 1.0

  • Thread starter Thread starter trojan
  • Start date Start date
T

trojan

Hi

I have a solution that was developed in 1.0 that used bindingmanager
and currentchanged event in a handler, this worked well in 1.0 but
when I upgraded to 1.1 the event stopped working.

the code I used is:
AddHandler m_bindClient.CurrentChanged, AddressOf Steve

Is there an easy way to return to version 1.0 or a patch for 1.1 to
fix this problem?

Thanks,

Stephen
 
Not quite sure if there was any breaking change wrt BindingManager in 1.1.
Anyways, to make your app to work with V1.0 of the framework, you can use
the requiredRuntime config element in your config file. Like:

<configuration>
<startup>
<requiredRuntime version="v1.0.3705" safemode="true"/>
</startup>
</configuration>

--
HTH,
Manoj G [.NET MVP]
Site: http://www15.brinkster.com/manoj4dotnet
Blog: http://msmvps.com/manoj/


trojan said:
Hi

I have a solution that was developed in 1.0 that used bindingmanager
and currentchanged event in a handler, this worked well in 1.0 but
when I upgraded to 1.1 the event stopped working.

the code I used is:
AddHandler m_bindClient.CurrentChanged, AddressOf Steve

Is there an easy way to return to version 1.0 or a patch for 1.1 to
fix this problem?

Thanks,

Stephen



----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= 19 East/West-Coast Specialized Servers - Total Privacy via Encryption
=---
 
Back
Top