03-27-2008 02:30 PM
03-31-2008 10:49 AM
Hello Julia,
This connection command should throw an error if it doesn't properly connect to a DataFinder, but unfortunately it currently does not. We will work on this for future versions of DIAdem.
The best workaround is to try to connect to the remote DataFinder and then test to see if the connection was made by comparing the name of the current DataFinder to the known value of the remote DataFinder. We can then use some programming logic, like the If statement below, to control what happens if we do not properly connect.
Dim DataFinderName
DataFinderName = "RemoteDataFinder"
Navigator.Display.OpenDataFinder(DataFinderName)
If Navigator.Display.CurrDataProvider.Name <> DataFinderName Then
...
End If
03-31-2008 11:28 AM
That will work - thank you!