Controlling Windows systems with Shell objects

Source: Internet
Author: User
Tags set time

0. Initializing the Environment and OLE objects

#include <utilcls.h>
#include <shlobj.h>
// 初始化COM环境
CoInitialize(NULL);
// 创建Shell对象
Variant vShellOLE = Variant::CreateObject("Shell.Application");

1. Cascade windows

Function CascadeWindows("CascadeWindows");
vShellOLE.Exec(CascadeWindows);

2. Tile the window horizontally

Function TileHorizontally("TileHorizontally");
vShellOLE.Exec(TileHorizontally);

3. Tile the window vertically

Function TileVertically("TileVertically");
vShellOLE.Exec(TileVertically);

4. Minimize All windows

Function MinimizeAll("MinimizeAll");
vShellOLE.Exec(MinimizeAll);

5. Undo All Minimize

Function UndoMinimizeALL("UndoMinimizeALL");
vShellOLE.Exec(UndoMinimizeALL);

6. Set time

Function SetTime("SetTime");
vShellOLE.Exec(SetTime);

7. Find a computer

Function FindComputer("FindComputer");
vShellOLE.Exec(FindComputer);

8. Find Files

Function FindFiles("FindFiles");
vShellOLE.Exec(FindFiles);

9. Help

Function Help("Help");
vShellOLE.Exec(Help);

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.