How can I be notified when a new window is created on Win32?
Is there a way using Win32, to register for notifications when a new window is created. I'm trying to keep a list of current open windows, but am now just polling the list of current windows using EnumWindows() . Anyone done something similar? Thanks I'm not sure if I'm doing this right, but I'm not able to get the SetWindowsHookEx method to fire. anything come to mind? here is my snip [DllImport("user32.dll", SetLastError = true)] private static extern IntPtr SetWindowsHookEx(HookType hook, HookProc callback, IntPtr hMod, uint dwThreadId); [DllImport("user32.dll")] private static extern int