The elephant in the room:
I checked license it is up-to-date
Your screenshot says EurekaLog version is 7.0.7.1. It was released 10 years ago!
- If you have a modern license - why you are not using the latest/modern version of EurekaLog (7.11.x)?
- If you are using the latest/modern version of EurekaLog - then this message comes not from your application, but perhaps from some other module (DLL), which was compiled with old EurekaLog version.
Now, back to the question.
The message is displayed when your application does not have embedded EurekaLog's options and debug information. This means that the application was not post-processed to inject required information.
You can double-confirm this by using the Start / Programs / EurekaLog / Tools / PE Analyzer
tool for your compiled executable. I highly suspect that it will show you that your application does not have EurekaLog's data on board.
Now, once you have confirmed that your application was not compiled with EurekaLog - you have to find the reason why that is.
The usual way would be to look at the compiler's output (View / Tool Windows / Messages
, usually located at the bottom of the IDE). There should be output from EurekaLog there. See if it runs or chokes. If it fails - there should be a reason indicated.
This article contains a troubleshooting guide with step by step instructions. You said
follows all the steps as per document
Did you see / follow that article? It contains screenshots of every step and every correct output.
If you still fail to resolve your issue - please, post screenshots and outputs from each step described in your article, specifically - answer the following questions:
- Do you see EurekaLog's menu items in IDE?
- Is your project configured via
Project / EurekaLog options
?
- Does your project have map file set to
Detailed
?
- Does your project have
EUREKALOG
conditional symbol defined?
- Do you see "EurekaLog" stage in IDE's project compilation progress dialog?
- Do you see output from EurekaLog in IDE's build log (check both tabs)? If yes - copy/paste it here.
- Wipe all old
*.dcu
files and reinstall EurekaLog. Sometimes it is possible that your IDE will use a mix of old and new EurekaLog's files. For example, if you run your IDE in compatibility mode, some files may go into Windows VirtualStore
and override the actual / modern files from Program Files
folder.
- If everything else fails - check if you are actually looking at the correct executable.
P.S. There is also a very similar error with similar resolution steps.