VS VB6 VBA
Several of the features show the results of an operation in a docking window like the following:

Some operations can use a different tab (1, 2, 3...) for each execution, while others can use the same treeview all the times.
The toolbar of this window has buttons for the following actions:
- To re-execute the operation.
- To copy the results to the clipboard.
- To export the results to a text file (tab delimited).
- To locate the source that caused the result. It can be some source code of a code window, some control on a form, etc. You can also double-click on the result line or press the key if the line is selected in the treeview.
- To remove results from the treeview. You can also press the key. This feature is useful if you are using the results as a "To Do" list, removing the results that you are no longer interested in.
- To navigate the results up and down.
- To remove all the tabs except the active one.
- To remove the active tab.
- To show or hide the code elements where an occurrence has been found.
You can use also the context menus of the treeview or of a node to perform the same actions.
Remarks:
- You can navigate the items of this window using the buttons on its toolbar or even if the toolwindow is not visible using the and buttons on the toolbar, which can be associated to keyboard shortcuts. You have also the and commands (Visual Studio 2015 and higher) and the and commands (Visual Studio 2013 and lower).
- To find a code line in a code window, uses the internal line numeration of the IDE. When you add or remove code lines, such numeration becomes invalid. In that case, searches the string of the code line in the code window. Under some circumstances may find a wrong line if the code window contains the same text duplicated.
- If you have closed a result window, you can make it visible again using the proper submenu of the menu in Visual Studio, or the proper submenu of the menu of VB6 / VBA. For the same purpose you have also the , and commands (Visual Studio 2015 and higher) or the , and commands (Visual Studio 2013 and lower).
- The of a operation also has buttons to perform a new search and to show the . See the Find / Replace Text feature.
- Operations can be canceled pressing the key (which takes effect only when the operation is about to process the next file).
See also:
Keyboard Shortcuts Options
|