WITH THIS.COLUMNS(1)
.Text1.Visible = .F. && Important!
.ADDOBJECT('EditBox', 'EditBox')
.EditBox.Visible = .T. && Important!
.REMOVEOBJECT('Text1') && do not leave column without objects
.CURRENTCONTROL = 'EditBox'
.Sparse=.F. && this is to diisplay editbox in all rows,
&& otherwise you will get 'memo' in the all
&& rows except current
ENDWITH
Thank you for your answer. That was the solution for this
problem. Now the edit box is displaying the information
from a memo field but the edit box is not wrapping the information. I will display all the information in just one line and I need to scroll to the right to read all the info.
Frankyal, make enough size for grid row to let scroll bar apper in edit box, this should cause your edit box to wrap text correctly. This behavior is by design and I did not found a workaround for it except making my own container in the grid with edit box.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.