Author Topic: mysterious  (Read 1858 times)

0 Members and 1 Guest are viewing this topic.

Peter

  • Guest
mysterious
« on: July 10, 2012, 02:32:53 PM »
Hi Charles,

What is the difference between a program that I start from the Editor and  a compiled Executable?

When I start a program from the Editor runs it perfectly and stable.
When I make an executable from this programm and let run, it crashes!

Is this intergalactic joke?

Charles Pegge

  • Guest
Re: mysterious
« Reply #1 on: July 10, 2012, 03:09:38 PM »
Hi Peter,

The binary image is packed into a PE file structure, whereas in direct execution, the binary image is called directly, and there is no export or resource section.

If your exe crashes, it could be a symptom of memory corruption that did not expose itself in the different environment of direct execution.

Charles