Hi everyone,
In the below test code I am trying to load a native path string into a folderitem easily I am searching through the folderitem methods and can’t quite find what i am looking for. Here is my code I am trying to simply load the “UserSelectedPath” string into a new Folderitem.
Dim dlg as New OpenDialog
Dim AddLocal_ICP_LogFolder as FolderItem
dlg.InitialDirectory=SpecialFolder.UserHome.Child(AddICPLogBaseDir).Child(AddICPLogSubDir1)
AddLocal_ICP_LogFolder=dlg.ShowModal()
If AddLocal_ICP_LogFolder <> Nil then
ICP_Log_NameString = dlg.Item(0).Name
UserSelectedPath = dlg.Item(0).NativePath
// Here I need to load UserSelectPath string into a new Folderitem
End if
Any pointers would be very much appreciated!
Thanks
Mike