Scrolling MessageBox

  • Thread starter Thread starter Luigi Z
  • Start date Start date
L

Luigi Z

Hi all,
in my WinForm application (C# 2.0) I have a MessageBox with a huge quantity
of details to show.
How can I solve this problem?
Can I make a scrollable MessageBox?

Thanks in advance.
 
Luigi said:
Hi all,
in my WinForm application (C# 2.0) I have a MessageBox with a huge
quantity of details to show.
How can I solve this problem?
Can I make a scrollable MessageBox?

Thanks in advance.

Use your own Form and a multiline readonly textbox.


Armin
 
If you want to imitate the style of system message boxes, take a look at the
'SystemIcons' and 'SystemSounds' classes too.
 
Back
Top