XSharpPublic icon indicating copy to clipboard operation
XSharpPublic copied to clipboard

Not all CLOSE * commands have been implemented

Open cpyrgas opened this issue 5 years ago • 0 comments

From https://www.xsharp.info/forum/public-vfp/2112-close-all-creating-a-runtime-error

FoxPro supports plenty CLOSE commands, as can be found here: http://www.yaldex.com/fox_pro_tutorial/html/510d1838-e8cb-471b-8f92-e3409ba7a271.htm

Not all are relevant, because some have to do with IDE functions, but we have some missing, only ones currently supported are:

#command CLOSE => ->( DbCloseArea() ) #command CLOSE => DbCloseArea() #command CLOSE DATABASES => DbCloseAll() #command CLOSE INDEXES => DbClearIndex()

For now I have just added CLOSE ALL that was reported as missing

#command CLOSE ALL => DbCloseAll()

cpyrgas avatar Aug 18 '20 18:08 cpyrgas