Hello,
Is there a way to query the LDE in NS mode to get the column ints, doubles, or strings? Additionally, query the column name of the row number?
[Mod note: moved to more appropriate forum for ZPL-related discussions.]
Hello,
Is there a way to query the LDE in NS mode to get the column ints, doubles, or strings? Additionally, query the column name of the row number?
[Mod note: moved to more appropriate forum for ZPL-related discussions.]
Best answer by MichaelH
Hi Keith,
The $COMMENT() only works for sequential surfaces in the LDE; it does not work for non-sequential objects in the NSC. To get the non-sequential comment, you need to use a combination of NPRO()
and $BUFFER()
. Assuming you're in pure non-sequential mode (where the NSC Surface = 1), the code to get an object's comment is:
obj = 1
temp = NPRO(1, obj, 1, 0)
nsc_comment$ = $BUFFER()
PRINT nsc_comment$
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.