Hi Aurel,
I think the ShellExecute statements work (at least for me).
It depends on what you want to do.
1) Run a .o2bas file in JIT mode: use MenuItem: Compile, Run .o2bas file or press F5 or use the Tool button "!".
2) Compile a .o2bas file to a binary: MenuItem: Compile, Compile to Binary. Will need eventually oxygen.dll
The ShellExecute which you refer to is for this MenuItem. You can check what it does by including these statements:
'Compile source code
SendMessage(hStatus, SB_SETTEXT, 3, " Compiling " openFile " with " & compiler " to binary")
if not exist compiler then mbox compiler " does not exist" : exit function
print compiler
print openfile
ShellExecute (null,"open", compiler, "-c " & openFile, null, SW_SHOW)
If you want to compile to an independent exe file you must use the first option (e.g. F5) and include something like this in your code:
$filename "MyFilename.exe"
#include "$\inc\RTL32.inc"
If you want to use the second MenuItem (compile to binary) you can do this also but you will need the include statement for RTL32.inc too, if you do not want to use Oxygen.dll for running the created exe file.
Referring the flickering: I am waiting for some hints?
Roland