Oxygen Basic

Programming => Problems & Solutions => Topic started by: Peter on July 10, 2012, 02:32:53 PM

Title: mysterious
Post by: Peter 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?
Title: Re: mysterious
Post by: Charles Pegge 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