The MASM Forum Archive 2004 to 2012

General Forums => The Workshop => Topic started by: 0x401000 on January 02, 2011, 11:19:45 AM

Title: Subclassing & RichEdit
Post by: 0x401000 on January 02, 2011, 11:19:45 AM
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!
Title: Re: Subclassing & RichEdit
Post by: jj2007 on January 02, 2011, 11:49:53 AM
Study TinyRtf (http://www.masm32.com/board/index.php?topic=10796.msg97379#msg97379), and when you are ready for concrete questions, post them here.
Title: Re: Subclassing & RichEdit
Post by: hutch-- on January 02, 2011, 12:13:06 PM
 :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.
Title: Re: Subclassing & RichEdit
Post by: 0x401000 on January 02, 2011, 02:46:08 PM
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.