main logo
Subject: Probably a small bug in cCmdGetDirectory (cCmdGetVal.vcx)
Author: A Datta
Posted: 2001/04/06 00:20:10
 
View Entire Thread
New Search


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
<-- Prior Message New Search Next Message -->