Page 1 of 1

Problem with memofield

Posted: Tue Dec 18, 2007 4:32 pm
by driessen
Hello,

In my application I use this :

Code: Select all

REDEFINE GET oGET VAR cSRTMEMO MULTILINE MEMO TEXT ID 102 OF SrtDlg WHEN .F.
The get is disabled so it cannot be changed. But I want to be able to use the scrollbar at the right side. But since I added the WHEN-clause, the scrollbars are disbabled too.

What do I need to do to to disable only the text of the memofield ?

Thanks

Re: Problem with memofield

Posted: Tue Dec 18, 2007 4:52 pm
by Enrico Maria Giordano

Code: Select all

REDEFINE GET oGET VAR cSRTMEMO MULTILINE MEMO TEXT ID 102 OF SrtDlg READONLY
EMG

Posted: Tue Dec 18, 2007 11:15 pm
by driessen
Enrico,

Thank you very much for your help.

Problem solved.