Sometimes you want to know if the desktop is in Active Desktop mode-for example, to set an HTML wallpaper. I couldn’t find a function to accomplish this, but this hack works on all Windows 95/98 and NT4 desktops that I’ve tested it on:
Private Declare Function FindWindow& Lib "user32" Alias _ "FindWindowA" (ByVal lpClassName$, ByVal lpWindowName$)Private Declare Function FindWindowEx& Lib "user32" Alias _ "FindWindowExA" (ByVal hWndParent&, ByVal _ hWndChildAfter&, ByVal lpClassName$, ByVal _ lpWindowName$)Public Function IE4ActiveDesktop() As Boolean Dim Templong& Templong = FindWindow("Progman", vbNullString) Templong = FindWindowEx(Templong, 0&, _ "SHELLDLL_DefView", vbNullString) Templong = FindWindowEx(Templong, 0&, _ "Internet Explorer_Server", vbNullString) If Templong > 0 Then IE4ActiveDesktop = True Else IE4ActiveDesktop = False End IfEnd Function
Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.
Related Posts
- Google Adds Device Protection Features to Android 5.1
- TwitchCon 2024 draws crowds to San Diego
- Report: 40% of Enterprises Say ‘Citizen Developers’ Make App Development Twice as Fast
- Forrester: 100% of Large Enterprises Will Adopt Hadoop
- Transforming Storytelling: How HOLYWATER Uses AI Personalization to Boost Reader Engagement























