Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6105583
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T13:59:12+00:00 2026-05-23T13:59:12+00:00

I am designing a system where the user makes a gesture, then my program

  • 0

I am designing a system where the user makes a gesture, then my program captures it (using a web cam) and my program looks in a rule system (based on XML) which are the actions that it has to do.

Ok, once I have explained the background, I’d like to know how I could make my program “execute” the Show Desktop button. I’d like to provide the user the possibility to do a gesture and show the desktop. Is it possible? I have been looking the program (.exe) that executes the Show Desktop button and I am afraid that does not exist.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T13:59:13+00:00Added an answer on May 23, 2026 at 1:59 pm

    From this MSDN blog post (dated 2004 but surely still valid), you must call ToggleDesktop().

    in C#:

    // Create an instance of the shell class
    Shell32.ShellClass objShel = new Shell32.ShellClass();
    // Show the desktop
    ((Shell32.IShellDispatch4) objShel).ToggleDesktop();
    // Restore the desktop
    ((Shell32.IShellDispatch4) objShel).ToggleDesktop();
    

    EDIT

    C++ version:

    #include <Shldisp.h>
    
    CoInitialize(NULL);
    // Create an instance of the shell class
    IShellDispatch4 *pShellDisp = NULL;   
    HRESULT sc = CoCreateInstance( CLSID_Shell, NULL, CLSCTX_SERVER, IID_IDispatch, (LPVOID *) &pShellDisp );
    // Show the desktop
    sc = pShellDisp->ToggleDesktop();
    // Restore the desktop
    sc = pShellDisp->ToggleDesktop();
    pShellDisp->Release();   
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Designing a new system from scratch. I'll be using the STL to store lists
I'm designing GUI (graphical user interface) system for a game engine (C++). Idea is
The user needs to click on browse button to browse his system .He then
I am designing a system to deal with an external web service. The service
I am designing a system for a customer. We are thinking about using Wordpress
I am designing a Java web application that makes heavy use of AJAX (for
I am designing a system that lets a user assign a specific task to
I'm designing a blog-like website system from the ground up, based off of PHP
A little background first: I'm designing a web application for a control system that
I am currently designing a system where we need to know if the user

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.