Hello Everybody.
i'm trying to list windows explorer opened windows and opened windows adress in vb6 But i have a this problem.

When i get LocationURL it return unknown characters in adress text.

Code:

Code:
public function getWindowList
Dim app, mx
Set app = CreateObject("Shell.Application")
Set mx = app.Windows
For Each st In mx
MsgBox "Title:" & st.LocationName & vbNewLine & "Adress:" & st.LocationUrl
Next
end function


it send a unknown characters like %20 ?

[Sorry For my English]

Thanks...