cc.Initialize("CC")
cc.Show("*/*", "Choose File")
Wait For CC_Result (Success As Boolean, Dir As String, FileName As String)
If Success Then
Log(FileName)
Log(Dir)
txtLDBrowse.Text = FileName
If File.Exists(Dir, FileName) Then
Log("file exitst")
Else
Log("Can't find it")
End If
End If
Remove this check. It is not needed.
The resource is there. You cannot get its location because it might not be a file and even if it is a file you are not accessing it directly.
Remove this check. It is not needed.
The resource is there. You cannot get its location because it might not be a file and even if it is a file you are not accessing it directly.