File: usrgu045.htm

package info (click to toggle)
dx 1%3A4.4.4-4
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 49,864 kB
  • sloc: ansic: 365,482; cpp: 156,594; sh: 13,801; java: 10,641; makefile: 2,373; awk: 444; yacc: 327
file content (1409 lines) | stat: -rw-r--r-- 61,832 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 3//EN">
<HTML><HEAD>
		<TITLE>User's Guide - Graphical User Interface: Menus, Options, and the Message Window</TITLE>
		<META HTTP-EQUIV="keywords" CONTENT="GRAPHICS VISUALIZATION VISUAL PROGRAM DATA
MINING">
	<meta http-equiv="content-type" content="text/html;charset=ISO-8859-1">
</HEAD><BODY BGCOLOR="#FFFFFF" link="#00004b" vlink="#4b004b">
		<TABLE width=510 border=0 cellpadding=0 cellspacing=0>
			<TR>
				<TD><IMG SRC="../images/spacer.gif" WIDTH=80 HEIGHT=1></TD>
				<TD><IMG SRC="../images/spacer.gif" WIDTH=49 HEIGHT=1></TD>
				<TD><IMG SRC="../images/spacer.gif" WIDTH=24 HEIGHT=1></TD>
				<TD><IMG SRC="../images/spacer.gif" WIDTH=100 HEIGHT=1></TD>
				<TD><IMG SRC="../images/spacer.gif" WIDTH=3 HEIGHT=1></TD>
				<TD><IMG SRC="../images/spacer.gif" WIDTH=127 HEIGHT=1></TD>
				<TD><IMG SRC="../images/spacer.gif" WIDTH=6 HEIGHT=1></TD>
				<TD><IMG SRC="../images/spacer.gif" WIDTH=50 HEIGHT=1></TD>
				<TD><IMG SRC="../images/spacer.gif" WIDTH=71 HEIGHT=1></TD>
			</TR>
			<TR>
				<TD colspan=9><IMG src="../images/flcgh_01.gif" width=510 height=24 border="0" alt="OpenDX - Documentation"></TD>
			</TR>
			<TR>
				<TD colspan=2><A href="../allguide.htm"><IMG src="../images/flcgh_02.gif" width=129 height=25 border="0" alt="Full Contents"></A></TD>
				<TD colspan=3><A href="../qikguide.htm"><IMG src="../images/flcgh_03.gif" width=127 height=25 border="0" alt="QuickStart Guide"></A></TD>
				<TD><A href="../usrguide.htm"><B><IMG src="../images/flcgh_04d.gif" width=127 height=25 border="0" alt="User's Guide"></B></A></TD>
				<TD colspan=3><A href="../refguide.htm"><IMG src="../images/flcgh_05.gif" width=127 height=25 border="0" alt="User's Reference"></A></TD>
			</TR>
			<TR>
				<TD><A href="usrgu044.htm"><IMG src="../images/flcgh_06.gif" width=80 height=17 border="0" alt="Previous Page"></A></TD>
				<TD colspan=2><A href="usrgu046.htm"><IMG src="../images/flcgh_07.gif" width=73 height=17 border="0" alt="Next Page"></A></TD>
				<TD><A href="../usrguide.htm"><IMG src="../images/flcgh_08.gif" width=100 height=17 border="0" alt="Table of Contents"></A></TD>
				<TD colspan=3><A href="usrgu043.htm"><IMG src="../images/flcgh_09.gif" width=136 height=17 border="0" alt="Partial Table of Contents"></A></TD>
				<TD><A href="usrgu080.htm"><IMG src="../images/flcgh_10.gif" width=50 height=17 border="0" alt="Index"></A></TD>
				<TD><A href="../srchindx.htm"><IMG SRC="../images/flcgh_11.gif" width=71 height=17 border="0" alt="Search"></A></TD>
			</TR>
		</TABLE>
		<H2><A NAME="HDRUNDUS4" ></A>Chapter 8. Graphical User 
Interface: Menus, Options, and the Message Window</H2>
		<P><A NAME="PToC11"></A>Partial Table-of-Contents
		<MENU>
<LI><A NAME="PToC_253" HREF="#HDRPRIMWIN">8.1 Using the Primary Window Pull-Down
Menus and Options</A>
<MENU>
<LI><A NAME="PToC_254" HREF="#HDRVPEMENU">VPE Window Menu Bar</A>
<LI><A NAME="PToC_262" HREF="#HDRCPMENU">Control Panel Menu Bar</A>
<LI><A NAME="PToC_269" HREF="#HDRIMAMENU">Image Window Menu Bar</A>
<LI><A NAME="PToC_276" HREF="#HDRCOLMEN">Colormap Menu Bar</A>
<LI><A NAME="PToC_282" HREF="#HDRMENBMEN">Menu Bar Menu Bar</A>
<LI><A NAME="PToC_288" HREF="#HDRMESSMEN">Message Window Menu Bar</A>
</MENU>
<LI><A NAME="PToC_294" HREF="usrgu046.htm#HDRDEBUG">8.2 Using the Message
Window</A>
</MENU><HR><P>
<A NAME="IDX822"></A>
<A NAME="IDX823"></A>
<A NAME="IDX824"></A>
<HR>
<H2><A NAME="HDRPRIMWIN" ></A>8.1 Using the Primary Window Pull-Down Menus and Options
</H2>
<P>
This section provides illustrations of the primary windows with
explanations of the pull-down menu options on their menu bars.
The discussions include:
<UL COMPACT>
<LI><A HREF="#HDRVPEMENU">"VPE Window Menu Bar"</A>
<LI><A HREF="#HDRCPMENU">"Control Panel Menu Bar"</A>
<LI><A HREF="#HDRIMAMENU">"Image Window Menu Bar"</A>
<LI><A HREF="#HDRCOLMEN">"Colormap Menu Bar"</A>
<LI><A HREF="#HDRMENBMEN">"Menu Bar Menu Bar"</A>
<LI><A HREF="#HDRMESSMEN">"Message Window Menu Bar"</A>
</UL>
The Sequencer and Help primary windows have no pull-down options, so they
are not discussed here.
See <A HREF="usrgu039.htm#HDRSEQUEN">"Using the Sequencer"</A> for information
about the Sequencer, and
<A HREF="usrgu038.htm#HDRONHELP">5.3 , "Using Online Help"</A> for information
on the Help window and
Help menu options.
<P>
<H3><A NAME="HDRVPEMENU" ></A>VPE Window Menu Bar</H3>
<P>
The menu bar displays the titles of seven menus:
<UL COMPACT>
<LI>File
<LI>Edit
<LI>Execute
<LI>Windows
<LI>Connection
<LI>Options
<LI>Help.
</UL>
The following sections describe the menus and their options.
For many of the menu options, one or more tools on the canvas must be
selected in order for the option to be applied.
If a menu option is grayed out, it is unavailable and cannot be
selected.
<P>
		<H4><A NAME="IDX825"></A><A NAME="HDRVPEFMEN"></A><U>VPE File Menu</U></H4>
		<P>
The <TT><STRONG>File</STRONG></TT> menu displays the options you can use to
create new
programs, view or edit previously created programs, load macros,
and save programs.
You must have write permission for a file to save changes directly to
that file.

		<P>
The following options appear on the <TT><STRONG>File</STRONG></TT> menu&#58;
<TABLE CELLPADDING="3">
<TR VALIGN="TOP"><TD><P><B>New
</B></TD><TD><P>Initializes the VPE for a new program and clears the canvas.
If you have opened Control Panels and Image windows from the VPE, they
are closed.
If a program you changed but did not save currently exists on the
canvas, a dialog box appears so you can save changes.
If you opened the VPE using <TT><STRONG>Open Macro</STRONG></TT> or
<TT><STRONG>Open Visual
Program Editor</STRONG></TT>, this option is grayed out.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Open Program...
</B></TD><TD><P>Opens an existing visual program.
A dialog box appears for you to specify the desired program name.
If a program you changed but did not save currently exists
on the canvas, a dialog box appears asking if you want
to save changes.
If you opened the VPE using <TT><STRONG>Open Macro</STRONG></TT>, this option is
grayed out.
See <A HREF="usrgu041.htm#HDRFSBOX">"File Selection Dialog Boxes"</A> for more
information.
</TD></TR>
			<TR VALIGN="TOP">
				<TD><B>Recent Programs</B></TD>
				<TD>Brings up a cascade menu with the recently opened visual programs. Select one of the choices to open the respective network.</TD>
			</TR>
			<TR VALIGN="TOP"><TD><P><B>Save Program
</B></TD><TD><P>Saves the current visual program, and associated Control Panels.
This option saves the following files:
<I>filename</I><TT><STRONG>.net</STRONG></TT> (for network;
that is, a Data Explorer visual program);
<I>filename</I><TT><STRONG>.cfg</STRONG></TT> (for configuration).
</TD></TR><TR VALIGN="TOP"><TD><P><B>Save Program As...
</B></TD><TD><P>Saves the current visual program and all associated Control
Panels under a
name you type into the dialog box.
This option saves the following files:
<I>filename</I><TT><STRONG>.net</STRONG></TT> (for network; that is,
a Data Explorer visual program),
<I>filename</I><TT><STRONG>.cfg</STRONG></TT> (for configuration).
</TD></TR><TR VALIGN="TOP"><TD><P><B>Program Settings
</B></TD><TD><P>Brings up a cascade menu with two choices:
<UL COMPACT>
<LI><TT><STRONG>Save As</STRONG></TT> saves the current settings for the visual
program
(e.g., window placement, interaction mode, camera viewpoint,
interactor setup, etc.
The settings are saved in a <TT><STRONG>.cfg</STRONG></TT> file.
<LI><TT><STRONG>Load</STRONG></TT> loads previously saved settings from a
<TT><STRONG>.cfg</STRONG></TT> file.
</UL>
</TD></TR><TR VALIGN="TOP"><TD><P><B>Load Macro...
</B></TD><TD><P>Loads a macro and makes it available in a tools palette.
A file selection dialog box appears for you to specify the desired
macro file name.
See also <A HREF="usrgu044.htm#HDRLODMAC">"Loading Macros"</A>
</TD></TR><TR VALIGN="TOP"><TD><P><B>Load Module Definition(s)...
</B></TD><TD><P>Loads a module definition and makes it available in a tool
palette.
A file selection dialog box appears for you to specify the desired
module file name.
The executable you are using must either include this module, or this
module definition must refer to an outboard or run-time loadable
module.
See <A HREF="usrgu048.htm#HDRVFM">9.2 , "Loading and Using Outboard and
Runtime-Loadable Modules"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Print Program...
</B></TD><TD><P>Prints or saves to a file a representation of a visual program.
<P>
If the <TT><STRONG>Label Set Input</STRONG></TT> toggle button is activated,
then any
parameter value(s) set in the configuration module&#39;s Configuration
dialog box will also be printed next to the corresponding
tab(s), if scale allows.
<P>
</TD></TR><TR VALIGN="TOP"><TD><P><B>Quit &nbsp;or&nbsp; Close
</B></TD><TD><P>Closes all windows created from the current VPE window.
If you have made changes since the last save, a dialog box appears so
you can save changes.
If you opened the VPE from the Image window or with the <TT><STRONG>Open
Macro</STRONG></TT> option, <TT><STRONG>Close</STRONG></TT> appears as an option
instead
of <TT><STRONG>Quit</STRONG></TT>.
<TT><STRONG>Quit</STRONG></TT> is grayed out if the
<TT><STRONG>Execute</STRONG></TT> menu title is
highlighted.
You must select the <TT><STRONG>End Execution</STRONG></TT> option in the
<TT><STRONG>Execute</STRONG></TT> pull-down menu;
or if the Sequencer is running, you must stop it or pause
before quitting.
</TD></TR></TABLE>
<P>
<H4><A NAME="HDRVPEEMEN"></A><U>VPE Edit Menu</U></H4>
<A NAME="IDX826"></A>
<P>
The <TT><STRONG>Edit</STRONG></TT> menu lists options for manipulating tools
on the canvas.
<TABLE CELLPADDING="3">
			<TR VALIGN="TOP">
				<TD><B>Undo</B></TD>
				<TD>Reverts the last performed action.</TD>
			</TR>
			<TR VALIGN="TOP"><TD><P><B>Configuration...
</B></TD><TD><P>Displays a Configuration dialog box for setting and changing
the values of the selected tool.
See <A HREF="usrgu041.htm#HDRUCB">"Entering Values in a Configuration Dialog
Box"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Find tool...
</B></TD><TD><P>Opens a dialog box that lists the tools in the visual network
displayed on the canvas.
Double-click on the tool name (or type the name in the
<TT><STRONG>Selection</STRONG></TT> field) to highlight the
corresponding icon in the canvas.
If the icon falls outside the canvas, the canvas will automatically
scroll to display the part of the network in which it lies.
<P>
See <A HREF="usrgu041.htm#HDRLTFTDB">"Locating Tools: The Find Tool Dialog
Box"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Input/Output Tabs
</B></TD><TD><P>Brings up a cascade menu with the following options:
<TABLE CELLPADDING="3">
<TR VALIGN="TOP"><TD><P><B>Add Input Tab
</B></TD><TD><P>Adds input tabs to the selected tool.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Remove Input Tab
</B></TD><TD><P>Removes input tabs from the selected tool.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Add Output Tab
</B></TD><TD><P>Adds output tabs to the selected tool.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Remove Output Tab
</B></TD><TD><P>Removes output tabs from the selected tool.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Reveal All Tabs
</B></TD><TD><P>Reveals all tabs of the selected tool.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Hide All Tabs
</B></TD><TD><P>Hides all unconnected tabs of the selected tool.
</TD></TR></TABLE>

<A NAME="SPTSCOPE"></A>
</TD></TR><TR VALIGN="TOP"><TD><P><B>Assign Get/Set Scope
</B></TD><TD><P>Brings up a cascade menu with the following options:
<TABLE CELLPADDING="3">
<TR VALIGN="TOP"><TD><P><B>Convert All Modules
</B></TD><TD><P>Brings up a dialog which allows you to
interactively change all of the Get and Set tools in your visual
program to either the Local or Global variety.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Set Selected Gets/Sets Local
</B></TD><TD><P>Sets all of the selected Get and Set modules to the Local
variety
</TD></TR><TR VALIGN="TOP"><TD><P><B>Set Selected Gets/Sets Global
</B></TD><TD><P>Sets all of the selected Get and Set modules to the Global
variety
</TD></TR></TABLE>
For additional information on the Get/Set tools see <A
HREF="usrgu031.htm#HDRSTATES">4.6 , "Preserving Explicit State"</A>.

</TD></TR><TR VALIGN="TOP"><TD><P><B>Select/Deselect Tools
</B></TD><TD><P>Brings up a cascade menu with the following options:
<TABLE CELLPADDING="3">
<TR VALIGN="TOP"><TD><P><B>Select All
</B></TD><TD><P>Selects all tools on the canvas.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Select Connected
</B></TD><TD><P>Selects all tools connected to the currently selected tool.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Select Unconnected
</B></TD><TD><P>Selects all tools not connected to the currently selected tool.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Select Upward
</B></TD><TD><P>Selects all tools (modules) that directly or indirectly provide
input to the selected tool.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Select Downward
</B></TD><TD><P>Selects all tools (modules) that directly or indirectly accept
output from the currently selected tool.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Deselect All
</B></TD><TD><P>Deselects all selected tools.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Select Unselected
</B></TD><TD><P>Selects all unselected tools.
</TD></TR></TABLE>
</TD></TR><TR VALIGN="TOP"><TD><P><B>Output Cacheability
</B></TD><TD><P>Brings up a cascade menu with the following options:
<TABLE CELLPADDING="3">

<TR VALIGN="TOP"><TD><P><B>Optimize Cacheability
</B></TD><TD><P>Uses a heuristic for automatically selecting the optimal cache
setting
for each module in a visual program.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Set Output Cacheability
</B></TD><TD><P>Brings up a cascade menu with the following options:
<TABLE CELLPADDING="3">
<TR VALIGN="TOP"><TD><P><B>Cache All Results
</B></TD><TD><P>Caches all results of the selected tool(s)
</TD></TR><TR VALIGN="TOP"><TD><P><B>Cache Last Result
</B></TD><TD><P>Caches only the last result of the selected tool(s)
</TD></TR><TR VALIGN="TOP"><TD><P><B>Cache No Results
</B></TD><TD><P>Caches no results.
</TD></TR></TABLE>
</TD></TR><TR VALIGN="TOP"><TD><P><B>Show Output Cacheability
</B></TD><TD><P>Brings up a cascade menu with the following options:
<TABLE CELLPADDING="3">
<TR VALIGN="TOP"><TD><P><B>All Results
</B></TD><TD><P>Highlights all tools for which all results are cached
</TD></TR><TR VALIGN="TOP"><TD><P><B>Last Result
</B></TD><TD><P>Highlights all tools for which only the last result is cached
</TD></TR><TR VALIGN="TOP"><TD><P><B>No Results
</B></TD><TD><P>Highlights all tools for which no results are cached
</TD></TR></TABLE>
</TD></TR></TABLE>
See <A HREF="usrgu062.htm#HDRCCTRLEX">"Cache Control: Executive"</A>.


</TD></TR><TR VALIGN="TOP"><TD><P><B>Delete
</B></TD><TD><P>Deletes the selected tools and connections to other tools.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Cut
</B></TD><TD><P>Deletes the selected tools but places them into
a buffer so they can be pasted.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Copy
</B></TD><TD><P>Copies the selected tools and places them into a buffer so they
can be pasted.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Paste
</B></TD><TD><P>Pastes the tools from the buffer into a selected location
</TD></TR><TR VALIGN="TOP"><TD><P><B>Add Annotation
</B></TD><TD><P>Adds annotation text to the canvas (see <A
HREF="usrgu041.htm#HDRVPEANOT">"Adding Annotation to a Visual Program"</A>).

</TD></TR><TR VALIGN="TOP"><TD><P><B>Insert Visual Program
</B></TD><TD><P>Brings up a file selection dialog box for selecting a visual
program.
The selected program will be inserted to the right of all the tools in
the current program.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Create Macro
</B></TD><TD><P>Creates a macro from the currently selected tools.
See <A HREF="usrgu044.htm#HDRCREMAC">"Creating Macros"</A> for more information.

</TD></TR><TR VALIGN="TOP"><TD><P><B>Page
</B></TD><TD><P>Brings up a cascade menu with the following options:
<TABLE CELLPADDING="3">
<TR VALIGN="TOP"><TD><B>Create Empty Page
</B></TD><TD>creates an empty page
</TD></TR><TR VALIGN="TOP"><TD><B>Create with Selected Tools
</B></TD><TD>creates a new page containing the currently selected tools
</TD></TR><TR VALIGN="TOP"><TD><B>Delete
</B></TD><TD>deletes the currently displayed page (available only if there is
more than one page)
</TD></TR><TR VALIGN="TOP"><TD><B>Configure
</B></TD><TD>brings up a dialog which allows you to specify the name of the
page,
specify whether or not the page is included in PostScript output
(through the Print Program option of the File menu),
and specify the tab position of the page.
</TD></TR></TABLE>

</TD></TR>
			<TR VALIGN="TOP">
				<TD><B>Java</B></TD>
				<TD>
					<P>Brings up a cascade menu available only when the network has been saved with the following options:</P>
					<TABLE CELLPADDING="3">
						<TR VALIGN="TOP">
							<TD><B>Add Tools</B></TD>
							<TD>Adds a page to the network named &quot;java tools&quot; and sets up the control panels and Image modules to work with the Java applets.</TD>
						</TR>
						<TR VALIGN="TOP">
							<TD><B>Remove Tools</B></TD>
							<TD>Removes the &quot;java tools&quot; and reverts the network back to a non-Java Explorer based network.</TD>
						</TR>
						<TR VALIGN="TOP">
							<TD><B>Save As Webpage</B></TD>
							<TD>Saves a minimum of four new files within the same directory as the network that are used to construct the Java Explorer based network.</TD>
						</TR>
						<TR VALIGN="TOP">
							<TD><B>Net To Applet</B></TD>
							<TD>Save just the network as an applet without updating all the other webpage files.</TD>
						</TR>
					</TABLE>
					<P>See <A HREF="usrgu059.htm">11, </A><A HREF="usrgu059.htm">&quot;Java Explorer&quot;</A> for more information.</P>
				</TD>
			</TR>
			<TR VALIGN="TOP"><TD><P><B>Macro Name ...
</B></TD><TD><P>Displays a Configuration dialog box for naming a
visual program as a macro.
See <A HREF="usrgu044.htm#HDRCREMAC">"Creating Macros"</A> for more information.
</TD></TR>
			<TR VALIGN="TOP">
				<TD><B>Layout Graph</B></TD>
				<TD>Rearranges a network on the current active page using a graph algorithm to organize its layout.</TD>
			</TR>
			<TR VALIGN="TOP"><TD><P><B>Execution Groups...
</B></TD><TD><P>Displays a dialog box for creating and modifying execution
groups.
(See <A HREF="usrgu047.htm#HDRDISTCMP">9.1 , "Using Distributed
Computation"</A>.)
</TD></TR><TR VALIGN="TOP"><TD><P><B>Comment ...
</B></TD><TD><P>Displays a dialog box for documenting the function of a visual
program or
macro.
(See <A HREF="usrgu041.htm#HDRADCOM">"Adding Comments to a Visual Program"</A>.)
</TD></TR></TABLE>
<P>
<H4><A NAME="HDRVPEXMEN"></A><U>VPE Execute Menu</U></H4>
<A NAME="IDX827"></A>
You can use the <TT><STRONG>Execute</STRONG></TT> menu to execute the current
visual program in various ways.
This menu is the same as the <TT><STRONG>Execute</STRONG></TT> menus in
control panels, the Image window, the Colormap Editor, and the
Message window.
The options in the <TT><STRONG>Execute</STRONG></TT> pull-down menu are grayed
out when there is no connection to the server.
<P>
The Execute menu lists the following options&#58;
<TABLE CELLPADDING="3">
<TR VALIGN="TOP"><TD><P><B>Execute Once
</B></TD><TD><P>Causes the visual program to execute only once, using current
values and
configuration settings.
Subsequent interactor value changes do not cause program reevaluation
until this command is reexecuted.
This option is grayed out if the Sequencer is running.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Execute on Change
</B></TD><TD><P>Causes the visual program to execute each time a value or
configuration
setting is changed.
If you are changing values faster than Data Explorer can generate images, the
program executes as fast as possible, always using the current
settings at the time an execution cycle begins.
This option is grayed out if the Sequencer is running.
</TD></TR><TR VALIGN="TOP"><TD><P><B>End Execution
</B></TD><TD><P>Causes the visual program to stop executing.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Sequencer
</B></TD><TD><P>Causes the Sequencer to display.
This option is grayed out if there is no Sequencer in the visual program.
While the Sequencer is running, you can change interactors, and those
changes are reflected in subsequent frames.
You can pause the Sequencer on a particular frame and explore that frame
using the <TT><STRONG>Execute Once</STRONG></TT> and <TT><STRONG>Execute on
Change</STRONG></TT>
options.
<P>
<A HREF="usrgu039.htm#HDRSEQUEN">"Using the Sequencer"</A> discusses the
Sequencer in detail.
</TD></TR></TABLE>
<P>
While the visual program is executing, the <TT><STRONG>Execute</STRONG></TT>
label in
the menu bar is highlighted and remains so until execution
is completed.
If <TT><STRONG>Execute on Change</STRONG></TT> is selected, the
<TT><STRONG>Execute</STRONG></TT> label in the menu bar is
highlighted with one color during execution, and
another color the rest of the time.
<P>
For more information, see <A HREF="usrgu039.htm#HDREXVP">5.4 , "Executing a
Visual Program"</A>.
<P>
<H4><A NAME="HDRVPEWMEN"></A><U>VPE Windows Menu</U></H4>
<A NAME="IDX828"></A>
<P>
The <TT><STRONG>Windows</STRONG></TT> menu allows a user to open and create
control
panels, open previously defined macros included in the visual program, open
the Image window, and open the Colormap Editor.
<P>
These options appear on the <TT><STRONG>Windows</STRONG></TT> menu&#58;
<TABLE CELLPADDING="3">
<TR VALIGN="TOP"><TD><P><B>New Control Panel
</B></TD><TD><P>Opens a new Control Panel.
If you have selected one or more interactor stand-ins on the VPE
canvas, the new Control Panel contains those interactors.
If you have not selected anything on the canvas, the panel is empty.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Open Selected Control Panel(s)
</B></TD><TD><P>Opens all Control Panels containing selected (highlighted)
interactor stand-ins.
Control Panels that are already open are unaffected.
<P>
</TD></TR><TR VALIGN="TOP"><TD><P><B>Open All Control Panels
</B></TD><TD><P>Opens all the Control Panels for the current visual program.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Open Control Panel by Name
</B></TD><TD><P>Opens a cascade menu with the names of the existing control
panels.
Using this, you can open a particular control panel.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Open Selected Macro(s)
</B></TD><TD><P>Opens a VPE window containing the expanded representation of the
selected macro icon.
From this newly opened window, you can open the macros contained in the
currently opened macro.
You can repeat this operation until only modules are contained in the
window.
See <A HREF="usrgu044.htm#HDRUMACVP">"Using Macros in a Visual Program"</A> for
more information.
This options is grayed out if no macro is selected.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Open Selected Image Window(s)
</B></TD><TD><P>Opens an Image window for each selected Display or Image tool
icon
in the current visual program.
This option is grayed out if no Display or Image icons are selected.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Open Selected Colormap Editor(s)
</B></TD><TD><P>Opens a window where you can map colors and opacities to data
values,
the results of which are displayed in the visual image.
This option is grayed out if a Colormap icon is not selected.
Features of the Colormap Editor allow you to&#58;
<UL>
<P><LI>Control the range of data values over which the mapping occurs.
<P><LI>Select the colors and opacities that are mapped to that
range of values.
</UL>
The Colormap Editor is discussed in detail in <A
HREF="usrgu042.htm#HDRCOLMAPE">6.3 , "Using the Colormap Editor"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Open Message Window
</B></TD><TD><P>Opens a window where you can access error and warning messages
and
working information about your execution.
See <A HREF="usrgu046.htm#HDRDEBUG">8.2 , "Using the Message Window"</A>.
</TD></TR></TABLE>
<P>
<H4><A NAME="HDRVPECMEN"></A><U>VPE Connection Menu</U></H4>
<A NAME="IDX829"></A>
<P>
<P>
The <TT><STRONG>Connection</STRONG></TT> menu lists the following
options&#58;
<TABLE CELLPADDING="3">
<TR VALIGN="TOP"><TD><P><B>Start Server
</B></TD><TD><P>Connects the user workstation to the server.
For more information, see <A HREF="usrgu049.htm#HDRCONSERV">9.3 , "Connecting to
the Server"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Disconnect from Server
</B></TD><TD><P>Disconnects the user workstation from the server.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Reset Server
</B></TD><TD><P>Flushes the cache, forcing the visual program to  reaccess the
data
on the server the next time it executes.
<P>
See <A HREF="usrgu049.htm#HDRRSTSRV">"Resetting the Server"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Execution Group Assignment...
</B></TD><TD><P>Displays a dialog box that allows you to assign execution groups
to specific machine host names.
<P>
See <A HREF="usrgu047.htm#HDRASXGRP">"Assigning Execution Groups to
Workstations"</A>.
</TD></TR></TABLE>
<P>
<H4><A NAME="HDRVPEOMEN"></A><U>VPE Options Menu</U></H4>
<A NAME="IDX830"></A>
<P>
The <TT><STRONG>Options</STRONG></TT> menu allows you to customize tools and
window
features.
<P>
The <TT><STRONG>Options</STRONG></TT> menu lists the following options&#58;
<TABLE CELLPADDING="3">
<TR VALIGN="TOP"><TD><P><B>Tool Palettes
</B></TD><TD><P>Toggles between displaying the tool palettes and not displaying
them.
You can also use the <TT><STRONG>Ctrl&#43;T</STRONG></TT> accelerator key.
</TD></TR>
			<TR VALIGN="TOP">
				<TD><B>Prevent Overlap</B></TD>
				<TD>Toggles the option where dropping a module in the same space as an existing module ignores the request. This stops the feature where dropping a module will move an existing module out of the way.</TD>
			</TR>
			<TR VALIGN="TOP"><TD><P><B>Control Panel Access...
</B></TD><TD><P>Allows you to specify which controls panels and control panel
groups are accessible from the VPE.
(See <A HREF="usrgu043.htm#HDRCPA">"Control Panel Access, Groups, and
Hierarchies"</A>.)
</TD></TR><TR VALIGN="TOP"><TD><P><B>Control Panel Groups...
</B></TD><TD><P>Displays a dialog box that allows you to create, modify and
delete
control panel groups.
(See <A HREF="usrgu043.htm#HDRCPA">"Control Panel Access, Groups, and
Hierarchies"</A>.)
</TD></TR><TR VALIGN="TOP"><TD><P><B>Grid ...
</B></TD><TD><P>Allows you to select the grid type you want to use on the
canvas.
A dialog box displays the choices.
See <A HREF="usrgu041.htm#HDRWINDSET">"Customizing the VPE Window"</A> for more
information about the
<TT><STRONG>Grid...</STRONG></TT> option.
</TD></TR></TABLE>
<P>
<H4><A NAME="HDRVPEHMEN"></A><U>Help Menu</U></H4>
<P>
The options in this menu are discussed in <A HREF="usrgu038.htm#HDRONHELP">5.3 ,
"Using Online Help"</A>.
<P>
<H3><A NAME="HDRCPMENU" ></A>Control Panel Menu Bar</H3>
<P>
The Control Panel menu bar (<A HREF="usrgu043.htm#FIGUSEA">Figure 60</A>)
displays the names of
six menus you can use within the Control Panel window:
<UL COMPACT>
<LI>File
<LI>Edit
<LI>Execute
<LI>Panels
<LI>Options
<LI>Help.
</UL>
The following sections describe the options available on these menus.
<P>
<H4><A NAME="HDRCPFMEN"></A><U>Control Panel File Menu</U></H4>
<A NAME="IDX831"></A>
<P>
The <TT><STRONG>File</STRONG></TT> menu lists the following options:
<TABLE CELLPADDING="3">
<TR VALIGN="TOP"><TD><P><B>Close
</B></TD><TD><P>Closes the current Control Panel.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Close All Control Panels
</B></TD><TD><P>Closes all control panels.
</TD></TR></TABLE>
<P>
<H4><A NAME="HDRCPEMEN"></A><U>Control Panel Edit Menu</U></H4>
<A NAME="IDX832"></A>
The <TT><STRONG>Edit</STRONG></TT> menu lists the options you can use to edit
and
delete interactors in the Control Panel.
<TABLE CELLPADDING="3">
<TR VALIGN="TOP"><TD><P><B>Set Style...
</B></TD><TD><P>Allows you to change the type of selected interactors on the
layout area.
See <A HREF="usrgu043.htm#HDRCHINST">"Changing the Interactor Style"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Set Dimensionality...
</B></TD><TD><P>Allows you to set the dimensionality of the selected interactors
in
the layout area.
See <A HREF="usrgu043.htm#HDRCHINDI">"Changing the Interactor
Dimensionality"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Set Layout...
</B></TD><TD><P>Allows you to set the layout of the selected interactors in the
layout area.
You can specify horizontal or vertical.
See <A HREF="usrgu043.htm#HDRCHINLA">"Changing the Interactor Layout"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Set Attributes...
</B></TD><TD><P>for integer, scalar, and vector values, allows you to specify:
<UL>
<P><LI>The minimum and maximum limits for the interactor values
<P><LI>The number of decimal places displayed for scalar values
<P><LI>The increment of change in value when using stepper, slider, dial,
or text style interactors
<P><LI>Whether the specified increment applies to all instances of the
interactor or is local to the current interactor.
</UL>
Vector interactors allow you to modify these attributes for each
component of the vector.
Specify that component to modify by changing the Component field
at the top of the vector interactor&#39;s <TT><STRONG>Set
Attributes</STRONG></TT> dialog box.
<P>
You can also open the <TT><STRONG>Set Attributes</STRONG></TT> window by double
clicking on the border area of the interactor inside the
Control Panel.
<P>
See <A HREF="usrgu043.htm#HDRSETATDB">"Setting Interactor Attributes"</A> for
detailed information.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Set Label
</B></TD><TD><P>Allows you to change the title of the interactor.
See <A HREF="usrgu043.htm#HDRCHINLB">"Changing the Label on the Interactor"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Delete
</B></TD><TD><P>Deletes selected interactors.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Add Element
</B></TD><TD><P>Brings up a cascade menu with the choices
<TT><STRONG>Label</STRONG></TT>
and <TT><STRONG>Separator</STRONG></TT>.
These can then be added to the control panel.
See <A HREF="usrgu043.htm#HDRCPADBS">"Control Panels as Dialog Boxes"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Add Selected Interactor(s)
</B></TD><TD><P>Adds an interactor to the Control Panel for each stand-in that
is
selected in the VPE window.
See <A HREF="usrgu043.htm#HDRADIN2CP">"Adding Interactors to an Existing Control
Panel"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Show Selected Interactor(s)
</B></TD><TD><P>Shows the relation between a selected interactor stand-in in the
VPE and the interactors in the Control Panels.
See <A HREF="usrgu043.htm#HDRLOCSTI">"Locating Interactor Stand-ins"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Show Selected Tool
</B></TD><TD><P>Shows the relation between a selected interactor stand-in in a
control panel and interactor stand-ins in the VPE.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Comment...
</B></TD><TD><P>Opens a dialog box with a text field.
You can use this text field to document the use of the Control Panel.
See <A HREF="usrgu043.htm#HDRADCM2CP">"Adding Comments to a Control Panel"</A>.
</TD></TR></TABLE>
<P>
<H4><A NAME="HDRCPXMEN"></A><U>Control Panel Execute Menu</U></H4>
<A NAME="IDX833"></A>
<P>
This execute menu is identical to that of the Visual Program Editor window.
See <A HREF="#HDRVPEXMEN">"VPE Execute Menu"</A> for descriptions of the
Execute options.
See also <A HREF="usrgu039.htm#HDREXVP">5.4 , "Executing a Visual Program"</A>.
<P>
<H4><A NAME="HDRCPPMEN"></A><U>Control Panel Panels Menu</U></H4>
<A NAME="IDX834"></A>
<P>
The <TT><STRONG>Panels</STRONG></TT> menu allows you to open one or all existing
control panels.
<P>
The <TT><STRONG>Panels</STRONG></TT> menu has the following options:
<TABLE CELLPADDING="3">
<TR VALIGN="TOP"><TD><P><B>Open All Control Panels
</B></TD><TD><P>Opens all existing control panels.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Open Control Panel by Name
</B></TD><TD><P>Opens a cascade menu, from which you can select the name of the
control panel to open.
</TD></TR></TABLE>
<P>
<H4><A NAME="HDRCONPOP"></A><U>Control Panel Options Menu</U></H4>
<A NAME="IDX835"></A>
<P>
The <TT><STRONG>Options</STRONG></TT> menu allows you to customize the Control
Panel.
<P>
The <TT><STRONG>Options</STRONG></TT> menu contains the following
options&#58;
<TABLE CELLPADDING="3">
<TR VALIGN="TOP"><TD><P><B>Change Control Panel Name...
</B></TD><TD><P>Displays a dialog box where you can enter a new name for the
current
Control Panel.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Control Panel Access...
</B></TD><TD><P>Allows you to specify which control panels and control panel
groups
are accessible from the Control Panel&#39;s <TT><STRONG>Open All Control
Panels</STRONG></TT> option under the <TT><STRONG>Windows</STRONG></TT> menu.
See <A HREF="usrgu043.htm#HDRRCPA">"Restricting Control Panel Access"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Grid...
</B></TD><TD><P>Allows you to select the grid type you want to use on the layout
area.
A dialog box displays the choices.
See <A HREF="usrgu041.htm#HDRWINDSET">"Customizing the VPE Window"</A> for more
information about the
<TT><STRONG>Grid...</STRONG></TT> option.
See <A HREF="usrgu043.htm#HDRCCPGRID">"Changing the Alignment of Interactors in
the Control Panel"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Dialog Style
</B></TD><TD><P>Changes a control panel to "dialog style" (see
<A HREF="usrgu043.htm#HDRCPADBS">"Control Panels as Dialog Boxes"</A>).
</TD></TR><TR VALIGN="TOP"><TD><P><B>Startup Control Panel
</B></TD><TD><P>Allows you to specify whether the Control Panel is opened
automatically when Data Explorer is started with the Image window
or menu bar
as the anchor window.
See <A HREF="usrgu043.htm#HDRSTARTCP">"Specifying a Startup Control Panel"</A>.
</TD></TR></TABLE>
<P>
<H4><U>Help Menu</U></H4>
<P>
The options in this menu are discussed in <A HREF="usrgu038.htm#HDRONHELP">5.3 ,
"Using Online Help"</A>.
<P>
<H3><A NAME="HDRIMAMENU" ></A>Image Window Menu Bar</H3>
<P>
The Image window menu bar displays the names of six menus:
<A NAME="IDX836"></A>
<UL COMPACT>
<LI>File
<LI>Execute
<LI>Windows
<LI>Connection
<LI>Options
<LI>Help.
</UL>
<P>
<H4><A NAME="HDRIMWINFM"></A><U>Image Window File Menu</U></H4>
<A NAME="IDX837"></A>
The <TT><STRONG>File</STRONG></TT> menu displays the options you use to open,
save, and
close visual programs, and load macros.
<P>
The <TT><STRONG>File</STRONG></TT> menu lists the following options&#58;
<TABLE CELLPADDING="3">
<TR VALIGN="TOP"><TD><P><B>Open ...
</B></TD><TD><P>Displays a dialog box for specifying a file path name to load a
visual program or, if the path name ends in a directory, to show a list of
visual programs in that directory.
To select a program, click on the name.
See <A HREF="usrgu041.htm#HDRFSBOX">"File Selection Dialog Boxes"</A> for more
information.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Save Program
</B></TD><TD><P>Saves the current visual program and associated Control Panels.
This option saves the following files:
<I>filename</I><TT><STRONG>.net</STRONG></TT> (for network; that is,
a Data Explorer visual program) and
<I>filename</I><TT><STRONG>.cfg</STRONG></TT> (for configuration).
This option is grayed out unless Data Explorer was started in <TT>-image</TT>
mode.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Save Program As...
</B></TD><TD><P>Saves the current visual program and all associated Control
Panels under a
name you type in the dialog box.
This option saves the following files:
<I>filename</I><TT><STRONG>.net</STRONG></TT> (for network; that is,
a Data Explorer visual program) and
<I>filename</I><TT><STRONG>.cfg</STRONG></TT> (for configuration).
This option is grayed out unless Data Explorer was started in <TT>-image</TT>
mode.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Program Settings
</B></TD><TD><P>Brings up a cascade menu with two choices:
<UL COMPACT>
<LI><TT><STRONG>Save As</STRONG></TT> saves the current settings for the visual
program
(e.g., window placement, interaction mode, camera viewpoint,
interactor setup, etc.
The settings are saved in a <TT><STRONG>.cfg</STRONG></TT> file.
<LI><TT><STRONG>Load</STRONG></TT> loads previously saved settings from a
<TT><STRONG>.cfg</STRONG></TT> file.
</UL>
</TD></TR><TR VALIGN="TOP"><TD><P><B>Load Macro...
</B></TD><TD><P>Loads a macro for use, making it available in the tool palette.
A file selection dialog box appears for you to specify the desired macro
file name.
See <A HREF="usrgu044.htm#HDRLODMAC">"Loading Macros"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Load Module Definition(s)...
</B></TD><TD><P>Loads a module definition for use, making it available in the
tool
palette.
A file selection dialog box appears for you to specify the desired
module file name.
The executable you are using must also include this module.
See <A HREF="usrgu048.htm#HDRVFM">9.2 , "Loading and Using Outboard and
Runtime-Loadable Modules"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Save Image...
</B></TD><TD><P>Displays a dialog box that allows you to save the image and
specify
the format, layout, resolution, and page size of the image.
See <A HREF="usrgu040.htm#HDRSAVIMGS">"Saving an Image"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Print Image...
</B></TD><TD><P>Displays a dialog box that allows you to specify the format,
layout,
resolution, and page size of the print.
See <A HREF="usrgu040.htm#HDRPRTIMGS">"Printing an Image"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Close &nbsp;or&nbsp; Quit
</B></TD><TD><P>Closes the Image window.
If you opened the Image window from the VPE, <TT><STRONG>Close</STRONG></TT>
appears
is the option.
If you started Data Explorer with the Image window as the anchor,
<TT><STRONG>Quit</STRONG></TT> is the option.
<TT><STRONG>Quit</STRONG></TT> is grayed out if the
<TT><STRONG>Execute</STRONG></TT> menu title is
highlighted.
You must select the <TT><STRONG>End Execution</STRONG></TT> option in the
<TT><STRONG>Execute</STRONG></TT> pull-down menu; or if the Sequencer is
running, you must stop it or pause before quitting.
</TD></TR></TABLE>
<P>
<H4><U>Image Window Execute Menu</U></H4>
<A NAME="IDX838"></A>
<P>
This execute menu is identical to that of the Visual Program Editor window.
See <A HREF="#HDRVPEXMEN">"VPE Execute Menu"</A> for descriptions of the
Execute options.
See also <A HREF="usrgu039.htm#HDREXVP">5.4 , "Executing a Visual Program"</A>.
<P>
<H4><A NAME="HDRIMWINWM"></A><U>Image Window Windows Menu</U></H4>
<A NAME="IDX839"></A>
<P>
The <TT><STRONG>Windows</STRONG></TT> menu allows you to open
a VPE window containing the program layout or the Control Panels
associated with the visual program.
All windows created from this Image window become its children.
Quitting the Image window causes all of its child windows to close.
Before the window closes, a dialog box appears to request confirmation.
<P>
The <TT><STRONG>Windows</STRONG></TT> menu offers the following options&#58;
<TABLE CELLPADDING="3">
<TR VALIGN="TOP"><TD><P><B>Open Visual Program Editor
</B></TD><TD><P>Opens a VPE window containing the current visual program.
This option is disabled if you have not loaded a visual program or if the VPE is
the anchor window.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Open All Control Panels
</B></TD><TD><P>Opens all the Control Panels and macro Control Panels for the
current visual program unless the macro Control Panels are already
contained in another Control Panel.
This option is disabled if you have not loaded a visual program.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Open Control Panel by Name
</B></TD><TD><P>Opens a cascade menu, from which you can select the name of the
control panel to open.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Open All Colormap Editors
</B></TD><TD><P>Opens all the Colormap Editors for the current visual
program.
<P>
See <A HREF="usrgu042.htm#HDRCOLMAPE">6.3 , "Using the Colormap Editor"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Open Message Window
</B></TD><TD><P>Opens the Message Window that displays error and warning
information
about your execution.
<P>
See <A HREF="usrgu046.htm#HDRDEBUG">8.2 , "Using the Message Window"</A>.
</TD></TR></TABLE>
<P>
<H4><U>Image Window Connection Menu</U></H4>
<A NAME="IDX840"></A>
<P>
The <TT><STRONG>Connection</STRONG></TT> menu allows you to monitor and control
communication functions between the workstation and the server.
<P>
The <TT><STRONG>Connection</STRONG></TT> menu lists the following
options&#58;
<TABLE CELLPADDING="3">
<TR VALIGN="TOP"><TD><P><B>Start Server...
</B></TD><TD><P>Connects the user workstation to the server.
For more information, see <A HREF="usrgu049.htm#HDRCONSERV">9.3 , "Connecting to
the Server"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Disconnect from Server
</B></TD><TD><P>Disconnects the user workstation from the server.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Reset Server
</B></TD><TD><P>Flushes the cache, forcing the visual program to reaccess the
data on the
server the next time it executes.
<P>
See <A HREF="usrgu049.htm#HDRRSTSRV">"Resetting the Server"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Execution Group Assignment...
</B></TD><TD><P>Displays a dialog box that allows you to assign execution groups
to specific machine host names.
<P>
See <A HREF="usrgu047.htm#HDRASXGRP">"Assigning Execution Groups to
Workstations"</A>.
</TD></TR></TABLE>
<P>
<H4><A NAME="HDRIMWINOM"></A><U>Image Window Options Menu</U></H4>
<A NAME="IDX841"></A>
<P>
The <TT><STRONG>Options</STRONG></TT> menu provides the following options,
which are available only when the Image tool is used in a
visual program&#58;
<TABLE CELLPADDING="3">
<TR VALIGN="TOP"><TD>
					<P><B>View Control ... </B></P>
				</TD><TD><P>Opens a dialog box with various view control options.
For more information on this menu option, see <A
HREF="usrgu040.htm#HDRCHAV">"Controlling the Image: View Control..."</A>.
</TD></TR>
			<TR VALIGN="TOP">
				<TD>
					<P><B>Mode</B></P>
				</TD>
				<TD>
					<P>Specify the View Control mode without opening the View Control Window.</P>
				</TD>
			</TR>
			<TR VALIGN="TOP"><TD><P><B>Undo
</B></TD><TD><P>Returns to the view of the image that was displayed before the
most recent action (effectively undoing the action).
See <A HREF="usrgu040.htm#HDRRESTIMG">"Restoring Images"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Redo
</B></TD><TD><P>Restores the view of the image that was displayed before the
last
<TT><STRONG>Undo</STRONG></TT> action.
See <A HREF="usrgu040.htm#HDRRESTIMG">"Restoring Images"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Reset
</B></TD><TD><P>Resets the camera to its initial position and direction.
See <A HREF="usrgu040.htm#HDRRESTIMG">"Restoring Images"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>AutoAxes...
</B></TD><TD><P>Places axes around the image the next time you execute the
visual program.
See <A HREF="usrgu040.htm#HDRGAUTAX">"AutoAxes..."</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Set Background Color...
</B></TD><TD><P>Sets the background color of the image.
See <A HREF="usrgu040.htm#HDRSTBKCL">"Set Background Color..."</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Display Rotation Globe
</B></TD><TD><P>Enables and disables the wire-framed globe display in many of
the
view control options.
While the toggle button is pressed in, the globe display is enabled.
See <A HREF="usrgu040.htm#HDRROTOBJ">"Rotating the Object"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Rendering Options...
</B></TD><TD><P>Displays a dialog box, allowing you to choose hardware or
software
rendering options.
See <A HREF="usrgu040.htm#HDRGLOPT">"Rendering Options..."</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Image Depth
</B></TD><TD><P>Specifies the number of bits (8, 12 or 24) per color.
See <A HREF="usrgu040.htm#HDRIMDEP">"Image Depth"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Throttle...
</B></TD><TD><P>Specifies the minimum number of seconds to display each frame.
See <A HREF="usrgu040.htm#HDRSPEED">"Changing the Rate of Frame Display:
Throttle..."</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Change Image Name...
</B></TD><TD><P>Opens a dialog box in that you can specify a new title for the
Image window.
See <A HREF="usrgu040.htm#HDRCHTIIW">"Changing the Title of an Image
Window"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Control Panel Access...
</B></TD><TD><P>Allows you to specify which control panels and control panel
groups
are accessible from the Image Window&#39;s <TT><STRONG>Open All Control
Panels</STRONG></TT> option under the <TT><STRONG>Windows</STRONG></TT> menu.
See <A HREF="usrgu040.htm#HDRCPACC">"Control Panel Access..."</A>.
</TD></TR></TABLE>
<P>
<H4><U>Help Menu</U></H4>
<P>
The options in this menu are discussed in <A HREF="usrgu038.htm#HDRONHELP">5.3 ,
"Using Online Help"</A>.
<P>
<H3><A NAME="HDRCOLMEN" ></A>Colormap Menu Bar</H3>
<P>
The Colormap menu bar displays the name of five menus you can use&#58;
<UL COMPACT>
<LI>File
<LI>Edit
<LI>Execute
<LI>Options
<LI>Help.
</UL>
<P>
<P>
<H4><A NAME="HDRCMAPFM"></a><U>Colormap File Menu</U></H4>
<A NAME="IDX842"></A>
<P>
<P>
The Colormap <TT><STRONG>File</STRONG></TT> menu provides the following
options&#58;
<TABLE CELLPADDING="3">
<TR VALIGN="TOP"><TD><P><B>New
</B></TD><TD><P>Replaces Colormap Editor values with default values.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Open...
</B></TD><TD><P>Opens an existing Colormap as specified in the dialog box that
appears.
If a current Colormap is on display and changes have been made,
a dialog box appears for applying wanted changes.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Save As...
</B></TD><TD><P>Saves the current Colormap configuration as the name typed into
the dialog box that appears.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Close
</B></TD><TD><P>Closes the Colormap window.
</TD></TR></TABLE>
<P>
<H4><A NAME="HDRCMAPEM"></A><U>Colormap Edit Menu</U></H4>
<A NAME="IDX843"></A>
<P>
The Colormap <TT><STRONG>Edit</STRONG></TT> menu displays the options used to
edit the current color map.
<P>
The following options appear on the <TT><STRONG>Edit</STRONG></TT> menu&#58;
<TABLE CELLPADDING="3">
<TR VALIGN="TOP"><TD><P><B>Undo
</B></TD><TD><P>Returns an operation to its previous value.
<TT><STRONG>Undo</STRONG></TT> retains a stack of 10 operations.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Copy
</B></TD><TD><P>Copies selected control points to a buffer so that they can be
pasted to another field.
See <A HREF="usrgu042.htm#HDRCAPCPS">"Copying and Pasting Control Points"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Paste
</B></TD><TD><P>Pastes selected control points to a different field.
See <A HREF="usrgu042.htm#HDRCAPCPS">"Copying and Pasting Control Points"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Use Application Default
</B></TD><TD><P>If the Colormap Editor is data-driven, it is still possible to
override its data-driven values by explicitly setting them
in the Colormap Editor.
The <TT><STRONG>Use Application Default</STRONG></TT> option restores the
data-driven values.
It generates a cascade menu with four suboptions:
<TABLE CELLPADDING="3">
<TR VALIGN="TOP"><TD><B><TT><STRONG>Color (HSV) Map</STRONG></TT>
</B></TD><TD>If a color map was provided to the color-map tab of the Colormap
tool, and was subsequently  modified by the user (i.e, adding,
moving, or deleting control points), selection of this
suboption restores the original color map.
</TD></TR><TR VALIGN="TOP"><TD><B><TT><STRONG>Opacity Map</STRONG></TT>
</B></TD><TD>If an opacity map was provided to the opacity tab of the Colormap
tool, and was subsequently  modified by the user (i.e, adding,
moving, or deleting control points), selection of this
suboption restores the original opacity map.
</TD></TR><TR VALIGN="TOP"><TD><B><TT><STRONG>Minimum</STRONG></TT>
</B></TD><TD>If the minimum was set either by a field passed to the data tab of
the Colormap tool or by a value passed to or set for the
<TT><STRONG>min</STRONG></TT> parameter of Colormap, and was
subsequently modified by the user in the Colormap
Editor, this suboption restores the original
value.
</TD></TR><TR VALIGN="TOP"><TD><B><TT><STRONG>Maximum</STRONG></TT>
</B></TD><TD>If the maximum was set either by a field passed to the data tab of
the Colormap tool or by a value passed to or set for the
<TT><STRONG>max</STRONG></TT> parameter of Colormap, and was
subsequently modified by the user in the Colormap
Editor, this suboption restores the original
value.
</TD></TR><TR VALIGN="TOP"><TD><B><TT><STRONG>All</STRONG></TT>
</B></TD><TD>Restores all values to their data-driven settings.
</TD></TR><TR VALIGN="TOP"><TD><B><TT><STRONG>Minimum & Maximum</STRONG></TT>
</B></TD><TD>Restores both the minimum and the maximum values of the original
color map.
</TD></TR></TABLE>
</TD></TR><TR VALIGN="TOP"><TD><P><B>Add Control Points...
</B></TD><TD><P>Brings up a dialog box in which you can enter the exact
numerical
location for control points to be added as the data value and as
the value for either the Hue, Saturation, Value, or Opacity
area of the color map.
See <A HREF="usrgu042.htm#HDRADCONP">"Adding Control Points"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Constrain Horizontal
</B></TD><TD><P>Constrains the horizontal movement of all control points in all
areas of the Colormap.
See <A HREF="usrgu042.htm#HDRMOVCPS">"Moving Control Points"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Constrain Vertical
</B></TD><TD><P>Constrains the vertical movement of all control points in all
areas of the color map.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Generate Waveforms
</B></TD><TD><P>Displays a dialog box that allows you to select from a menu of
waveforms.
The waveforms can be applied to the full range of hue, saturation,
value or opacity or to a selected range.
See <A HREF="usrgu042.htm#HDRCREWVS">"Creating Waveforms"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Delete Selected Control Points
</B></TD><TD><P>Deletes selected control points in the selected area of the
Colormap.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Select All Control Points
</B></TD><TD><P>Selects all the control points in the selected area of the
Colormap.
</TD></TR></TABLE>
<P>
<H4><A NAME="HDRCMAPXM"></A><U>Colormap Execute Menu</U></H4>
<A NAME="IDX844"></A>
<P>
This execute menu is identical to that of the Visual Program Editor window.
See <A HREF="#HDRVPEXMEN">"VPE Execute Menu"</A> for descriptions of the
Execute options.
See also <A HREF="usrgu039.htm#HDREXVP">5.4 , "Executing a Visual Program"</A>.
<P>
<H4><A NAME="HDRCMAPOM"></a><U>Colormap Options Menu</U></H4>
<A NAME="IDX845"></A>
<P>
The Colormap Options menu displays the options used to edit the current
color map.
<P>
The Colormap <TT><STRONG>Options</STRONG></TT> menu lists the following
options&#58;
<TABLE CELLPADDING="3">
<TR VALIGN="TOP"><TD><P><B>Set Background Style to Checkerboard (or Stripes)
</B></TD><TD><P>Changes the background bar from two vertical stripes to
a checkerboard.
<P><B>Note: </B>The opacity must be less than 1 to make this pattern visible.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Axis Display
</B></TD><TD><P>Allows you to choose between Ticks, Histogram, and
Log(Histogram).
See <A HREF="usrgu042.htm#HDRAXDISP">"Axis Display"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Number of histogram bins...
</B></TD><TD><P>Allows you to select the number of histogram bins.
See <A HREF="usrgu042.htm#HDRAXDISP">"Axis Display"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Display Control Point Data Value
</B></TD><TD><P>Allows you to specify which control point values will be
displayed.
See <A HREF="usrgu042.htm#HDRDISCPV">"Display Control Point Values"</A>
</TD></TR><TR VALIGN="TOP"><TD><P><B>Change Colormap Name
</B></TD><TD><P>Sets the name of the Colormap Editor.

See <A HREF="usrgu042.htm#HDRCOLCNAM">"Changing the name of the Colormap
Editor"</A>.
</TD></TR></TABLE>
<P>
<H4><U>Help Menu</U></H4>
<P>
The options in this menu are discussed in <A HREF="usrgu038.htm#HDRONHELP">5.3 ,
"Using Online Help"</A>.
<P>
<H3><A NAME="HDRMENBMEN" ></A>Menu Bar Menu Bar</H3>
<P>
A menu bar is displayed as the anchor window when the user specifies
the <TT>-menubar</TT> option on the command line to Data Explorer.
The menu bar displays the titles of five menus:
<UL COMPACT>
<LI>File
<LI>Execute
<LI>Connection
<LI>Windows
<LI>Help.
</UL>
<P>
<H4><U>Menu Bar File Menu</U></H4>
<A NAME="IDX846"></A>
<P>
The <TT><STRONG>File</STRONG></TT> menu lists the following options&#58;
<TABLE CELLPADDING="3">
<TR VALIGN="TOP"><TD><P><B>Open ...
</B></TD><TD><P>Displays a dialog box for specifying a file path name to load a
visual program or, if the path name ends in a directory, to show a list of
visual programs in that directory.
To select a program, click on the name.
See <A HREF="usrgu041.htm#HDRFSBOX">"File Selection Dialog Boxes"</A> for more
information.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Program Settings
</B></TD><TD><P>Brings up a cascade menu with two choices:
<UL COMPACT>
<LI><TT><STRONG>Save As</STRONG></TT> saves the current settings for the visual
program
(e.g., window placement, interaction mode, camera viewpoint,
interactor setup, etc.
The settings are saved in a .cfg file.
<LI><TT><STRONG>Load</STRONG></TT> loads previously saved settings from a
<TT><STRONG>.cfg</STRONG></TT> file.
</UL>
</TD></TR><TR VALIGN="TOP"><TD><P><B>Load Macro...
</B></TD><TD><P>Loads a macro for use, making it available in the tool palette.
A file selection dialog box appears for you to specify the desired macro
file name.
See <A HREF="usrgu044.htm#HDRLODMAC">"Loading Macros"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Load Module Definition(s)...
</B></TD><TD><P>Loads a module definition for use, making it available in the
tool
palette.
A file selection dialog box appears for you to specify the desired
module file name.
The executable you are using must also include this module.
See <A HREF="usrgu048.htm#HDRVFM">9.2 , "Loading and Using Outboard and
Runtime-Loadable Modules"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Quit
</B></TD><TD><P>Closes the Menu Bar window
</TD></TR></TABLE>
<P>
<H4><U>Menu Bar Execute Menu</U></H4>
<A NAME="IDX847"></A>
<P>
This execute menu is identical to that of the Visual Program Editor window.
See <A HREF="#HDRVPEXMEN">"VPE Execute Menu"</A> for descriptions of the
Execute options.
See also <A HREF="usrgu039.htm#HDREXVP">5.4 , "Executing a Visual Program"</A>.
<P>
<H4><U>Menu Bar Connection Menu</U></H4>
<A NAME="IDX848"></A>
<P>
The <TT><STRONG>Connection</STRONG></TT> menu allows you to monitor and control
communication functions between the workstation and the server.
<P>
The <TT><STRONG>Connection</STRONG></TT> menu lists the following
options&#58;
<TABLE CELLPADDING="3">
<TR VALIGN="TOP"><TD><P><B>Start Server...
</B></TD><TD><P>Connects the user workstation to the server.
For more information, see <A HREF="usrgu049.htm#HDRCONSERV">9.3 , "Connecting to
the Server"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Disconnect from Server
</B></TD><TD><P>Disconnects the user workstation from the server.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Reset Server
</B></TD><TD><P>Flushes the cache, forcing the visual program to reaccess the
data on the
server the next time it executes.
<P>
See <A HREF="usrgu049.htm#HDRRSTSRV">"Resetting the Server"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Execution Group Assignment...
</B></TD><TD><P>Displays a dialog box that allows you to assign execution groups
to specific machine host names.
<P>
See <A HREF="usrgu047.htm#HDRASXGRP">"Assigning Execution Groups to
Workstations"</A>.
</TD></TR></TABLE>
<P>
<H4><U>Menu Bar Windows Menu</U></H4>
<A NAME="IDX849"></A>
<P>
The <TT><STRONG>Windows</STRONG></TT> menu allows you to open
a VPE window containing the program layout or the Control Panels
associated with the visual program.
All windows created from this Image window become its children.
Quitting the Image window causes all of its child windows to close.
Before the window closes, a dialog box appears to request confirmation.
<P>
The <TT><STRONG>Windows</STRONG></TT> menu offers the following options&#58;
<TABLE CELLPADDING="3">
<TR VALIGN="TOP"><TD><P><B>Open Visual Program Editor
</B></TD><TD><P>Opens a VPE window containing the current visual program.
This option is disabled if you have not loaded a visual program or if the VPE is
the anchor window.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Open All Control Panels
</B></TD><TD><P>Opens all the Control Panels and macro Control Panels for the
current visual program unless the macro Control Panels are already
contained in another Control Panel.
This option is disabled if you have not loaded a visual program.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Open Control Panel by Name
</B></TD><TD><P>Opens a cascade menu, from which you can select the name of the
control panel to open.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Open All Colormap Editors
</B></TD><TD><P>Opens all the Colormap Editors for the current visual
program.
<P>
See <A HREF="usrgu042.htm#HDRCOLMAPE">6.3 , "Using the Colormap Editor"</A>.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Open Message Window
</B></TD><TD><P>Opens the Message Window that displays error and warning
information
about your execution.
<P>
See <A HREF="usrgu046.htm#HDRDEBUG">8.2 , "Using the Message Window"</A>.
</TD></TR></TABLE>
<P>
<H4><U>Help Menu</U></H4>
<P>
The options in this menu are discussed in <A HREF="usrgu038.htm#HDRONHELP">5.3 ,
"Using Online Help"</A>.
<P>
<H3><A NAME="HDRMESSMEN" ></A>Message Window Menu Bar</H3>
<P>
The Message window menu bar displays the names of five menus:
<UL COMPACT>
<LI>File
<LI>Edit
<LI>Execute
<LI>Options
<LI>Help
</UL>
<P>
<H4><A NAME="HDRMSGWFM"></a>Message Window File Menu</H4>
<A NAME="IDX850"></A>
<P>
<P>
The Message window <TT><STRONG>File</STRONG></TT> menu provides the following
options&#58;
<TABLE CELLPADDING="3">
			<TR VALIGN="TOP"><TD><P><B>Log...
</B></TD><TD><P>Allows you to designate a file that will receive all subsequent
messages displayed in the Message window.
</TD></TR>
			<TR VALIGN="TOP"><TD><P><B>Save As...
</B></TD><TD><P>Saves the current contents of the Message window to the file
named
in the dialog box that appears.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Close
</B></TD><TD><P>Closes the Message window.
</TD></TR></TABLE>
<P>
<H4><A NAME="HDRMSGWEM"></a>Message Window Edit Menu</H4>
<A NAME="IDX851"></A>
<P>
The Message window <TT><STRONG>Edit</STRONG></TT> menu displays the options used
to
edit the current Message window.
<P>
The following options appear on the <TT><STRONG>Edit</STRONG></TT> menu&#58;
<TABLE CELLPADDING="3">
<TR VALIGN="TOP"><TD><P><B>Next Error
</B></TD><TD><P>Displays and highlights the next error in the Message window and
highlights the tool that reported it.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Previous Error
</B></TD><TD><P>Displays and highlights the previous error in the Message window
and
highlights the tool that reported it.
</TD></TR>
			<TR VALIGN="TOP">
				<TD><B>Clear</B></TD>
				<TD>Clears the Message window.</TD>
			</TR>
		</TABLE>
<P>
<H4><A NAME="HDRMSGWXM"></a>Message Window Execute Menu</H4>
<A NAME="IDX852"></A>
<P>
This execute menu is identical to that of the Visual Program Editor window.
See <A HREF="#HDRVPEXMEN">"VPE Execute Menu"</A> for descriptions of the
Execute options.
See also <A HREF="usrgu039.htm#HDREXVP">5.4 , "Executing a Visual Program"</A>.

<P>
<H4><A NAME="HDRMSGWCM"></a>Message Window Commands Menu</H4>
<A NAME="IDX853"></A>
<P>
The Message window <TT><STRONG>Commands</STRONG></TT> menu
displays the options for running
specific commands. The following options appear on the
<TT><STRONG>Commands</STRONG></TT> menu:
<TABLE CELLPADDING="3">
<TR VALIGN="TOP"><TD><P><B>Debug Tracing
</B></TD><TD><P>When enabled, displays instance numbers on each tool in a visual
program (to distinguish between multiple instances of a tool) and turns on
tracing in the message window so that as each module is run its name and
instance number is displayed.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Execute Script Command
</B></TD><TD><P>Allows commands to be issued directly to the server (see
<A HREF="refgu055.htm#HDREXECTV">Executive</A> in <I>IBM Visualization Data
Explorer User&#39;s Reference</I>).
</TD></TR><TR VALIGN="TOP"><TD><P><B>Show Memory Use
</B></TD><TD><P>Displays the current memory usage (see <A
HREF="refgu166.htm#HDRUSAGE">Usage</A> in
<I>IBM Visualization Data Explorer User&#39;s Reference</I>).
</TD></TR></TABLE>

<P>
<H4><A NAME="HDRMSGWOM"></a>Message Window Options Menu</H4>
<A NAME="IDX854"></A>
<P>
The Message window <TT><STRONG>Options</STRONG></TT> menu displays the options
used
to edit the current Message window.
<P>
The Message Window <TT><STRONG>Options</STRONG></TT> menu lists the following
options&#58;
See also <A HREF="usrgu046.htm#HDRDEBUG">8.2 , "Using the Message Window"</A>.
<TABLE CELLPADDING="3">
<TR VALIGN="TOP"><TD><P><B>Information Messages
</B></TD><TD><P>Allows you to either display or not display Information
messages.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Warning Messages
</B></TD><TD><P>Allows you to either display or not display Warning messages.
</TD></TR><TR VALIGN="TOP"><TD><P><B>Error Messages
</B></TD><TD><P>Allows you to either display or not display Error messages.
</TD></TR></TABLE>
		<P>
		<HR>
		<DIV align="center">
			<P><A href="../allguide.htm"><IMG src="../images/foot-fc.gif" width="94" height="18" border="0" alt="Full Contents"></A> <A href="../qikguide.htm"><IMG src="../images/foot-qs.gif" width="94" height="18" border="0" alt="QuickStart Guide"></A> <A href="../usrguide.htm"><IMG src="../images/foot-ug.gif" width="94" height="18" border="0" alt="User's Guide"></A> <A href="../refguide.htm"><IMG src="../images/foot-ur.gif" width="94" height="18" border="0" alt="User's Reference"></A></P>
		</DIV>
		<DIV align="center">
			<P><FONT size="-1">[ <A href="http://www.research.ibm.com/dx">OpenDX Home at IBM</A>&nbsp;|&nbsp;<A href="http://www.opendx.org/">OpenDX.org</A>&nbsp;] </FONT></P>
			<P></P>
		</DIV>
		<P></P>
	</BODY></HTML>