News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests

Main Menu

RichEdit or PoorEdit

Started by Jokaste, November 24, 2017, 09:03:46 AM

Previous topic - Next topic

Jokaste

I'm having trouble with RichEdit! It has been 3 or 4 days. I'm trying to search for a string. After 3 days I finally realized that the search string had to be converted to UNICODE! Despite all my reading, I could almost recite Iczelion's tutorial by heart, I can not do it. I ask for help.
Kenavo
---------------------------
Grincheux / Jokaste

jj2007

Something like this maybe?
lea rsi, pSourceAnsi
lea rdi, pDestUnicode
@@:
  lodsb
  stosw
  dec ecx
  jns @B