Click here to Skip to main content
15,892,005 members
Home / Discussions / C#
   

C#

 
QuestionMedia Suite project help Pin
MattWeed911-Nov-09 12:58
MattWeed911-Nov-09 12:58 
AnswerRe: Media Suite project help Pin
Christian Graus11-Nov-09 13:48
protectorChristian Graus11-Nov-09 13:48 
AnswerRe: Media Suite project help Pin
Christian Graus11-Nov-09 13:49
protectorChristian Graus11-Nov-09 13:49 
GeneralRe: Media Suite project help Pin
MattWeed911-Nov-09 15:02
MattWeed911-Nov-09 15:02 
GeneralRe: Media Suite project help Pin
Christian Graus11-Nov-09 15:38
protectorChristian Graus11-Nov-09 15:38 
GeneralRe: Media Suite project help Pin
MattWeed913-Nov-09 12:18
MattWeed913-Nov-09 12:18 
QuestionNotifyicon still shows after application is closed Pin
Jacob Dixon11-Nov-09 12:30
Jacob Dixon11-Nov-09 12:30 
AnswerRe: Notifyicon still shows after application is closed Pin
Luc Pattyn11-Nov-09 13:01
sitebuilderLuc Pattyn11-Nov-09 13:01 
This happens on all kinds of Windows.
Your app should call Dispose() on its NotifyIcons prior to app exit.

One way of achieving this is by using
protected override void Dispose(bool disposing) {
	if(disposing) {
		notifyIcon.Dispose();	// make notifyIcon disappear now
	}
}


If your app does not, or just crashes, or gets killed, the icon remains intact until your mouse erases it. Unless you got this nice little tool[^] up and running (except it needs a fix for Win7).

Smile | :)

Luc Pattyn

I only read code that is properly indented, and rendered in a non-proportional font; hint: use PRE tags in forum messages


GeneralRe: Notifyicon still shows after application is closed Pin
Jacob Dixon11-Nov-09 13:08
Jacob Dixon11-Nov-09 13:08 
GeneralRe: Notifyicon still shows after application is closed Pin
danysrour16-Nov-09 21:13
danysrour16-Nov-09 21:13 
GeneralRe: Notifyicon still shows after application is closed Pin
Luc Pattyn17-Nov-09 1:10
sitebuilderLuc Pattyn17-Nov-09 1:10 
Questioninterface with generic type Pin
md_refay11-Nov-09 11:29
md_refay11-Nov-09 11:29 
AnswerRe: interface with generic type Pin
Christian Graus11-Nov-09 11:36
protectorChristian Graus11-Nov-09 11:36 
GeneralRe: interface with generic type Pin
PIEBALDconsult11-Nov-09 12:46
mvePIEBALDconsult11-Nov-09 12:46 
AnswerRe: interface with generic type [modified] Pin
Luc Pattyn11-Nov-09 12:27
sitebuilderLuc Pattyn11-Nov-09 12:27 
GeneralRe: interface with generic type Pin
PIEBALDconsult11-Nov-09 12:47
mvePIEBALDconsult11-Nov-09 12:47 
GeneralRe: interface with generic type Pin
Luc Pattyn11-Nov-09 12:57
sitebuilderLuc Pattyn11-Nov-09 12:57 
Questiontablelayoutpanel Pin
farokhian11-Nov-09 11:19
farokhian11-Nov-09 11:19 
AnswerRe: tablelayoutpanel Pin
Christian Graus11-Nov-09 11:24
protectorChristian Graus11-Nov-09 11:24 
GeneralRe: tablelayoutpanel Pin
farokhian11-Nov-09 11:26
farokhian11-Nov-09 11:26 
GeneralRe: tablelayoutpanel Pin
Christian Graus11-Nov-09 11:31
protectorChristian Graus11-Nov-09 11:31 
QuestionSQLite datatime Pin
jashimu11-Nov-09 10:23
jashimu11-Nov-09 10:23 
AnswerRe: SQLite datatime Pin
Christian Graus11-Nov-09 11:19
protectorChristian Graus11-Nov-09 11:19 
GeneralRe: SQLite datatime Pin
jashimu12-Nov-09 4:22
jashimu12-Nov-09 4:22 
AnswerRe: SQLite datatime Pin
curtmayers21-Apr-10 8:38
curtmayers21-Apr-10 8:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.