Hi there,
When you minimize a program the memory usage of the program goes down.
What I want to do essentially is to minimize the program to tastbar tray - but I don't want it to show in the taskbar - or have that weird animation where is minimizes (if possible). I also don't want to maximize the program to get it to show again or to take focus, dispite the fact is will have the TopMost set to true.
So I was wondering if there was a way to emulate minimize in what I am guessing is resource release, and the memory usage go down.
Something like this:
By the way, I have already read and understood this thread: Clicky!
Thanks.
When you minimize a program the memory usage of the program goes down.
What I want to do essentially is to minimize the program to tastbar tray - but I don't want it to show in the taskbar - or have that weird animation where is minimizes (if possible). I also don't want to maximize the program to get it to show again or to take focus, dispite the fact is will have the TopMost set to true.
So I was wondering if there was a way to emulate minimize in what I am guessing is resource release, and the memory usage go down.
Something like this:
VB.NET:
Private Sub SomeEvent()
Me.Hide
'Here is where i would emulate the minimize
End Sub
By the way, I have already read and understood this thread: Clicky!
Thanks.