I use .sympath command to add it or through the settings interface
C:\Users\Julien\AppData\Local\Temp\xojo scratch 34436\laby [28CC0A96]\Windows_x86_64
I got all .o / .bc files and the .pdb file in the path above.
I also tried to add the srv* to the sympath, this solve the current issue but the debugger point outthe module XojoGUIFramework64 but can not pinpoint the method causing the crash.
I did follow this blog post already and the result was the same. I tried to compile with different xojo version also to see if I could get more data compiling with other versions…
Using breaks running in the IDE you should be able to pinpoint where the crash occurs.
When a window instantiates, first each control Opening event fires, then when all controls have instantiated, then the Opening event occurs for the window.
You may put a break in the window Opening event, and see if the code actually stops there. In that case it would mean the crash occurs later. Going step by step with the arrows should help you narrow it to the crash.
If the crash occurs before the window Opening event, perhaps you can place a break in the PagePanel Opening. Going step by step should enable you to pinpoint the crash location.