GetFolderName appears to return with empty value before dialog is shown; the value I select in the dialog is not getting into the variable I check.
`
'------------------------------------------------
Function GetFolderName()
returnValue = ""
WriteError("before")
returnValue = File.OpenFolderDialog("c:")
WriteError("after")
Return returnValue
EndFunction
`