Forum Migration Notice
Update (2026-01-21): The user forums are now in read-only mode pending the data migration.

Update (2026-01-12): The user forums will be put into read-only mode on the 21st of January, 00:00 CET, to prepare for the data migration.

We're transitioning to a more modern community platform by beginning of next year. Learn about the upcoming changes and what to expect.

IPC DeleteQueue, documentation flaw

In the ABB RObotics IRC5 PC SDK the DeleteQueue has a flaw in the example....

There is no QueueId method available on the Ipc called QueueId ( it is now called GetQueueId(string name)

Example code:

Controller c = new Controller() 

int queueId = c.Ipc.QueueId("RABQueue"); 

if (c.Ipc.Exists(queueId))
c.Ipc.DeleteQueue(queueId)

Comments