manelandrea
Programmer
Hi, would anyone know how to display record on listdisplay? I was trying something like this:
but nothing is shown, is it possible to display list of record? Thank you!
Code:
event rxmsg : success_reply
var list_size : n3
var list_name[totalItems-1] : a40
var list_price[totalItems-1] : a40
rxmsg list_size,list_name[]:list_price[]
window totalItems-1, 42, "Details"
listdisplay 1, 2,list_size, @list_name : @list_price
waitforclear
infomessage list_size
infomessage list_name[1]
endevent
but nothing is shown, is it possible to display list of record? Thank you!