PRB: Modal Form Does Not Appear in the Taskbar

Last reviewed: January 5, 1998
Article ID: Q178754
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.

Last reviewed: January 5, 1998
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.