i have a c# app that only runs in the system tray. it has a windows form that i hide immediately when the app runs so that you only ever see the tray icon. i just noticed that when the app is running you can CTR+ALT and switch to my app and that will display the form. how can i fix this? i need to hide the app from the task switcher (CTRL+ALT)
Loading
JimmyPosted Jul 29, 2008, 8:49 AM
yup, perfect. thank you!
OmPosted Jul 29, 2008, 1:47 AM
I had the same problem. I guess u r using form.visible = false;
use this.Hide();