Windows MessageBox: limit to number of lines?  
Author Message
rskorski





PostPosted: Windows Forms General, Windows MessageBox: limit to number of lines? Top

Is there a limit to the number of lines that will show up on a single Message Box that is created from a call to the MessageBox() function If so, what is that limit, and what is the behavior if the limit is exceeded

Windows Forms16  
 
 
ahmedilyas





PostPosted: Windows Forms General, Windows MessageBox: limit to number of lines? Top

I think there is no limit until the limit of a string has been reached ... the problem being is the display where the messagebox will go off the screen if you try to fill it with loads of lines. How many lines are you thinking about displaying On a side note, remember MessageBox's are just for user notification purposes :-)

 
 
rskorski





PostPosted: Windows Forms General, Windows MessageBox: limit to number of lines? Top

This question was purely out of curiosity. Thank you for the answer!