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

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -