I have written a small sample application of an MDI editor program (win32) which uses standard edit controls as child windows. I would like to write a similar program using RichEdit but I am having difficulties because streaming does not work properly. I always get a blank child window. I suspect that there is something wrong with the registration of the RichEdit class. Does anyone know where I can get the masm or C source code of a small RichEdit MDI sample program that could help me solve the problem?
Thanks a lot for any hints.
Best regards, Buek
\masm32\examples\exampl06\riched
Many thanks. A lot to learn from that RichEdit example, eventhough it seems to be an SDI application.
Another example...
include \masm32\MasmBasic\Res\MbGui.asm
GuiControl RichEd, "richedit", w750
GuiControl Listbox, "listbox", x750, w250
GetFiles *.rc|*.as?|*.inc ; fill Files$() array with assembler sources
SortFiles ; most recent on top
SetListbox "** select a file **" ; set a title in the listbox
SetListbox Files$() ; fill the listbox
Event Command
.if NotifyCode==LBN_SELCHANGE && LbSel>0 ; if user selects a file from the list...
SetWin$ hRichEd=FileRead$(LbSel$) ; ... get its content and display it
.endif
GuiEnd ; OPT_Icon Smiley ; tell RichMasm to add an icon
Some people here, inter alia Hutch and myself (http://masm32.com/board/index.php?topic=5314.0), have a lot of experience with the RichEdit control. It's quite buggy, but we are here to help :icon14:
Yes, it's SDI (and first step).
MDI examples are a little more complex:
- WinAsm ( http://www.winasm.net/ (http://www.winasm.net/))
- RadAsm (https://svn.code.sf.net/p/fbedit/code/RadASM30/ (https://svn.code.sf.net/p/fbedit/code/RadASM30/))
Quote from: HSE on September 05, 2016, 12:23:28 AM
- WinAsm ( http://www.winasm.net/ (http://www.winasm.net/))
Does it work for you? Just posted this at WinAsm forum (http://www.winasm.net/forum/index.php?showtopic=4386&hl=).
Hi JJ!
(in theory) You can use assembler option /Fo changing /project/properties/release/assemble. Perhaps there is another solution.
I used WinAsm for a short time, like editor and assembling from a batch. The problem was RadAsm release have some fixed colors in menus, and with my color settings I don't see nothing. When I found RadAsm source I recompiled it with better colors.
I think WinAsm work very nice, the main reason to use RadAsm is ObjAsm32 projects. :biggrin:
Later: calender is assembled well without any setting modification. I just create the project in the same folder with an empty file cal.asm, that I erase later, and I added all the files to the project.
Thanks, HSE - moving the .wap file to the source folder fixed the problem :t
At long last I managed to solve the problem. I mixed up the class names of the RichEdit control and the child window.
I encountered some major problem with the streaming process for file reading in RichEdit though. As soon as the EBX register is changed in the handler procedure (est.pfnCallback), the streaming process crashes. Saving the EBX register before any additional stuff is done in the pfnCallback routine and restoring EBX afterwards has solved the issue in my case. I am sure that this is a well known "property" of RichEdit but I just wanted to mention it here.
Many thanks for your comments which have helped a lot.
Best regards, Buek
Quote from: Buek on September 07, 2016, 08:16:56 PMSaving the EBX register before any additional stuff is done in the pfnCallback routine and restoring EBX afterwards has solved the issue in my case.
esi edi ebx MUST be restored in EVERY callback proc.
That explains all the problems which I had with that callback function. It however seems that such issues are not documented in any of Microsoft's RichEdit pages.
M$ won't give you that info because they use compilers, not assemblers. See:
- Preservation of esi, edi, ebx in general code (http://masm32.com/board/index.php?topic=250.msg1207#msg1207)
- Register usage in PROCs (http://masm32.com/board/index.php?topic=4695.msg50916#msg50916)
- Is EBP a protected register? (http://masm32.com/board/index.php?topic=4701.msg50785#msg50785)
- Windows API does not preserve esi, edi, ebx (http://www.masmforum.com/board/index.php?topic=10046.msg73584#msg73584) (treats EM_STREAMOUT explicitly)
- Preserving Registers (http://www.asmcommunity.net/forums/topic/?id=22249#post-167239) (Hutch, f0dder, Ultrano, drizz & others)