There are nine new tools that have been added in the last month to the Thor Repository:
- Pack VCXs, SCXs, etc. from a project or folder
- Hack Intellisense
- Dropdown Intellisense Scripts
- Keyboard Macro Expansion
- Create SQL Data Dictionary
- Browse SQL Data Dictionary
- MRU Tables
- Toggle PEM Editor Event Handler
- Toggle Debugger
The new tool Pack VCXs, SCXs, etc. from a project or folder prompts for a project/folder and then packs all the X-files found in that project/folder.
You can bypass the prompts by invoking the Thor procedure directly:
[1] To pack files in the current project:
lcOption = ExecScript(_Screen.cThorDispatcher, 'Thor_Proc_PackProject', .T.)
[2] To pack files in a specific project:
lcOption = ExecScript(_Screen.cThorDispatcher, 'Thor_Proc_PackProject', cProjectName)
[3] To pack files in a specific folder:
lcOption = ExecScript(_Screen.cThorDispatcher, 'Thor_Proc_PackProject', cFolderName)
The new tool Hack Intellisense provides an extremely usable alternative to the native Intellisense Manager (shown below) for working with your custom Intellisense scripts.
I always found the Intellisense Manager page to be remarkably opaque, to the point where I simply gave up trying to add any new scripts to it.
The tool Hack Intellisense provides a different UI to update your FoxCode table, making everything much clearer. It also provides a number of niceties, including:
- Filtering by text or type of script (I suggest trying "User" filter)
- Sorting
- Buttons to duplicate or remove a script.
- Buffering of your changes, so that you can commit or revert as desired
- Backing up of your FoxCode table.
- Customizable signature
- "Edit" and "Test" buttons for your more intricate code (in field "data")
In the short time that this tool has been available, I have already found that I am taking advantage of these custom scripts much more frequently.
There are also plans of enhancing Hack Intellisense to facilitate sharing of scripts that we have each created over time. I will keep you posted of any developments.
Note also a related tool, DropDown Intellisense Scripts, announced last week, which helps you find and use scripts you have created without using this form.
Hack Intellisense was written by Rick Schummer, with some tweaks by Todd Landrum and myself.
Announcing a new tool, Dropdown Intellisense Scripts, to help you find and use Intellisense scripts created using the Intellisense Manager or the new tool Hack Intellisense .
This tool works like a number of other "Dropdown" tools as part of IntellisenseX. It provides a drop-down list of all of the native Intellisense scripts (including any you have added).
The filtering applies not only to the script abbreviation ("TGO" in the example below) but also its description (if any).
Selecting any item from the list will cause that item to be expanded, just as normal Intellisense would have expanded it.
There's also a new wrinkle here -- this works anywhere in a text line, unlike normal Intellisense, which only works at the beginning of a line.
The new tool Keyboard Macro Expansion is an extension to native Intellisense. Native Intellisense expands custom scripts, but only at the beginning of a line of code in the command window or code window.
Thus, when I type TGO (one of my custom Intellisense scripts) into the command window and follow it by a space, it is expanded by Intellisense to:
ExecScript(_Screen.cThorDispatcher, 'Get Option=', 'KEY', 'TOOL')
The new tool Keyboard Macro Expansion also expands Intellinsense scripts, but is not limited to doing so at the beginning of a line.
If I enter the following:
lcOption = TGO
and then call this new tool (which I have assigned to the hot key Ctrl+I), it expands to:
lcOption = ExecScript(_Screen.cThorDispatcher, 'Get Option=', 'KEY', 'TOOL')
(This works by reading the same definitions from the FoxCode table as used by native Intellisense.)
There is a second extension, provided in the plug-in for Keyboard Macro Expansion (see Plug-Ins). The plug-in provides an alternative to the FoxCode table so that you can programmatically evaluate the word that is to be substituted for and replace it as desired. The sample code in the plug-in demonstrates how
loAnything
becomes
Local loAnything as Anything of Anything.prg
IntellisenseX and Super Browse can both access field names from SQL Tables, as described in Thor TWEeT 10.
The natural way to access these field names is to use a connection string to access the SQL Server database.
Alternatively, you can create an SQL Dictionary that contains the names of all tables and their fields, and IntellisenseX will use those field names even if the SQL database is not available.
The name of the SQL Data Dictionary is entered in the Thor configuration form (and note the typo!)
The new tool MRU Tables provides a dropdown list of MRU tables; the selected table is opened with Super Browse.
Note that all Thor tools that open tables (including Super Browse, Go To Definition, and others) add any table that they open to the system MRU list for tables
This MRU dropdown list is also available from the right-click context menu of the “File Search” command button in Finder.
PEM Editor, if open, provides design time event handing. The most familiar use is evaluating the Anchor properties when resizing controls so that a form or class resizes as it would at run time. See the PEM Editor help file for more on this.
Nothing magic about this one, other than it’s handy to have a single tool that is available on a hot key.
See also History of all Thor TWEeTs and the Thor Forum.