> Has anyone ever had trouble with Sunview's > window_set(win, WIN_GRAB_ALL_INPUT, 0); Well, for starters, you're leaving out the boolean value that goes with it. Try one of these: window_set(win, WIN_GRAB_ALL_INPUT, TRUE, 0); window_set(win, WIN_GRAB_ALL_INPUT, FALSE, 0); -- John Polstra (jdp at polstra.uucp)