Debugging Cogmed QM with visual studio 10
-
Hello, Im new to this forum and I have very little programming experience. I have checked the forums and so far, I haven found any threat that is related to my issue. I have also searched google but to no avail. It seems that Im the only person having this problem. Since its related to visual studio I thought that, this is the right place to talk about it. I will keep this as brief as possible. What Im trying to do: Ok there it this program called "cogmed QM" which helps people with ADHD develop better concentration skills. Every time I run it, it gives my a .NET framework error. I've tried to use visual studio to debug the program. It gives me the following error:
Method 'set_RenderStrategyType' in type 'Endogine.Renderer.GDI.Stage' from assembly 'Endogine.Renderer.GDI, Version=1.0.2880.27035, Culture=neutral, PublicKeyToken=null' does not have an implementation.
and
No disassembly available.
I also tried using fusion log viewer to see additional details. Here's the output:
*** Assembly Binder Log Entry (2/27/2016 @ 8:30:51 AM) ***
The operation was successful.
Bind result: hr = 0x0. The operation completed successfully.Assembly manager loaded from: C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscorwks.dll
Running under executable C:\Program Files\Cogmed\Cogmed QM\SyncApp.exe
--- A detailed error log follows.=== Pre-bind state information ===
LOG: User = John-PC\Administrator
LOG: DisplayName = System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
(Fully-specified)
LOG: Appbase = file:///C:/Program Files/Cogmed/Cogmed QM/
LOG: Initial PrivatePath = NULL
LOG: Dynamic Base = NULL
LOG: Cache Base = NULL
LOG: AppName = SyncApp.exe
Calling assembly : System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089.LOG: This bind starts in default load context.
LOG: No application configuration file found.
LOG: Using machine configuration file from C:\Windows\Microsoft.NET\Framework\v2.0.50727\config\machine.config.
LOG: Binding succeeds. Returns assembly from C:\Windows\assembly\GAC_MSIL\System.Xml\2.0.0.0__b77a5c561934e089\System.Xml.dll.
LOG: Assembly is loaded in default load context.What Im using:
MS visual studio 2010
Virtual box with windows vista 32bit as a hostAny help appreciated. Thanks in advance
-
Hello, Im new to this forum and I have very little programming experience. I have checked the forums and so far, I haven found any threat that is related to my issue. I have also searched google but to no avail. It seems that Im the only person having this problem. Since its related to visual studio I thought that, this is the right place to talk about it. I will keep this as brief as possible. What Im trying to do: Ok there it this program called "cogmed QM" which helps people with ADHD develop better concentration skills. Every time I run it, it gives my a .NET framework error. I've tried to use visual studio to debug the program. It gives me the following error:
Method 'set_RenderStrategyType' in type 'Endogine.Renderer.GDI.Stage' from assembly 'Endogine.Renderer.GDI, Version=1.0.2880.27035, Culture=neutral, PublicKeyToken=null' does not have an implementation.
and
No disassembly available.
I also tried using fusion log viewer to see additional details. Here's the output:
*** Assembly Binder Log Entry (2/27/2016 @ 8:30:51 AM) ***
The operation was successful.
Bind result: hr = 0x0. The operation completed successfully.Assembly manager loaded from: C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscorwks.dll
Running under executable C:\Program Files\Cogmed\Cogmed QM\SyncApp.exe
--- A detailed error log follows.=== Pre-bind state information ===
LOG: User = John-PC\Administrator
LOG: DisplayName = System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
(Fully-specified)
LOG: Appbase = file:///C:/Program Files/Cogmed/Cogmed QM/
LOG: Initial PrivatePath = NULL
LOG: Dynamic Base = NULL
LOG: Cache Base = NULL
LOG: AppName = SyncApp.exe
Calling assembly : System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089.LOG: This bind starts in default load context.
LOG: No application configuration file found.
LOG: Using machine configuration file from C:\Windows\Microsoft.NET\Framework\v2.0.50727\config\machine.config.
LOG: Binding succeeds. Returns assembly from C:\Windows\assembly\GAC_MSIL\System.Xml\2.0.0.0__b77a5c561934e089\System.Xml.dll.
LOG: Assembly is loaded in default load context.What Im using:
MS visual studio 2010
Virtual box with windows vista 32bit as a hostAny help appreciated. Thanks in advance
-
The first error message is the key, which tells you that some piece of the program is missing. you need to contact the owners of the program for assistance.
Thanks for your response. I will try to contact the owners. I have a few more questions if you don't mind. 1. Ok, this is a really noob question but... How can I decode the information given on the fusion log output? Or more specifically, how can I read it properly? Is there a detailed tutorial somewhere? I've read a tutorial on the official site of Microsoft but it was very generic. 2. The error output says something about endogine.renderer.GDI. I've searched on the internet a bit, and I found that there is a sprite engine with the same name[^]. Maybe it has something to do with this? Thanks in advance.
-
Thanks for your response. I will try to contact the owners. I have a few more questions if you don't mind. 1. Ok, this is a really noob question but... How can I decode the information given on the fusion log output? Or more specifically, how can I read it properly? Is there a detailed tutorial somewhere? I've read a tutorial on the official site of Microsoft but it was very generic. 2. The error output says something about endogine.renderer.GDI. I've searched on the internet a bit, and I found that there is a sprite engine with the same name[^]. Maybe it has something to do with this? Thanks in advance.
1. Google found Assembly Binding Log Viewer (Fuslogvw.exe)[^] in less than a second. 2. The error message is quite clear, the method
set_RenderStrategyType
does not have an implementation in that assembly. The only people who can explain why are the suppliers of the program. -
1. Google found Assembly Binding Log Viewer (Fuslogvw.exe)[^] in less than a second. 2. The error message is quite clear, the method
set_RenderStrategyType
does not have an implementation in that assembly. The only people who can explain why are the suppliers of the program.google found Assembly Binding Log Viewer (fuslogvw.exe) in less than a second.
whoops... I should have seen that. :doh: Anyway, thanks for your help.