My program has an icon that sits in the system tray... when I minimise my program, I want it to remove its 'button' from the task bar, and then when it is restored again the button should come back. both a MSDN, POFFS and online search yielded no fruits... in VB its just a matter of one line so im assuming there's just one or two API calls behind it - but which, I'm not sure
------------------
Code:
CallBack Function DlgProc ON ERROR RESUME NEXT Select Case CbMsg CASE %WM_SIZE Select Case CBwparam Case %SIZE_MINIMIZED 'remove our apps button from task bar CASE %SIZE_RESTORED 'restore our apps button to task bar
------------------
Comment