-
Dynamic Text Box
I´m writing an app where I need to show the info. I get from serial port (after processing it) in a Text box.
My intention is to have an small box where the info. are presented just like "Movie Credits".
Anyone could give some tips on that?
Aprecciate very much.
Ric.
-
ugh.... presenting it in a Dialog box, or what?
In this case, you could just create a Dialog with the Dialog Editor, adding an Edit Box to it and assigning a CString Variable m_strTitle to it.
m_strTitle=GetTheInfoFromYourCode();
UpdateData(FALSE);
hope this helps
-
Do you mean you want it to automatically scroll the text?
-
Exactly solarflare!!
Sorry about the way I wrote. The point is...I don´t want just to update it...i need to keep all the previous info. displayed and then automatically scroll as new info. arrive.
thanks again!!!