0 votes
by aleksey (120 points)
I'm trying to make a standalone application (chapter 27.1.2 Windows console), but text string is printed on window title, not on console. How can I fix it ? Thank you. =^.^=

1 Answer

0 votes
by Stephen Pelc (3.4k points)

You need to add WalkColdChain to start. I tested the following example on VFX 5.11 for Windows on Windows 10.

\ console example
: start \ hmodule 0 commandline show -- res
  4drop
  WalkColdChain
  ." Hello World! from VFX" cr
  key drop
  0
  ;
' start is EntryPoint
SaveConsole hello
bye

I have updated the manuals for the next release.

...