J
Joel
Public custom task form -
I have used the Microsoft Script Runtime to automatically create a folder in windows with this set of commands:
Dim fso, f
Set fso = CreateObject("Scripting.FileSystemObject")
Set f = fso.CreateFolder("c:\New Folder")
CreateFolderDemo = f.Path
It works great - but now, I want to create a button in my custom form that goes to that specific folder. Does anybody have any sample code? I did not see anything in the Script Runtime library that would help me out.
Thanks - Joel
I have used the Microsoft Script Runtime to automatically create a folder in windows with this set of commands:
Dim fso, f
Set fso = CreateObject("Scripting.FileSystemObject")
Set f = fso.CreateFolder("c:\New Folder")
CreateFolderDemo = f.Path
It works great - but now, I want to create a button in my custom form that goes to that specific folder. Does anybody have any sample code? I did not see anything in the Script Runtime library that would help me out.
Thanks - Joel