eyeshield21
Programmer
When I press a button, then all saved data on all tables
will be deleted or something like reset
tnx in advance...
will be deleted or something like reset
tnx in advance...
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
USE ("myDatabase.DBC") ALIAS DATATABLE
GO TOP
DO WHILE .NOT. EOF()
IF UPPER(OBJECTTYPE) = "TABLE"
SELECT 0
USE (DATATABLE.OBJECTNAME) EXCLUSIVE
ZAP
USE
ENDIF
SELECT DATATABLE
SKIP
ENDDO
USE
CLOSE ALL
yes...I want to clear all data in to my tables...