News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

RAEdit Request

Started by msmith, May 09, 2006, 06:13:21 AM

Previous topic - Next topic

msmith

Ketil,

I realy like RAEdit and use it in my main editor every day.

The one problem I have is the rule for colorizing text after a '.'.

For example, if I set up the word 'text' to be red, it will do so just fine. But when it is preceeded by a "." it will not colorize.

In the case of:

Control1.text

the word 'text' will not colorize.

Thanks,

Mike

KetilO

Hi Mike

Use REM_SETCHARTAB and define '.' as CT_OPER

invoke SendMessage,hREd,REM_SETCHARTAB,'.',CT_OPER

KetilO

msmith

Ketil,

I tried your fix, but it has no effect.

I also tried:

invoke SendMessage,[hREd],REM_SETCHARTAB,02eh,CT_OPER to no avail.

(The square brackets on the handle and the plain 02eh are because I am using FASM)

I also tried CT_NONE.

I noticed that the CT_OPER or CTNONE are returned in eax.

I even went into RAEdit.dll with a hex editor and changed 0de2eh from a 03 to 02. Still no good.

Thanks,

Mike

KetilO

Hi

Try this version. It should work better.

KetilO

[attachment deleted by admin]

msmith

#4
Ketil,

This one works fine.

Thank you very much.

Are there any other changes/fixes/features?

Thanks again,

Mike