Página 1 de 1

Does Xailer support console applications?

Publicado: Lun Ene 21, 2019 6:08 pm
por DC
Hi,

My original question was whether we can take some console environment code, that doesn't have any third party references, and debug it in the Xailer IDE.

It looks like the answer is yes, but it's not clear how to call a console function.

So for example to test the debugger,


Procedure Main()

Application:cTitle := "ConsoleTest"
ConsoleTest()
Application:Run()

Return


Function ConsoleTest

? "Single Step 1"

? "Single Step 2"

? "Single Step 3"

Return .t.


, but the reference to ConsoleTest() disappears, as soon as you try to compile and run the application.

Re: Does Xailer support console applications?

Publicado: Lun Ene 21, 2019 7:53 pm
por DC
Ok, I got the thing built. But it doesn't work as expected. You can debug through the code, but when you run it on a windows command line, it doesn't show anything.

If there are some particular settings that need to be populated, please let me know, thanks.