Asked by:
Windows 10 Creator: Failed to load resources from resource file. Please check your Setup

Question
-
Hello, we have a thirdy party application based on NET Framework 1.1 running without problem on Windows 10 Pro. Some days ago, after the update of Windows Creator some functionalities of the application do not work anymore giving the error "Failed to load resources from resource file. Please check your Setup"
The error occurs, for example, in the line of code in BOLD:
...
' the sample code retrive the value of a property FieldName in a object "obj"Dim FieldName As String = "Customer"
Dim sourcetype As Type = obj.GetTypeDim prop As PropertyInfo = sourcetype.GetProperty(FieldName)
TryIf prop Is Nothing OrElse Not prop.CanRead Then
' do nothing
Else
Return prop.GetValue(obj, Nothing).ToString
End IfCatch ex As Exception
Throw New System.Data.DataException( "Error reading value " & FieldName, ex)
End Try
...
The property "Customer" ( string property ) exists in object "obj" but it is nothing. The catch part of the try is never reached from the code. The "Failed to load resources from resource file. Please check your Setup" messagebox is displayed, meaning that the catch part of the try is not evaluated.If the property contains a value , all is working
I know the NET Framework 1.1 is not more supported , but there are any chance to solve the problem?
Regrads
aspdevelopMonday, May 15, 2017 1:31 PM
All replies
-
Thursday, May 18, 2017 11:16 PM
-
Hi,
I search online and find out a similar case, in fact, for development issue, I suggest to post on MSDN or Dev Center forum.
Setup Error - Failed to load resources from resource file
Regards
Please remember to mark the replies as answers if they help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.- Proposed as answer by Teemo TangMicrosoft contingent staff Tuesday, June 20, 2017 6:50 AM
Friday, May 19, 2017 2:26 AM -
Thanks for the information. First I will check the post.
Thanks again
Regards
Saturday, May 20, 2017 9:29 AM -
You are welcome.
Please mark your reply to close this case.
Please remember to mark the replies as answers if they help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.Monday, May 29, 2017 8:10 AM -
Hi, we are experiencing the same in a VB.net 1.1 application, Since upgrading to Win10 Creators update. Just wondering if got to the bottom of this problem? Sunday, June 4, 2017 11:51 PM