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)
VictorN at 2007-11-10 23:20:50 >
# 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 >
# 3 Re: MFC Dialog Box (content limit?)
Do you know of a control that would be suitable for displaying lots of information?

Thanks.
guddi1 at 2007-11-10 23:22:43 >
# 4 Re: MFC Dialog Box (content limit?)
Do you know of a control that would be suitable for displaying lots of information?

Multiline editbox?
VladimirF at 2007-11-10 23:23:54 >
# 5 Re: MFC Dialog Box (content limit?)
i think CRichEditCtrl is Much Better according to your Requirement.
Thanx
humptydumpty at 2007-11-10 23:24:53 >