bh_vfp
7th November 2002, 15:07
Does anyone know how to display a multibytestring (tttxt010.text) on a form?

:confused:

Bas

günther
7th November 2002, 16:34
I've been doing it the following way:

In your form, add some text fields, e.g. text(1) ... text(5) where 1..5 is the element number; type e.g. tcmcs.str60.


function fill.text()
{
long rc

rc = set.mem(text, "")
rc = text.to.buf("tiitm001.txta", language$, 5, text)
}

bh_vfp
7th November 2002, 17:03
Günther,

Thanks for your quick response.

Bas

Grace Li
8th November 2002, 16:38
Usually you can just add it as a field. If this does not work, add a string field on the form, move the text into the string and do a refresh.

Hope it helps.