I have a programm thats run on commandline. I call it like: myexe.exe parameter. Now I want to output a message to my commandline (eg. success or error)
I tried:
return('there is an error') --> noting is displayed
Halt(0,'there is an error') --> a Windows-message is displayed
how can I output a message or perhaps some other data?
Here is an example that uses AttachConsole, GetStdHandle and WriteConsoleA and in particular, does it from a Clarion GUI apptype rather than CUI like in a different example.