Sorry about not posting the code. Here it is. I get an error (Completion Code=2, ReasonCode=2033, Reason=MQRC_NO_MSG_AVAILABLE) on the second "qQue.Get" statement. It gets the first message successfully, but errors on the second message. Thanks for your help!
Dim qSes As New MQAX200.MQSession()
Dim qMgr As MQAX200.MQQueueManager
Dim qQue As MQAX200.MQQueue
Dim qMsg As MQAX200.MQMessage
Dim qGmo As MQAX200.MQGetMessageOptions
Dim cnt As Int16
Try
qMgr = qSes.AccessQueueManager(txtOutputMgr.Text)
qQue = qMgr.AccessQueue(txtOutputQ.Text, MQOO_BROWSE + MQOO_INQUIRE)
qMsg = qSes.AccessMessage()
qGmo = qSes.AccessGetMessageOptions()
For cnt = 1 To qQue.CurrentDepth
Dim Item As New ListViewItem()
If cnt = 1 Then
qGm

ptions = MQAX200.MQ.MQGMO_BROWSE_FIRST
Else
qGm

ptions = MQAX200.MQ.MQGMO_BROWSE_NEXT
End If
Next cnt
qQue.Get(qMsg, qGmo)
Catch