newtoclarion
Programmer
I will give an example for what Iam trying to do:
I defined a queue as follow:
QQQ QUEUE,PRE(QQQ)
CC CSTRING(20),DIM(20)
END
and then ran this code to create a sample data
free(QQQ)
loop i# = 1 to 3
QQQ:CC[1] = i#
add(QQQ)
end
Until here it is fine, but when I tried to browse this data I get this error : Parameter typing error.
Any suggestions will be so appreciated.
I defined a queue as follow:
QQQ QUEUE,PRE(QQQ)
CC CSTRING(20),DIM(20)
END
and then ran this code to create a sample data
free(QQQ)
loop i# = 1 to 3
QQQ:CC[1] = i#
add(QQQ)
end
Until here it is fine, but when I tried to browse this data I get this error : Parameter typing error.
Any suggestions will be so appreciated.