GetLastActivePopup 在Win7上无法使用的问题
我现在需要获取一个Web页面上的Messagebox的句柄,在xp上使用 [DllImport("User32", EntryPoint = "GetLastActivePopup", ExactSpelling = true)]
public static extern IntPtr GetLastActivePopup(IntPtr hwnd);
都是正常的。
偶然间发现在英文版的Win7上获取的句柄始终是Web页面的句柄,难道GetLastActivePopup这函数在Win7上运行需要什么特殊的要求吗?
请大家给个解决方案,谢谢!