Try as I might, I cannot get Justification in Richedit, using "EZ_ForceRichVersion 4".
I have tried putting it in all sorts of places but when I press Ctrl-J, it simply aligns text on the left, not fully justified as in MS Word 2007.
I have tried the following:
IF Main_Initialize(VerNum&) THEN
EZ_ForceRichVersion 4
EZ_ForceRichVersion 4
IF Main_Initialize(VerNum&) THEN
SUB FORM1_Events(CID&, CMsg&, CVal&, Cancel&)
SELECT CASE CID&
CASE %EZ_Window
SELECT CASE CMsg&
CASE %EZ_Loading
EZ_ForceRichVersion 4
CASE %EZ_Loaded
CASE %EZ_Started
CASE %EZ_Close
CASE ELSE
END SELECT
CASE ELSE
END SELECT
END SUB
FUNCTION Main_Initialize(BYVAL VerNum&) AS LONG
LOCAL RV&
RV&=1
FUNCTION=RV&
EZ_ForceRichVersion 4
END FUNCTION
I cannot get it to work.
Has anyone tried it and got it to work?