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.
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.
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
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
Evjan