in data 02-28-2013 08:33 AM
I have a queue with various fields. How do I display message in GUI? The queue will send and recieve data via UDP. The queue is coming in from the left. Thanks.
Mike, the noobie.
in data 02-28-2013 08:40 AM
In order to display queue items on a front panel you must dequeque/preview queue item and send it to an indicator.
in data 06-29-2018 02:59 PM
I needed to troubleshoot a queue, and wanted to look at the entire queue as a list.
I used the "flush queue", fed that into a string array indicator, and into an auto-indexed for loop which rebuilds the queue. This worked well to view the queue in real time and troubleshoot the source and timing of extra or missing elements.
in data 06-30-2018 04:19 AM
07-02-2018 07:41 AM - modificato 07-02-2018 07:41 AM
Hello GerdW,
I tried using Get Queue Status on multiple occasions, the array indicator always shows up blank when the program is running. I am passing strings as queue elements, could that have something to do with it?
Regards,
Bill
in data 07-02-2018 08:32 AM
@Bill_Johnson wrote:
I tried using Get Queue Status on multiple occasions, the array indicator always shows up blank when the program is running. I am passing strings as queue elements, could that have something to do with it?
There is a Boolean input on the Get Queue Status to "return elements".
in data 07-02-2018 08:44 AM
Ahh, details, the Boolean fixed it. Definitely a "Read the Manual" moment. Thank You.