[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: buffer-copy and array fields

Status
Not open for further replies.
G

goo

Guest
Try this: DEFINE TEMP-TABLE ttOne NO-UNDO FIELD cName AS CHARACTER EXTENT 3. DEFINE TEMP-TABLE ttTwo NO-UNDO FIELD cName AS CHARACTER EXTENT 4. CREATE ttOne. ASSIGN ttOne.cName[1] = 'a' ttOne.cName[2] = 'b' ttOne.cName[3] = 'c'. buffer ttTwo:buffer-create(). buffer ttTwo:buffer-copy(buffer ttOne:handle). MESSAGE ttTwo.cName[1] ttTwo.cName[2] ttTwo.cName[3] VIEW-AS ALERT-BOX INFORMATION BUTTONS OK.

Continue reading...
 
Status
Not open for further replies.
Top