-
None of the Key events seem to fire? The only way I could get this to work is set the form preveiw to True and use the forms KeyDown event handler?
-
Where to change the URL highlight color?
-
How to change the region color (when cursor is in between a begin/end "begin" and "end" will be highlighted. Where to do I change this color?
- Use AdvMultiFileMemo.ActiveMemo.OnKey* events
- Use AdvMultiFileMemo.ActiveMemo.URLStyle
- There is at this moment not a setting to change the color of an entire region. The same syntax styler applies to the code in a region as the any other code in the syntax memo
- Not the entire region but the region keywords. Right they if your cursor is between say a begin/end region, "begin" and "end" will be a different color, this is what I need to change.
These must have been set as keyword and thus the keyword color is applied
I had to use:
NewMemo.BlockColor := clRed;
In InitMemo event.