You are trying to load your object model using the C ++ linker (you may have just added it to the project, and now it is trying to compile). The compiler can process .obj files, but it waits for them to be object-code files (which also often have the .obj extension), which are only compiled modules (for example, written in C ++), ready to be connected to one executable file or dll.
No part of the C ++ compiler can read a graphical object model. You must remove the .obj file from the IDE project. And make sure that you have code that reads the file when the program starts.
If you want the object model to be embedded in your .EXE (so the program does not need a file in its directory), you can put it in resources and associate them with an executable file.
source share