PC Win: How to Hide the Microsoft Mail Spooler Icon

Last reviewed: August 2, 1995
Article ID: Q132682
The information in this article applies to:
  • Microsoft Mail for Windows, versions 3.0, 3.2, and 3.2a

SUMMARY

The Microsoft Mail spooler icon is displayed on the desktop whenever a Messaging Application Program Interface (MAPI) application initiates a Mail session. Simple MAPI does not have a method to hide or remove this icon.

MORE INFORMATION

However, you can hide the mail spooler icon by invoking Microsoft Windows Application Programming Interface (API) calls. The following Microsoft Visual Basic version 3.0 code fragment illustrates how these calls can be used to hide the Mail spooler after a successful Mail session has been established using MAPILogon:

   ' Start routine to hide the mail spooler
   Handle% = FindWindow(0&, "MS Mail Spooler (auto)")
   If Handle% <> 0 Then
      Status = ShowWindow(Handle%, SW_HIDE)
   End If
   ' End routine

NOTE: On slower machines, the Mail spooler icon may flash when the above calls are implemented.

REFERENCES

  • Microsoft Windows SDK "Programmer's Reference"


Additional reference words: 3.00 3.20 3.20a
KBCategory: kbenv kbcode
KBSubcategory: MailPCWin


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: August 2, 1995
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.