CartoonDog
IS-IT--Management
I have written an app that uses the systray. I have disabled the ShowInTaskBar property of the form in question. When the user presses the Min button I want an animation of the form to shrink down to the systray. I have the animation working fine if I execute it with a command button, but I want it to be triggered by the Min button. Any ideas?
Thanks in advance.
Cartoondog.
PS. I am going to try this code snippet, but am expecting results that will be less than desireable:
Private Sub Form_Resize()
If Me.WindowState = vbMinimized Then Me.WindowState = vbNormal
End Sub
Thanks in advance.
Cartoondog.
PS. I am going to try this code snippet, but am expecting results that will be less than desireable:
Private Sub Form_Resize()
If Me.WindowState = vbMinimized Then Me.WindowState = vbNormal
End Sub