Hi!
Please advise how to make a window that was very functional for editing assembler code. For example, to be edited as text, but with additional features like ListView. With the division into columns, single row selection, shedding additional menu and synchronization between the assembler code and binary representation. How else can we do this without Richedit, because information about RichEditSubclassing hardly to found.
Thank you!
Study TinyRtf (http://www.masm32.com/board/index.php?topic=10796.msg97379#msg97379), and when you are ready for concrete questions, post them here.
:bg
Its only because you are looking in the wrong place.
Try the masm32 examples. \example05\riched\richedit.asm
Look at the last 2 procedures in the file,
EditControl proc hParent:DWORD, x:DWORD, y:DWORD, wd:DWORD, ht:DWORD, ID:DWORD
hEditProc proc hCtl :DWORD,
uMsg :DWORD,
wParam :DWORD,
lParam :DWORD
The second is the subclass for the edit control.
Once you understand them they are simple. A subclass is just an intercept of the messages processed by an edit control so you can process them yourself OR throw them away.
hutch-- , jj2007
Thank you very much! Indeed, everything was easy. I will study examples, if there are questions, I'll ask you here. So far, everything is clear.