Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim MQsess As MQSession
Dim MQmgr As MQQueueManager
MQsess.ExceptionThreshold = 9999 ' Manual error handling
Set MQmgr = MQsess.AccessQueueManager("MYQUEUEMANAGER")
Select Case MQsess.CompletionCode
Case MQCC_OK, MQCC_WARNING
MsgBox "MQ Connect Successful!"
Case Else
MsgBox "MQ Connect Failed: " + MQsess.ReasonName
End Select