Windows console
- Posted by jondolar <lavigne.s at videotron.ca> Jul 17, 2003
- 453 views
Hi everyone After creating a full screen window with IDE, is it possible to write on that window instead of on the windows console I tried the folling code and many variations as to where the statements are positioned. In the best of case, I see my window with nothing on it. Then after Enter, the window console with my text. Here is the code: include get.e include Win32Lib.ew without warning object x,i x = "Jos" constant SLWindow2 = createEx( Window, "Serge Window", 0, Default, Default, 400, 300, 0, 0 ) procedure ABC() WinMain( SLWindow2,Maximize ) position (10,10) puts(1,x) puts (1,"\n") i = wait_key() end procedure ABC() -- code generated by Win32Lib IDE v0.17.0