I would like to save the multiple choices from a listbox
into a memofield - i am using the following code but it
will only save the last selection -- does anyone know what i need to do? or is there a better way to save the choices to a table - thanks in advance, using vfp 7
LOCAL ncount
SELECT table1
APPEND BLANK
FOR ncount = 1 TO thisform.lstchkbox1.ListCount
IF thisform.lstchkbox1.aselected(ncount)
replace table1.fld1 WITH thisform.lstchkbox1.value
endif
ENDFOR
Teresa Pickering
Professional Computer Services
into a memofield - i am using the following code but it
will only save the last selection -- does anyone know what i need to do? or is there a better way to save the choices to a table - thanks in advance, using vfp 7
LOCAL ncount
SELECT table1
APPEND BLANK
FOR ncount = 1 TO thisform.lstchkbox1.ListCount
IF thisform.lstchkbox1.aselected(ncount)
replace table1.fld1 WITH thisform.lstchkbox1.value
endif
ENDFOR
Teresa Pickering
Professional Computer Services