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.
Create CURSOR test (fld1 c(10), fld2 c(10))
Brow NOWAIT
Messagebox(TRANSFORM(FCOUNT()))
Alter TABLE test DROP COLUMN fld1
Brow NOWAIT
Messagebox(TRANSFORM(FCOUNT()))
CREATE CURSOR curFinalResult (ParentTab c(8) NULL,Parentfld C(10) NULL, ;
ChildTab C(8) NULL,ChildFld C(10) NULL, ;
OrphChdKey c(10) NULL,added n(1))
tcAlias = "curFinalResult"
*!* if the cursor has col "added" (which is used for internal use) delete col
SELECT (tcAlias)
Messagebox(TRANSFORM(FCOUNT()))
IF TYPE(FIELD("added"))='N' THEN
ALTER TABLE (tcAlias) drop COLUMN added
ENDIF
Messagebox(TRANSFORM(FCOUNT()))