tags:

views:

20

answers:

1
+1  Q: 

scroll bar in mfc

how to add Scroll bar to a static text in MFC dialog box

+1  A: 

A static can't have a scroll bar. If you mean a read-only edit box, just turn it on in the resource editor.

Roel
Hi Roel thanks for your reply.....but i have a long text to display...but full text is not getting displayed due to size of the static text box........so how is it possible without a scroll bar.....plz help me out
SPB
I have solved the problem by using a RichEditControl instead of a static text
SPB