Links are not active on this page.
 _FOXREF System Variable

Contains the name of the application that provides the Code References tool.

_FOXREF = cFoxRefApplication

Parameters

cFoxRefApplication

Specifies the name of the Visual FoxPro program used to handle Code Reference searches.

Expand imageRemarks

By default, the _FOXREF system variable points to the following file:

HOME( ) + "FoxRef.app"

You can change this setting in the File Locations tab of the Options dialog box.

You can call this application directly as follows:

 CopyCode imageCopy Code
DO (_FOXREF) WITH oAction

oAction is an object with the following properties: Mode, Word, FileName, LineNo, Class, Proc, and hWnd. Refer to the FoxRef source in the Tools/XSource directory for more information about how these parameters should be populated.

Expand imageSee Also