0

I'm using a NotifyIcon for displaying some information regarding a background process-result of my C# Windows application. But sometimes it does not show the complete message. It hides some of the lines of the given message.

Can any one tell me is there any restriction in this message body? Or how can I force a NotifyIcon to display the complete message?

Abbas
  • 13,285
  • 6
  • 39
  • 67
Ashish Rathore
  • 2,218
  • 7
  • 45
  • 84
  • If I understand correct then there is a similiar question: http://stackoverflow.com/questions/579665/how-can-i-show-a-systray-tooltip-longer-than-63-chars – roqz Apr 18 '13 at 07:08

1 Answers1

1

The length of the text of a NotifyIcon is limited to 64 characters. However there's a 'hack' to get around this, please take a look at the solution of this question. Hope this helps!

Community
  • 1
  • 1
Abbas
  • 13,285
  • 6
  • 39
  • 67