News:

The new Release 25.03 is out! You can download binaries for Windows and many major Linux distros here .

Main Menu

Escape Sequenzes

Started by gzz, September 19, 2020, 01:56:39 PM

Previous topic - Next topic

gzz

Hallo

could anyone help on this topic  :P :-[

working with codeblocks i tried to locate the cursor in the window

using printf("\033[%d;%dH",z,s); does not work

using printf("\033[2J"); does not work - same problem

the systems shows a ? in a small box

has anyone an idea how to get this work ?

some help would be great !

Bories

p.s. Codeblocks is running on windows 10, anything else works fine  :)

Pecan

MS has made it almost impossible to write ansi escape sequences to the console host process.

It can only be done with other program help.
Use google to find out how.
Example:
https://superuser.com/questions/413073/windows-console-with-ansi-colors-handling

gzz

Thank You

That helped a lot ! :D :)