TextOut in a Rich Edit Box

Is it possible to use the TextOut() function in a rich edit box I am having a hard doing this.

Answer this question

TextOut in a Rich Edit Box

  • danieljsamson

    hey did you got the way. How to display above text



  • ToMoGroup

    I want to display data from a hex file in order beginning from address 0000. I understand that the TextOut() function can let me put data in a certain location. I can try append it but if the data is too long, it will take a while to display whereas if I use TextOut() I can display the data one at a time.

    Example:

    80 0000 00 12 13 14 15 16 17 18 19 20
    21 22 23 24 25 26 27 28 29 30
    41 44 44 44 44 44 44 44 44 44

    80 etc.


  • Pravi4u

    I would suggest using tab stops and place tab characters where appropriate. If you're not using MFC, I would suggest you use the EM_SETTABSTOPS or EM_SETPARAMFORMAT notification message. If you are using MFC, you can use the CRichTextEditCtrl::SetParaFormat() method.

  • Evjan

    Unless it's owner drawn, no. Maybe if you explain why you're trying to use TextOut we can provide guidance on how to get a Rich Text box to do what you want.

  • TextOut in a Rich Edit Box