Glossary:
Nirvana VBA : Finding a Channel
Once the session has been established with the Nirvana realm server, the session object can be used to locate an existing Nirvana Channel by specifying the channel's name.
Note that you can use the Enterprise Manager GUI to create a Nirvana Channel.
This VBA code snippet demonstrates how to find a channel (for example /eur/rates):
Dim nca As New nChannelAttributes
Call nca.setName("/eur/rates")
Set chan = sess.findChannel(nca)
