I am having an issue running a single program in my project. I had made some changes to the WPF screen, and in the code as well. When I compile and run my software - when I execute my software, and select the program I changed from the menu, I get the below error message.
MicroFocus.COBOL.COBOLRuntimeException
HResult=0x80131600
Message=198 Load failure [Program has an incompatible codepage dependency
"PR450000" is using codepage Western European (Windows)
but the main program "MSIMenu.App" is using Unicode (UTF-8)
Please see documentation for more information.]
I am not sure how to fix this - both my menu and the program being called (PR45000) both have this code in my WPF Screen
<?xml version="1.0" encoding="utf-8"?>
So I am not sure why it is saying this, and when I run any other program that is in the project - they all work correctly.
Where is it seeing that I have the codepage set to Western Europe (Windows) ?
I have already have performed a clean and rebuild, and this has not helped any.