Link to home
Start Free TrialLog in
Avatar of boseani
boseani

asked on

show in taskbar

when i minimized my program it disappears from the task bar.  How do i prevent this?  
Avatar of Juilette
Juilette

How do you make it disappear..mine doesn't...Anything special about your form...
Is it has Form1.ShowInTaskbar = True?
Yes if you want to display you must have it set to true and you can't set it at run time....it's a design time thing

Wayne
Sorry starman..I thought you were the questioner and responding to my inquiry....guess I should read the From:
ASKER CERTIFIED SOLUTION
Avatar of Ramees
Ramees

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
And what I have suggested? Same thing.
Avatar of boseani

ASKER

My form is showintaskbar property is set to true.

here's the code i have for minimizing.

Private Sub Form_Resize()
    If Me.WindowState = vbMinimized Then
        Me.Hide
    End If
end sub

oops... I see my mistake now...

me.hide actually hides the form and removes it from the taskbar.  

thanks though