cCmdGetDirectory.SetValue() has the following lines:
... IF ALLTRIM(RIGHT(tcValue,1)) # "" This.cValue = ALLTRIM(tcValue) + "" ENDIF ...
It should have been:
... IF RIGHT(ALLTRIM(tcValue),1) # "" This.cValue = ALLTRIM(tcValue) + "" ENDIF ... ©2001 A Datta |