Article ID: 142394
Article Last Modified on 9/30/2003
SET DEFAULT TO c:\vfp
CLOSE DATA
oDe = CreateObject('de')
CLEAR ALL && remove this line, and run the program twice to
&& resolve the problem
DEFINE CLASS de AS DataEnvironment
Name = "DE"
AutoCloseTables = .F.
AutoOpenTables = .T.
InitialSelectedAlias = "customer"
ADD OBJECT oCustomer AS cursor WITH ;
Alias = 'customer', ;
Database = CURDIR() + 'samples\data\testdata.dbc', ;
CursorSource = 'customer', ;
Exclusive = .T.
PROCEDURE Init
THIS.OpenTables
ENDPROC
ENDDEFINE
Additional query words: VFoxWin
Keywords: KB142394