LoadWatch command: Difference between revisions

From m204wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:


{|
{|
|width="50%"| '''Action:'''
|width="125px"| '''Action:'''
|width="50%"|
|width="775px"|
<span class="f_Para">Restores from a local </span><span class="f_Monospace">.watch</span><span class="f_Para"> file a list of items to display in the </span><var>Watch Window</var><span class="f_Para">, as described in [[Saving and restoring Watch Window contents|Saving and restoring Watch Window contents.]] </span>
<span class="f_Para">Restores from a local </span><span class="f_Monospace">.watch</span><span class="f_Para"> file a list of items to display in the </span><var>Watch Window</var><span class="f_Para">, as described in [[Saving and restoring Watch Window contents|Saving and restoring Watch Window contents.]] </span>


Line 19: Line 19:


*As a [[Working with macro variables|macro variable]]. For example:  
*As a [[Working with macro variables|macro variable]]. For example:  
<p class="syntax"><span class="f_CodeExList">set &amp;a = &quot;foo&quot; </span><br />
<p class="syntax"><span class="f_CodeExList">set &amp;a = &quot;foo&quot; </span>
<span class="f_CodeExList">loadWatch &amp;a </span></p>
<span class="f_CodeExList">loadWatch &amp;a </span></p>



Latest revision as of 21:25, 30 January 2023

Action:

Restores from a local .watch file a list of items to display in the Watch Window, as described in Saving and restoring Watch Window contents.

Syntax:

loadWatch [watchfile]

where the command's optional argument is the name of the .watch file to be loaded. If you omit watchfile, a Windows file selection dialog box lets you select a saved .watch file when the command executes.

Otherwise, if you specify a watchfile argument (the .watch extension may be omitted), the named file is used.

To locate the watch file you identify, the Client looks in the folder that contains the JanusDebugger.exe file, by default. If the watch file cannot be found, an error is issued.

You may also specify the watch file name in these ways:

set &a = "foo"  loadWatch &a 

  • As part of an absolute file system path, which must be enclosed in quotation marks.

loadWatch "c:\temp\foo.watch" 

The saveWatch command saves the Watch Window contents to a watch file.

Client menu: Data Display > Load Watch
Introduced: Build 49