Previous | Next | DMIS Question and Answer
Topic: RE: How to assign the values of 2 variable to variable #3
Conf: DMIS Question and Answer, Msg: 4213
From: Keith Morton (kmorton@lk-cmm.com)
Date: 6/22/2002 08:32 AM

Arie is correct CONCAT (short for concatenation) is a standard programming term for "joining" things together and is documented under intrinsic functions in the DMIS 4.0 book.

Examples:

Code

cLabel=ASSIGN('CR',iCount)
cLabel=ASSIGN(iCount,'CR')
cLabel=ASSIGN(cPrefix,iCount,cSuffix)

etc
Keith Morton