DOCUMENT:Q178754 05-JAN-1998 [vbwin] TITLE :PRB: Modal Form Does Not Appear in the Taskbar PRODUCT :Microsoft Visual Basic for Windows PROD/VER:WINDOWS:5.0 OPER/SYS:WINDOWS KEYWORDS:vb5all VBKBObj VBKBVB ====================================================================== --------------------------------------------------------------------- The information in this article applies to: - Microsoft Visual Basic Learning, Professional, and Enterprise Editions for Windows, version 5.0 --------------------------------------------------------------------- SYMPTOMS ======== A form displayed modally does not appear in the taskbar. RESOLUTION ========== To have a form appear in the taskbar, show the form as a non-modal form. The MORE INFORMATION section below shows how to show a form in the taskbar. STATUS ====== This behavior is by design. MORE INFORMATION ================ By Windows user interface design standards, modal forms do not appear in the system taskbar. The next section shows you how to create a sample project that simulates a modal form so that the form appears in the taskbar. Step-by-Step Example -------------------- 1. Start a new Standard EXE project in Visual Basic. Form1 is created by default. 2. Add a CommandButton to the Form1 form. 3. Add a second Form to the project. Add a CommandButton to the Form2 form. 4. Copy the following code to the Code window of the Form1 form: Option Explicit Private Sub Command1_Click() Form1.Enabled = False Form2.Show End Sub 5. Copy the following code to the Code window of the Form2 form: Option Explicit Private Sub Command1_Click() Unload Form2 Form1.Enabled = True Form1.SetFocus End Sub 6. On the Run menu, click Start or press the F5 key to start the program. On the Form1 form, click the CommandButton to display the Form2 form. Note that the Form2 form also appears in the taskbar. ====================================================================== Keywords : vb5all VBKBObj VBKBVB Version : WINDOWS:5.0 Platform : WINDOWS Issue type : kbprb ============================================================================= 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. Copyright Microsoft Corporation 1998.