Article ID: 140225
Article Last Modified on 2/10/2000
APPEND FROM DBF("<Read-Only Cursor name>")
CREATE CURSOR Temp ( Cust_id c(5),Title c(30))
** Creates a read/write cursor called Temp
SELECT * FROM C:\VFP\SAMPLES \DATA\CUSTOMER INTO CURSOR Test
** Creates a read-only cursor called Test, open and active.
SELECT Temp && Selects the read/write cursor
APPEND FROM Test && Generates an error "File <path> does not exist"
APPEND FROM DBF("Test")
** Append records from read-only cursor into the read/write cursor.
Additional query words: VFoxWin
Keywords: KB140225