database - Memo fields and forms DBASE PLUS -
how can display information within memo field using editor form component. know using image go with:
form.image.datasource = 'binary image_name'
but editor not know how access memo field , display data. sugestions,methods?
typically dbase or xbase, reference columns in table so:
mytable->myfield
or
mytable.myfield
so in example try:
form.image.datasource = mytable->mymemofield
or
form.image.datasource = mytable.mymemofield
Comments
Post a Comment