Article ID: 140516
Article Last Modified on 3/24/2000
-or-
-=-=-=-=-=-=-=-=-=-=-=-=
BEGIN CODE
-=-=-=-=-=-=-=-=-=-=-=-=
PUBLIC yy
yy = CREATEOBJECT("cc")
RETURN
DEFINE CLASS cc AS Custom
DIMENSION ee(1)
DIMENSION bb(1)
PROCEDURE Whatever
LOCAL ltemp
DO FORM C:\VFP\TEST NAME ltemp LINKED
*-- Use the following two lines to demonstrate the error.
STORE ltemp TO THIS.bb(1)
STORE ltemp TO THIS.ee(1)
*-- Use the following two lines to demonstrate the workaround.
* THIS.bb(1) = ltemp
* THIS.ee(1) = ltemp
ENDPROC
ENDDEFINE
-=-=-=-=-=-=-=-=-=-=-=-=
END CODE
-=-=-=-=-=-=-=-=-=-=-=-=
yy.Whatever()
CLEAR ALL
Additional query words: VFoxWin buglist3.00 fixlist3.00b
Keywords: kbbug kbfix KB140516