Click here to Skip to main content
15,909,953 members
Home / Discussions / C#
   

C#

 
AnswerRe: DataGridView Pin
Christian Graus11-Nov-09 13:45
protectorChristian Graus11-Nov-09 13:45 
AnswerRe: DataGridView Pin
PIEBALDconsult11-Nov-09 15:24
mvePIEBALDconsult11-Nov-09 15:24 
GeneralRe: DataGridView Pin
V.11-Nov-09 20:06
professionalV.11-Nov-09 20:06 
GeneralRe: DataGridView Pin
PIEBALDconsult12-Nov-09 4:14
mvePIEBALDconsult12-Nov-09 4:14 
GeneralRe: DataGridView Pin
V.12-Nov-09 4:16
professionalV.12-Nov-09 4:16 
GeneralRe: DataGridView Pin
PIEBALDconsult12-Nov-09 4:20
mvePIEBALDconsult12-Nov-09 4:20 
AnswerRe: DataGridView Pin
Gerry Schmitz11-Nov-09 17:26
mveGerry Schmitz11-Nov-09 17:26 
AnswerRe: DataGridView Pin
V.11-Nov-09 20:04
professionalV.11-Nov-09 20:04 
QuestionDoubleBuffered problem. [modified] Pin
DerDevil11-Nov-09 13:02
DerDevil11-Nov-09 13:02 
AnswerRe: DoubleBuffered problem. Pin
Christian Graus11-Nov-09 13:47
protectorChristian Graus11-Nov-09 13:47 
GeneralRe: DoubleBuffered problem. Pin
DerDevil11-Nov-09 22:23
DerDevil11-Nov-09 22:23 
AnswerRe: DoubleBuffered problem. [modified] Pin
Shameel11-Nov-09 22:44
professionalShameel11-Nov-09 22:44 
GeneralRe: DoubleBuffered problem. Pin
DerDevil11-Nov-09 22:57
DerDevil11-Nov-09 22:57 
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 

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.