Link to home
Start Free TrialLog in
Avatar of wilch101
wilch101

asked on

Show in taskbar

When I show a new form on the screen, it will not show up in the task bar.  The button in the task bar for the original form also disappears.  The property show in task bar is set to true for both forms.  Is there a way to  make the second form show or at least keep the first form in the task bar?
Avatar of Erick37
Erick37
Flag of United States of America image

What type of project? (Standard EXE)
Post the code you use to show the second form.
Avatar of wilch101
wilch101

ASKER

It is a standard exe.  An example of the code:

Private Sub cmdGotoPO_Click()
    frmMain.Hide
    frmPO.Show 1
End Sub

Where frmMain is the main form.  The task bar button will disappear when frmPO is called.

Avatar of Guy Hengel [angelIII / a3]
Private Sub cmdGotoPO_Click()
    frmMain.Hide
    frmPO.Show
End Sub
ASKER CERTIFIED SOLUTION
Avatar of Erick37
Erick37
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial