MFC Dialog Box (content limit?)
Hi,
I am new to using MFC/ATL/COM. I need help with a dialog box which is opened to write lots of information to it. I want all output to be shown in the dialog box. However, only part of it is shown. I would like to know how to extend the buffer for the dialog box to display more information, if there is such thing.
Is there a set limit as to how much information a dialog box can display?
Thanks.
[418 byte] By [
guddi1] at [2007-11-20 0:41:23]

# 1 Re: MFC Dialog Box (content limit?)
Consider using PropertySheet with PropertyPages: Property Sheets ( http://windowssdk.msdn.microsoft.com/en-us/library/ms652415.aspx)
# 2 Re: MFC Dialog Box (content limit?)
By 'dialog box' you presumably mean 'message box'? If a standard message box isn't suitable because the text you're trying to display is too long, then you'll simply have to design your own message box which contains a control that's suitable for displaying all the text.
John E at 2007-11-10 23:21:51 >
