Hi,
I'm trying to open a folder that marked in the dirlistbox.
can't really do that.
I tried:
Call Shell("explorer.exe" & Dir1.path, vbNormalFocus)
any ideas? I'm using winXP sp2 btw...
thanks
Printable View
Hi,
I'm trying to open a folder that marked in the dirlistbox.
can't really do that.
I tried:
Call Shell("explorer.exe" & Dir1.path, vbNormalFocus)
any ideas? I'm using winXP sp2 btw...
thanks
Your code is correct but you need to give a space after Explorer.Exe for Example
SidCode:Call Shell("Explorer.exe " & Dir1.path, vbNormalFocus)