Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Visual Basic 6.0 并尝试检索队列的服务器。到目前为止,我发现获得此信息的唯一方法是从路径名 (oQueue.QueueInfo.PathName) (给我:vdi***\testQueue02)
我想将其精简为 vdi***\
但是我不能通过字符数来做到这一点,因为我有数百个长度不同的队列,而且服务器可能有不同的长度。
有没有办法做到这一点?
谢谢,
它总是您要检索的路径名的“第一部分”吗?
`Dim newArray() as String = Split(oQueue.QueueInfo.PathName,"\")
昏暗路径 = newArray(0) & "\"`