<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://labviewwiki.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Adamrofer</id>
	<title>LabVIEW Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://labviewwiki.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Adamrofer"/>
	<link rel="alternate" type="text/html" href="https://labviewwiki.org/wiki/Special:Contributions/Adamrofer"/>
	<updated>2026-04-22T15:47:25Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=XControl&amp;diff=1222</id>
		<title>XControl</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=XControl&amp;diff=1222"/>
		<updated>2007-05-08T03:09:45Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: /* Facade Ability VI */ gr&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
XControls are introduced in LabVIEW 8.0 and enhance the power of front panel objects in great ways.&lt;br /&gt;
&lt;br /&gt;
Essentially an XControl is a front panel object with dedicated code linked in to react on certain user events.&lt;br /&gt;
&lt;br /&gt;
An XControl exists of several parts, managed in a .xctl file. The .xctl file is a XML-file like the project-file. Other parts of the XControl are abilities. &lt;br /&gt;
==Abilities==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+XControl abilities&lt;br /&gt;
|-&lt;br /&gt;
! Ability&lt;br /&gt;
! Function&lt;br /&gt;
! Called if/when&lt;br /&gt;
! LabVIEW file type&lt;br /&gt;
! Optional?&lt;br /&gt;
|-&lt;br /&gt;
| Init&lt;br /&gt;
| To initialize memory, convert from previous version, load data from a previous session&lt;br /&gt;
| The first time a Xcontrol is added to a VI, an Xcontrol is upgraded, a VI with an XControl is opened&lt;br /&gt;
| Instrument (VI)&lt;br /&gt;
| No&lt;br /&gt;
|-&lt;br /&gt;
| Data&lt;br /&gt;
| Interface to the calling VI&lt;br /&gt;
| NA&lt;br /&gt;
| Control (ctl)&lt;br /&gt;
| No&lt;br /&gt;
|-&lt;br /&gt;
| State&lt;br /&gt;
| Contains local data for the XControl&lt;br /&gt;
| NA&lt;br /&gt;
| Control (ctl)&lt;br /&gt;
| No&lt;br /&gt;
|-&lt;br /&gt;
| Facade&lt;br /&gt;
| Contains the code running when the XControl is active&lt;br /&gt;
| Every time an event inside the Facade VI is triggered&lt;br /&gt;
| Instrument (VI)&lt;br /&gt;
| No&lt;br /&gt;
|-&lt;br /&gt;
| Uninit&lt;br /&gt;
| To close items allocated in Init&lt;br /&gt;
| The XControl is unloaded from memory&lt;br /&gt;
| Instrument (VI)&lt;br /&gt;
| Yes&lt;br /&gt;
|-&lt;br /&gt;
| Convert state for save&lt;br /&gt;
| Change the data that is saved inside a VI&lt;br /&gt;
| The VI containing the XControl is saved&lt;br /&gt;
| Instrument (VI)&lt;br /&gt;
| Yes&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Facade Ability VI==&lt;br /&gt;
The Facade VI is the running heart of the XControl. It decides on which events applied to the XControl should be reacted to in which ways.&lt;br /&gt;
[[Image:XControl.xctl_Facade_Empty.png|center|thumb|600px|Example XControl Facade VI showing the Timeout frame]]&lt;br /&gt;
===Facade Ability VI Data===&lt;br /&gt;
The Facade Ability VI has several data in- and outputs to fit in the XControl framework.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ Facade Ability data in- and outputs&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Description&lt;br /&gt;
! Type&lt;br /&gt;
|-&lt;br /&gt;
| Data In&lt;br /&gt;
| Returns last saved value of &#039;Data Out&#039;&lt;br /&gt;
| Control&lt;br /&gt;
|-&lt;br /&gt;
| Data Out&lt;br /&gt;
| Outputs the value for use inside the containing VI&lt;br /&gt;
| Indicator&lt;br /&gt;
|-&lt;br /&gt;
| Display State In&lt;br /&gt;
| Holds internal data of the XControl&lt;br /&gt;
| Control&lt;br /&gt;
|-&lt;br /&gt;
| Display State Out&lt;br /&gt;
| Placeholder for internal data&lt;br /&gt;
| Indicator&lt;br /&gt;
|-&lt;br /&gt;
| Container State&lt;br /&gt;
| Holds information about the XControl for use inside the XControl&lt;br /&gt;
| Control&lt;br /&gt;
|-&lt;br /&gt;
| Container State.Indicator?&lt;br /&gt;
| Returns True if the XControl is an indicator&lt;br /&gt;
| NA&lt;br /&gt;
|-&lt;br /&gt;
| Container State.Runmode?&lt;br /&gt;
| Returns True if the VI containing the XControl is in Runmode.&lt;br /&gt;
| NA&lt;br /&gt;
|-&lt;br /&gt;
| Container State.Refnum&lt;br /&gt;
| Reference to the control representing the XControl&lt;br /&gt;
| NA&lt;br /&gt;
|-&lt;br /&gt;
| Action&lt;br /&gt;
| Contains commands for LabVIEW about the current XControl event session&lt;br /&gt;
| Indicator&lt;br /&gt;
|-&lt;br /&gt;
| Action.DataChanged?&lt;br /&gt;
| If this boolean is true LabVIEW will save te &#039;Data Out&#039; value, if false the value will revert to &#039;Data In&#039;&lt;br /&gt;
| NA&lt;br /&gt;
|-&lt;br /&gt;
| Action.StateChanged?&lt;br /&gt;
| If this boolean is true LabVIEW will save te &#039;Display State Out&#039; value, if false the value will revert to &#039;Display State In&#039;&lt;br /&gt;
| NA&lt;br /&gt;
|-&lt;br /&gt;
| Action.Action Name&lt;br /&gt;
| Can be used to track changes made by XControls for undo for instance&lt;br /&gt;
| NA&lt;br /&gt;
|}&lt;br /&gt;
===Facade Ability VI Events===&lt;br /&gt;
The Facade VI contains an event structure inside a while loop. To be useable inside the XControl framework the VI has to be terminated after each event. To enforce this LabVIEW&#039;s template XControl has a timeout of 0 ms which finishes the while loop, the XControl can be ended in any of the event cases.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ Special Facade Ability VI events&lt;br /&gt;
|-&lt;br /&gt;
! Event Name&lt;br /&gt;
! Function&lt;br /&gt;
! Called if&lt;br /&gt;
|-&lt;br /&gt;
| Data Changed&lt;br /&gt;
| To keep the representation of the XControl up to date with the data of the XControl&lt;br /&gt;
| On load of the XControl, if a new value to the terminal/local variable/&#039;value&#039; property is written or the &#039;value (sgl)&#039; property is called&lt;br /&gt;
|-&lt;br /&gt;
| Display State Change&lt;br /&gt;
| To communicate between XControl parts&lt;br /&gt;
| The XControl is loaded into memory, a custom property or method is used&lt;br /&gt;
|-&lt;br /&gt;
| Direction Change&lt;br /&gt;
| To inform the XControl of the &#039;gender&#039; of it&#039;s terminal&lt;br /&gt;
| The terminal of the XControl is converted from Control to indicator and visa versa. On initial drop of the XControl, or load into memory&lt;br /&gt;
|-&lt;br /&gt;
| Exec State Changed&lt;br /&gt;
| To inform the XControl of the mode of it&#039;s owning VI&lt;br /&gt;
| If the owning VI is started or stopped. If the owning VI is loaded into memory&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:User Interface]]&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=LabVIEW_configuration_file/Miscellaneous&amp;diff=1221</id>
		<title>LabVIEW configuration file/Miscellaneous</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=LabVIEW_configuration_file/Miscellaneous&amp;diff=1221"/>
		<updated>2007-05-08T03:07:52Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: /* ExternalNodesEnabled */ context&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{LabVIEW configuration back}}&lt;br /&gt;
This is a list of Miscellaneous LabVIEW ini File settings.&lt;br /&gt;
&lt;br /&gt;
== BldApp.RemovePolyVIsandTypedefs ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;BldApp.RemovePolyVIsandTypedefs=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Setting this to &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; stops the LabVIEW Application Builder from agressively removing polymorphic VIs and typedefs that it thinks are not required&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 7.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: By default, the LabVIEW 7.x Application Builder does not include type definitions and unused instances of polymorphic VIs into executable in order to decrease size of application.  If a VI in your build calls an external VI that uses a type definition in order to pass parameters, and the AppBuilder is unaware of this external VI, it will end in tears&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== cleanupVisa ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;coerceFromVariant=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Force variants to automatically coerce to any data type that they are connected to&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: Tread carefully, as using this function removes coercion notifivation, and does not useerror handling&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== cleanupVisa ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;cleanupVisa=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Automatically close VISA sessions - do not require the use of the &#039;&#039;VISA Close&#039;&#039; VI&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== dropThroughClicks ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;dropThroughClicks=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Allow drop-through clicks&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ExternalNodesEnabled ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;ExternalNodesEnabled=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Enables use of [[External Nodes]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: 6.x?, 7.x: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; 8.x: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;?&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 6.x?, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ExternalNodeDebugging ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;ExternalNodeDebugging=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Shows External Nodes for what they are: sequence diagrams&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== hotMenus ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;hotMenus=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Use hot menus&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== openInRun ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;openInRun=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: When opening VIs in the development environment, open them in &#039;&#039;run mode&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== readOnlyLock ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;readOnlyLock=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Treat read-only VIs as locked&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: It is important to set this to &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; when using source code control outside of the LabVIEW environment, so LabVIEW will not allow a VI that is not checked out to the user to be edited&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== showBDConstName ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;showBDConstName=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Show auto-constant labels&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ShowTipStrings ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;ShowTipStrings=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Display Tip Strips during execution&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]][[Image:logo.Sun.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== skipNavigatorDialog ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;skipNavigatorDialog=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Skip the navigation dialog on development environment launch&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== suppressFileDlgForMissingVIs ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;suppressFileDlgForMissingVIs=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Suppresses the file dialog for when loading a VI that has missing SubVIs&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== useNativeFileDialog ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;useNativeFileDialog=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Use the OS native file dialogs&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== XNodeWizardMode ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;XNodeWizardMode=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Allows contextual menus on [[XNodes]] to facilitate debugging&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=LabVIEW_configuration_file/Miscellaneous&amp;diff=1220</id>
		<title>LabVIEW configuration file/Miscellaneous</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=LabVIEW_configuration_file/Miscellaneous&amp;diff=1220"/>
		<updated>2007-05-08T03:07:27Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: /* XNodeWizardMode */ context&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{LabVIEW configuration back}}&lt;br /&gt;
This is a list of Miscellaneous LabVIEW ini File settings.&lt;br /&gt;
&lt;br /&gt;
== BldApp.RemovePolyVIsandTypedefs ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;BldApp.RemovePolyVIsandTypedefs=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Setting this to &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; stops the LabVIEW Application Builder from agressively removing polymorphic VIs and typedefs that it thinks are not required&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 7.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: By default, the LabVIEW 7.x Application Builder does not include type definitions and unused instances of polymorphic VIs into executable in order to decrease size of application.  If a VI in your build calls an external VI that uses a type definition in order to pass parameters, and the AppBuilder is unaware of this external VI, it will end in tears&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== cleanupVisa ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;coerceFromVariant=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Force variants to automatically coerce to any data type that they are connected to&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: Tread carefully, as using this function removes coercion notifivation, and does not useerror handling&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== cleanupVisa ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;cleanupVisa=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Automatically close VISA sessions - do not require the use of the &#039;&#039;VISA Close&#039;&#039; VI&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== dropThroughClicks ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;dropThroughClicks=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Allow drop-through clicks&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ExternalNodesEnabled ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;ExternalNodesEnabled=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Enables use of External Nodes&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: 6.x?, 7.x: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; 8.x: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;?&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 6.x?, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ExternalNodeDebugging ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;ExternalNodeDebugging=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Shows External Nodes for what they are: sequence diagrams&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== hotMenus ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;hotMenus=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Use hot menus&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== openInRun ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;openInRun=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: When opening VIs in the development environment, open them in &#039;&#039;run mode&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== readOnlyLock ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;readOnlyLock=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Treat read-only VIs as locked&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: It is important to set this to &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; when using source code control outside of the LabVIEW environment, so LabVIEW will not allow a VI that is not checked out to the user to be edited&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== showBDConstName ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;showBDConstName=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Show auto-constant labels&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ShowTipStrings ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;ShowTipStrings=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Display Tip Strips during execution&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]][[Image:logo.Sun.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== skipNavigatorDialog ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;skipNavigatorDialog=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Skip the navigation dialog on development environment launch&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== suppressFileDlgForMissingVIs ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;suppressFileDlgForMissingVIs=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Suppresses the file dialog for when loading a VI that has missing SubVIs&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== useNativeFileDialog ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;useNativeFileDialog=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Use the OS native file dialogs&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== XNodeWizardMode ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;XNodeWizardMode=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Allows contextual menus on [[XNodes]] to facilitate debugging&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=LabVIEW_configuration_file/Miscellaneous&amp;diff=1219</id>
		<title>LabVIEW configuration file/Miscellaneous</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=LabVIEW_configuration_file/Miscellaneous&amp;diff=1219"/>
		<updated>2007-05-08T03:06:54Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: XNodeWizardMode&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{LabVIEW configuration back}}&lt;br /&gt;
This is a list of Miscellaneous LabVIEW ini File settings.&lt;br /&gt;
&lt;br /&gt;
== BldApp.RemovePolyVIsandTypedefs ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;BldApp.RemovePolyVIsandTypedefs=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Setting this to &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; stops the LabVIEW Application Builder from agressively removing polymorphic VIs and typedefs that it thinks are not required&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 7.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: By default, the LabVIEW 7.x Application Builder does not include type definitions and unused instances of polymorphic VIs into executable in order to decrease size of application.  If a VI in your build calls an external VI that uses a type definition in order to pass parameters, and the AppBuilder is unaware of this external VI, it will end in tears&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== cleanupVisa ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;coerceFromVariant=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Force variants to automatically coerce to any data type that they are connected to&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: Tread carefully, as using this function removes coercion notifivation, and does not useerror handling&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== cleanupVisa ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;cleanupVisa=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Automatically close VISA sessions - do not require the use of the &#039;&#039;VISA Close&#039;&#039; VI&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== dropThroughClicks ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;dropThroughClicks=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Allow drop-through clicks&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ExternalNodesEnabled ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;ExternalNodesEnabled=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Enables use of External Nodes&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: 6.x?, 7.x: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; 8.x: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;?&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 6.x?, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ExternalNodeDebugging ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;ExternalNodeDebugging=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Shows External Nodes for what they are: sequence diagrams&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== hotMenus ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;hotMenus=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Use hot menus&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== openInRun ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;openInRun=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: When opening VIs in the development environment, open them in &#039;&#039;run mode&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== readOnlyLock ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;readOnlyLock=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Treat read-only VIs as locked&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: It is important to set this to &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; when using source code control outside of the LabVIEW environment, so LabVIEW will not allow a VI that is not checked out to the user to be edited&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== showBDConstName ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;showBDConstName=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Show auto-constant labels&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ShowTipStrings ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;ShowTipStrings=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Display Tip Strips during execution&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]][[Image:logo.Sun.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== skipNavigatorDialog ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;skipNavigatorDialog=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Skip the navigation dialog on development environment launch&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== suppressFileDlgForMissingVIs ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;suppressFileDlgForMissingVIs=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Suppresses the file dialog for when loading a VI that has missing SubVIs&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== useNativeFileDialog ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;useNativeFileDialog=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Use the OS native file dialogs&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== XNodeWizardMode ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;XNodeWizardMode=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Allows contextual menus on XNodes to facilitate debugging&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=LabVIEW_configuration_file/Miscellaneous&amp;diff=1218</id>
		<title>LabVIEW configuration file/Miscellaneous</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=LabVIEW_configuration_file/Miscellaneous&amp;diff=1218"/>
		<updated>2007-05-08T03:05:30Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: /* ExternalNodeDebugging */ not 5.x, 6.x&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{LabVIEW configuration back}}&lt;br /&gt;
This is a list of Miscellaneous LabVIEW ini File settings.&lt;br /&gt;
&lt;br /&gt;
== BldApp.RemovePolyVIsandTypedefs ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;BldApp.RemovePolyVIsandTypedefs=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Setting this to &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; stops the LabVIEW Application Builder from agressively removing polymorphic VIs and typedefs that it thinks are not required&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 7.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: By default, the LabVIEW 7.x Application Builder does not include type definitions and unused instances of polymorphic VIs into executable in order to decrease size of application.  If a VI in your build calls an external VI that uses a type definition in order to pass parameters, and the AppBuilder is unaware of this external VI, it will end in tears&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== cleanupVisa ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;coerceFromVariant=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Force variants to automatically coerce to any data type that they are connected to&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: Tread carefully, as using this function removes coercion notifivation, and does not useerror handling&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== cleanupVisa ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;cleanupVisa=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Automatically close VISA sessions - do not require the use of the &#039;&#039;VISA Close&#039;&#039; VI&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== dropThroughClicks ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;dropThroughClicks=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Allow drop-through clicks&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ExternalNodesEnabled ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;ExternalNodesEnabled=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Enables use of External Nodes&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: 6.x?, 7.x: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; 8.x: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;?&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 6.x?, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ExternalNodeDebugging ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;ExternalNodeDebugging=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Shows External Nodes for what they are: sequence diagrams&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== hotMenus ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;hotMenus=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Use hot menus&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== openInRun ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;openInRun=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: When opening VIs in the development environment, open them in &#039;&#039;run mode&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== readOnlyLock ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;readOnlyLock=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Treat read-only VIs as locked&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: It is important to set this to &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; when using source code control outside of the LabVIEW environment, so LabVIEW will not allow a VI that is not checked out to the user to be edited&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== showBDConstName ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;showBDConstName=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Show auto-constant labels&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ShowTipStrings ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;ShowTipStrings=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Display Tip Strips during execution&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]][[Image:logo.Sun.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== skipNavigatorDialog ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;skipNavigatorDialog=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Skip the navigation dialog on development environment launch&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== suppressFileDlgForMissingVIs ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;suppressFileDlgForMissingVIs=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Suppresses the file dialog for when loading a VI that has missing SubVIs&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== useNativeFileDialog ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;useNativeFileDialog=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Use the OS native file dialogs&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=LabVIEW_configuration_file/Miscellaneous&amp;diff=1217</id>
		<title>LabVIEW configuration file/Miscellaneous</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=LabVIEW_configuration_file/Miscellaneous&amp;diff=1217"/>
		<updated>2007-05-08T03:05:02Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: ExternalNodesEnabled, ExternalNodeDebugging&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{LabVIEW configuration back}}&lt;br /&gt;
This is a list of Miscellaneous LabVIEW ini File settings.&lt;br /&gt;
&lt;br /&gt;
== BldApp.RemovePolyVIsandTypedefs ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;BldApp.RemovePolyVIsandTypedefs=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Setting this to &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; stops the LabVIEW Application Builder from agressively removing polymorphic VIs and typedefs that it thinks are not required&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 7.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: By default, the LabVIEW 7.x Application Builder does not include type definitions and unused instances of polymorphic VIs into executable in order to decrease size of application.  If a VI in your build calls an external VI that uses a type definition in order to pass parameters, and the AppBuilder is unaware of this external VI, it will end in tears&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== cleanupVisa ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;coerceFromVariant=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Force variants to automatically coerce to any data type that they are connected to&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: Tread carefully, as using this function removes coercion notifivation, and does not useerror handling&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== cleanupVisa ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;cleanupVisa=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Automatically close VISA sessions - do not require the use of the &#039;&#039;VISA Close&#039;&#039; VI&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== dropThroughClicks ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;dropThroughClicks=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Allow drop-through clicks&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ExternalNodesEnabled ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;ExternalNodesEnabled=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Enables use of External Nodes&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: 6.x?, 7.x: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; 8.x: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;?&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 6.x?, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ExternalNodeDebugging ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;ExternalNodeDebugging=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Shows External Nodes for what they are: sequence diagrams&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== hotMenus ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;hotMenus=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Use hot menus&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== openInRun ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;openInRun=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: When opening VIs in the development environment, open them in &#039;&#039;run mode&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== readOnlyLock ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;readOnlyLock=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Treat read-only VIs as locked&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: It is important to set this to &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; when using source code control outside of the LabVIEW environment, so LabVIEW will not allow a VI that is not checked out to the user to be edited&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== showBDConstName ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;showBDConstName=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Show auto-constant labels&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ShowTipStrings ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;ShowTipStrings=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Display Tip Strips during execution&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]][[Image:logo.Sun.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== skipNavigatorDialog ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;skipNavigatorDialog=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Skip the navigation dialog on development environment launch&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== suppressFileDlgForMissingVIs ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;suppressFileDlgForMissingVIs=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Suppresses the file dialog for when loading a VI that has missing SubVIs&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== useNativeFileDialog ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;useNativeFileDialog=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Use the OS native file dialogs&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=LabVIEW_configuration_file/Block_Diagram&amp;diff=1215</id>
		<title>LabVIEW configuration file/Block Diagram</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=LabVIEW_configuration_file/Block_Diagram&amp;diff=1215"/>
		<updated>2007-05-08T02:57:24Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: inlineSubVIEnabled -- nice feature!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{LabVIEW configuration back}}&lt;br /&gt;
This is a list of LabVIEW ini File settings relating to Block Diagram behaviour.&lt;br /&gt;
&lt;br /&gt;
== autoWireMax ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;autoWireMax=24&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Maximum distance between nodes for autowiring to be active&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#0000FF&amp;gt;Integer&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: 1 to 2&amp;lt;sup&amp;gt;32&amp;lt;/sup&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;16&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]][[Image:logo.Sun.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: This setting is only effective if [[#enableAutoWire|enableAutoWire]] is set to &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== autoWireMin ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;autoWireMin=8&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Minimum distance between nodes for autowiring to be active&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#0000FF&amp;gt;Integer&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: 1 to 2&amp;lt;sup&amp;gt;32&amp;lt;/sup&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;4&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]][[Image:logo.Sun.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: This setting is only effective if [[#enableAutoWire|enableAutoWire]] is set to &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== copyDeleteFPDCOFromFPTerm ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;copyDeleteFPDCOFromFPTerm=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Delete front panel terminals from diagram&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]][[Image:logo.Sun.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== enableAutoWire ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;enableAutoWire=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Enable Auto Wiring&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]][[Image:logo.Sun.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== funkyErrClustWire ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;funkyErrClustWire=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Change Error Cluster wires color from the standard cluster pink to a more appealing brown/green color&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: LabVIEW 5.1, 6.x, 7.x: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;, LabVIEW 8.x: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.1, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]][[Image:logo.Sun.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== inlineSubVIEnabled ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;inlineSubVIEnabled=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Allows the context menu item &amp;quot;Inline SubVI&amp;quot; on any SubVI which inserts the code directly into the block diagram containing the SubVI.&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]][[Image:logo.Sun.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== maxUndoSteps ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;maxUndoSteps=50&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Maximum undo steps per VI&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#0000FF&amp;gt;Integer&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: 1 to 2&amp;lt;sup&amp;gt;32&amp;lt;/sup&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;8&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.x, 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]][[Image:logo.Sun.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== showSubVIName ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;showSubVIName=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Show subVI names when dropped&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]][[Image:logo.Sun.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== showTipStringsOnTerms ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;showTipStringsOnTerms=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Show tip-strips over terminals&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]][[Image:logo.Sun.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== showWireDots ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;showWireDots=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Show dots at wire junctions&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]][[Image:logo.Sun.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== showWireGuides ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;showWireGuides=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: None&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]][[Image:logo.Sun.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== structuresFadeToDiagramBeneath ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;structuresFadeToDiagramBeneath=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Makes the diagram of structures semi-transparent so that you can see objects behind them.&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]][[Image:logo.Sun.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes:  Enabling this setting will slow down the development environment on large Block Diagrams&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== transparentBDLabels ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;transparentBDLabels=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Use transparent name labels&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]][[Image:logo.Sun.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== viCaptionTipStrings ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;viCaptionTipStrings=FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Use control captions for subVI tip-strips&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]][[Image:logo.Sun.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== viTitleInPalettes ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;viTitleInPalettes=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Use Window Titles in function palettes&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 6.x, 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]][[Image:logo.Sun.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Development Environment]]&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=LabVIEW_configuration_file/Performance&amp;diff=1212</id>
		<title>LabVIEW configuration file/Performance</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=LabVIEW_configuration_file/Performance&amp;diff=1212"/>
		<updated>2007-05-08T02:50:53Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: /* anxiousMemoryDeallocation */ sp&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{LabVIEW configuration back}}&lt;br /&gt;
This is a list of LabVIEW ini File settings relating to Performance.&lt;br /&gt;
&lt;br /&gt;
== abortMIN ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;abortMIN=250&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Abort LabVIEW launch process if available disk space on the drive LabVIEW is launched from is below this many kB&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#0000FF&amp;gt;Integer&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: 1 to 2&amp;lt;sup&amp;gt;32&amp;lt;/sup&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;500&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.1, 6.1, 7.1, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]][[Image:logo.Sun.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: This setting only takes effect if &amp;lt;code&amp;gt;[[#checkAvailDiskSpace|checkAvailDiskSpace]]&amp;lt;/code&amp;gt; is set to &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== anxiousMemoryDeallocation ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;anxiousMemoryDeallocation=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Force LabVIEW to deallocate memory aggressively&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 7.1, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]][[Image:logo.Sun.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== checkAvailDiskSpace ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;checkAvailDiskSpace=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Check the available disk space on the hard drive that LabVIEW is installed on during launch.  Warn the user if the available space is less than &amp;lt;code&amp;gt;[[#warnMIN|warnMIN]]&amp;lt;/code&amp;gt; and/or &amp;lt;code&amp;gt;[[#abortMin|abortMIN]]&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.1, 6.1, 7.1, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]][[Image:logo.Sun.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== macExtremeCompacting ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;macExtremeCompacting=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Unknown.&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.1, 6.1, 7.1, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Mac.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: Faster loading (but more inefficient)&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== useDefaultTimer ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;useDefaultTimer=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Unknown&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: Unknown&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.1, 6.1, 7.1, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]][[Image:logo.Sun.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: Set this to &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt; to increase LabVIEW&#039;s timer functions to 1ms resolution&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== warnMIN ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;warnMIN=1250&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Warn the user on LabVIEW launch if available disk space on the drive LabVIEW is launched from is below this many kB&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#0000FF&amp;gt;Integer&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: 1 to 2&amp;lt;sup&amp;gt;32&amp;lt;/sup&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;2000&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 5.1, 6.1, 7.1, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]][[Image:logo.Sun.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: This setting only takes effect if &amp;lt;code&amp;gt;[[#checkAvailDiskSpace|checkAvailDiskSpace]]&amp;lt;/code&amp;gt; is set to &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=LabVIEW_configuration_file/Easter_Eggs&amp;diff=1210</id>
		<title>LabVIEW configuration file/Easter Eggs</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=LabVIEW_configuration_file/Easter_Eggs&amp;diff=1210"/>
		<updated>2007-05-08T02:46:55Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: /* ICantBelieveItsNotButter */ sp&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{LabVIEW configuration back}}&lt;br /&gt;
This is a list of LabVIEW ini File settings relating to Easter Eggs - the messages that NI R&amp;amp;D have hidden in there.  Essentially, they have no functional advantage, but are a bit-o-fun.&lt;br /&gt;
&lt;br /&gt;
== HiliteExecutionPride ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;HiliteExecutionPride=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Changes the highlight execution bubbles that traverse the wires from a circle into a small NI logo&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 7.x, 8.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]][[Image:logo.Sun.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ICantBelieveItsNotButter ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;ICantBelieveItsNotButter=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Changes the LabVIEW splash screen to a most delicious shade of yellow&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 6.x&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]][[Image:logo.Sun.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ILuvLV20 ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;ILuvLV20=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Adds an impressive birthday cake ot the &amp;quot;About&amp;quot; screen&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 8.20&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]][[Image:logo.Sun.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== TwentyYears ==&lt;br /&gt;
Example: &amp;lt;code&amp;gt;TwentyYears=TRUE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Description: Adds the following text to the splash screen on launch: &amp;quot;Thank you for 20 years of Dataflow...&amp;quot;&amp;lt;br/&amp;gt;&lt;br /&gt;
Datatype: &amp;lt;FONT COLOR=#008000&amp;gt;Boolean&amp;lt;/FONT&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Permitted Values: &amp;lt;code&amp;gt;TRUE&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Default Value: &amp;lt;code&amp;gt;FALSE&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
LabVIEW Versions: 8.20&amp;lt;br/&amp;gt;&lt;br /&gt;
OS&#039;s Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]][[Image:logo.Sun.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
Notes: None&amp;lt;br/&amp;gt;&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=LabVIEW_configuration_file&amp;diff=882</id>
		<title>LabVIEW configuration file</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=LabVIEW_configuration_file&amp;diff=882"/>
		<updated>2007-04-23T17:12:03Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Some great resources already exists for cataloging the various keys used by ./labview.ini . In an effort not to duplicate the work that went into these resources we will merely provide a link to them here:&lt;br /&gt;
&lt;br /&gt;
LabVIEW Options on Scott Hannahs&#039;s LabVIEW Info Page:&lt;br /&gt;
&lt;br /&gt;
* [http://sthmac.magnet.fsu.edu/labview/LV_Options70.html Version 7.0]&lt;br /&gt;
* [http://sthmac.magnet.fsu.edu/labview/LV_Options610.html Version 6.1.0]&lt;br /&gt;
* [http://sthmac.magnet.fsu.edu/labview/LV_Options602.html Version 6.0.2]&lt;br /&gt;
* [http://sthmac.magnet.fsu.edu/labview/LV_Options511.html Version 5.1.1]&lt;br /&gt;
&lt;br /&gt;
And a listing of the undocumented ones on Brian Reneken&#039;s Website:&lt;br /&gt;
&lt;br /&gt;
* http://labview.brianrenken.com/INI/ &lt;br /&gt;
&lt;br /&gt;
=== Some More Undocumented Keys ===&lt;br /&gt;
&lt;br /&gt;
[code]BldApp.RemovePolyVIsandTypedefs=False[/code]&lt;br /&gt;
&lt;br /&gt;
By default, LV7 AppBuilder does not include type definitions and unused instances of polymorphic VIs into executable in order to decrease size of application. If some VI in your exe calls a VI outside (that was not planned by AppBuilder) and uses a type definition in order to pass parameters, you will meet such kind of problem for sure. This undocumented ini setting disables this new feature.&lt;br /&gt;
&lt;br /&gt;
[code]coerceFromVariant=TRUE[/code]&lt;br /&gt;
&lt;br /&gt;
This will cause Variants to automatically coerce to any data type. But be careful, there is no error handling. I wouldn&#039;t use this in your applications, but it is interesting.&lt;br /&gt;
&lt;br /&gt;
[code]structuresFadeToDiagramBeneath=TRUE[/code]&lt;br /&gt;
&lt;br /&gt;
Makes the diagram of structures semitransparent so that you can see objects hidden behind them.&lt;br /&gt;
&lt;br /&gt;
[code]suppressFileDlgForMissingVIs=TRUE[/code]&lt;br /&gt;
&lt;br /&gt;
Suppresses the file dialog for missing VIs.&lt;br /&gt;
===Should I play with the undocumented ini keys?===&lt;br /&gt;
&lt;br /&gt;
The options that aren&#039;t in the preferences dialog are generally considered to be not useful or even harmful. They are sometimes there to allow National Instruments a backdoor or a workaround for when the LabVIEW development team changes a behavior. They are also used to turn on obscure development features that the developers use to make or debug LabVIEW. These obscure features are typically kind of like the attic or basement of a house, not finished out, not very interesting, and potentially harmful.&lt;br /&gt;
&lt;br /&gt;
The LabVIEW developers have never tried to hide any of these strings, but it is unlikely that you will gain any benefit from trying out various combinations of the settings. If you ask technical support what a setting is, they will likely tell you that they have no idea. They are telling you the truth.&lt;br /&gt;
&lt;br /&gt;
Even Greg McKaskle would not know what some of the settings do without checking the code. Others, such as exoticcontrols, no longer do anything. It was once used to show a control palette submenu that contained controls that were still in work and not ready for prime-time. They were experiments, unsupported features, and guaranteed to crash if you did much with them. Just the sort of thing that is needed for development, but not useful to even advanced LabVIEW users unless they have a death-wish.&lt;br /&gt;
&lt;br /&gt;
If you experiment with the .ini file and you crash mysteriously losing hours of work, I&#039;d suggest putting the file back to the way LabVIEW left it. Don&#039;t ask tech support to fix it or complain that the LabVIEW attic has rusty nails and splinters.&lt;br /&gt;
&lt;br /&gt;
Resedit is a low level tool that in the right hands is useful, in the wrong hands, well, its in the wrong hands. For the person that likes taking a multimeter and a soldering iron to computers and household appliances, its exactly what you always wanted. If you start monkeying with things in the resources or the .ini file, use common sense and do it on a copy or you will just end up reinstalling LabVIEW.&lt;br /&gt;
&lt;br /&gt;
Once the fun and experimentation is over with, I think you will agree that the useful options, with very few exceptions are in the Preferences dialog.&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=XNodes&amp;diff=646</id>
		<title>XNodes</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=XNodes&amp;diff=646"/>
		<updated>2007-03-28T23:36:19Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: /* XNodes in the Development Environment */ (sp)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;XNodes&#039;&#039;&#039; are a technology built into [[LabVIEW 8.0]]+ that allows dynamic edit-time macro support.&lt;br /&gt;
&lt;br /&gt;
XNodes are [[Library|Libraries]] that feature several &amp;quot;Ability&amp;quot; [[VI]]s which consist of various events and methods of the XNode.&lt;br /&gt;
&lt;br /&gt;
==XNodes used in LabVIEW 8.2==&lt;br /&gt;
{|cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Class Aggregate Handler? || ([[vi.lib]]\Utility\AggHandler\Cls_AggHandler.xnode)&lt;br /&gt;
|-&lt;br /&gt;
| Class Grow Array Handler? || ([[vi.lib]]\Utility\XGrowArr-llb\Cls_GrowArr.xnode)&lt;br /&gt;
|-&lt;br /&gt;
| Regular Expression || ([[vi.lib]]\regexp\Match Regular Expression.xnode)&lt;br /&gt;
|-&lt;br /&gt;
| Shared Variables || ([[vi.lib]]\variable\varXNode.llb\vi.lib\variable\varXNode.llb\varXNode.xnode)&lt;br /&gt;
|-&lt;br /&gt;
| Timed Loops || ([[vi.lib]]\Platform\TimedLoop\XDataNode\XDataNode.xnode)&lt;br /&gt;
|-&lt;br /&gt;
| Database Variant To Data || ([[vi.lib]]\addons\database\_DB Variant To Data\Database Variant To Data.xnode)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Ability VIs ==&lt;br /&gt;
:&#039;&#039;Main Article: [[XNodes:List of XNode Abilities|List of XNode Abilities]].&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== XNodes in the Development Environment==&lt;br /&gt;
XNodes can be added to palettes as if they were plain [[VI]]s, however the icon&lt;br /&gt;
that is displayed in the palette is that of the [[Initialize (XNode Ability)|Initialize]] Ability vi and not the image created by the [[Image (XNode Ability)|Image]] Ability vi.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{portal}}&lt;br /&gt;
*[[External Nodes]]&lt;br /&gt;
*[[XControls]]&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=XNodes&amp;diff=186</id>
		<title>XNodes</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=XNodes&amp;diff=186"/>
		<updated>2007-03-16T08:00:09Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: namespace&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;XNodes&#039;&#039;&#039; are a technology built into [[LabVIEW 8.0]]+ that allows dynamic edit-time macro support.&lt;br /&gt;
&lt;br /&gt;
XNodes are [[Library|Libraries]] that feature several &amp;quot;Ability&amp;quot; [[VI]]s which consist of various events and methods of the XNode.&lt;br /&gt;
&lt;br /&gt;
===XNodes used in LabVIEW 8.2===&lt;br /&gt;
{|cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Class Aggregate Handler? || ([[vi.lib]]\Utility\AggHandler\Cls_AggHandler.xnode)&lt;br /&gt;
|-&lt;br /&gt;
| Class Grow Array Handler? || ([[vi.lib]]\Utility\XGrowArr-llb\Cls_GrowArr.xnode)&lt;br /&gt;
|-&lt;br /&gt;
| Regular Expression || ([[vi.lib]]\regexp\Match Regular Expression.xnode)&lt;br /&gt;
|-&lt;br /&gt;
| Shared Variables || ([[vi.lib]]\variable\varXNode.llb\vi.lib\variable\varXNode.llb\varXNode.xnode)&lt;br /&gt;
|-&lt;br /&gt;
| Timed Loops || ([[vi.lib]]\Platform\TimedLoop\XDataNode\XDataNode.xnode)&lt;br /&gt;
|-&lt;br /&gt;
| Database Variant To Data || ([[vi.lib]]\addons\database\_DB Variant To Data\Database Variant To Data.xnode)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Ability VIs ==&lt;br /&gt;
:&#039;&#039;Main Article: [[XNodes:List of XNode Abilities|List of XNode Abilities]].&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{portal}}&lt;br /&gt;
*[[External Nodes]]&lt;br /&gt;
*[[XControls]]&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Template:XNode_Ability/doc&amp;diff=185</id>
		<title>Template:XNode Ability/doc</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Template:XNode_Ability/doc&amp;diff=185"/>
		<updated>2007-03-16T07:58:56Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: example added&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Usage ==&lt;br /&gt;
{| style=&amp;quot;background: transparent;&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{XNode Ability&lt;br /&gt;
| name = &lt;br /&gt;
| public_name =&lt;br /&gt;
| deprecated_prefer =&lt;br /&gt;
| introduced_version_number =&lt;br /&gt;
| deprecated_version_number =&lt;br /&gt;
| is_not_ability =&lt;br /&gt;
| provides ui = &lt;br /&gt;
| os handled =&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
{| style=&amp;quot;background: transparent;&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{XNode Ability&lt;br /&gt;
| name = Ability5&lt;br /&gt;
| public_name = TheAbility5&lt;br /&gt;
| deprecated_prefer = Ability6&lt;br /&gt;
| introduced_version_number = 8.20&lt;br /&gt;
| deprecated_version_number = 8.21&lt;br /&gt;
| is_not_ability =&lt;br /&gt;
| provides ui = No&lt;br /&gt;
| os handled = Yes&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Xnodes&amp;diff=184</id>
		<title>Xnodes</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Xnodes&amp;diff=184"/>
		<updated>2007-03-16T07:54:03Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: #REDIRECT XNodes&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[XNodes]]&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Template:Portal&amp;diff=183</id>
		<title>Template:Portal</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Template:Portal&amp;diff=183"/>
		<updated>2007-03-16T07:53:28Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: from http://en.wikipedia.org/wiki/Template:Portal&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;margin: 0 0 0 0.5em; border: solid #aaa 1px; background: #f9f9f9; font-size: 85%;&amp;quot; class=&amp;quot;tright&amp;quot;&amp;gt;&lt;br /&gt;
{| style=&amp;quot;background: transparent;&amp;quot; width={{{boxsize|{{{4|0}}}}}}&lt;br /&gt;
| &amp;lt;div style=&amp;quot;position: relative; width: {{{size|{{{3|32}}}}}}px; height: 28px; overflow: hidden&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: absolute; top: 0px; left: 0px; z-index: 2&amp;quot;&amp;gt; [[Image:{{{image|{{{2|Portal.png}}}}}}|{{{size|{{{3|32}}}}}}x28px|Portal:{{{name|{{{1|{{PAGENAME}}}}}}}}]]&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
|| &#039;&#039;&#039;&#039;&#039;[[Portal:{{{name|{{{1|{{PAGENAME}}}}}}}}|{{{name|{{{1|{{PAGENAME}}}}}}}} Portal]]&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|}&amp;lt;/div&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&amp;lt;br clear=all /&amp;gt;&lt;br /&gt;
{{protected template}}&lt;br /&gt;
&lt;br /&gt;
==Use==&lt;br /&gt;
This template is used to link an article to its related [[Portal:List of portals|portal]].&lt;br /&gt;
&lt;br /&gt;
;Optional parameters&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;{{Portal|name|image|size|boxsize}}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
==Location==&lt;br /&gt;
This template is to be placed at the bottom of the article in the &amp;quot;See also&amp;quot; section.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=File:Portal.png&amp;diff=182</id>
		<title>File:Portal.png</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=File:Portal.png&amp;diff=182"/>
		<updated>2007-03-16T07:52:45Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: http://en.wikipedia.org/wiki/Image:Portal.svg&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;http://en.wikipedia.org/wiki/Image:Portal.svg&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=XNodes&amp;diff=181</id>
		<title>XNodes</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=XNodes&amp;diff=181"/>
		<updated>2007-03-16T07:52:03Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: ...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;XNodes&#039;&#039;&#039; are a technology built into [[LabVIEW 8.0]]+ that allows dynamic edit-time macro support.&lt;br /&gt;
&lt;br /&gt;
XNodes are [[Library|Libraries]] that feature several &amp;quot;Ability&amp;quot; [[VI]]s which consist of various events and methods of the XNode.&lt;br /&gt;
&lt;br /&gt;
===XNodes used in LabVIEW 8.2===&lt;br /&gt;
{|cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Class Aggregate Handler? || ([[vi.lib]]\Utility\AggHandler\Cls_AggHandler.xnode)&lt;br /&gt;
|-&lt;br /&gt;
| Class Grow Array Handler? || ([[vi.lib]]\Utility\XGrowArr-llb\Cls_GrowArr.xnode)&lt;br /&gt;
|-&lt;br /&gt;
| Regular Expression || ([[vi.lib]]\regexp\Match Regular Expression.xnode)&lt;br /&gt;
|-&lt;br /&gt;
| Shared Variables || ([[vi.lib]]\variable\varXNode.llb\vi.lib\variable\varXNode.llb\varXNode.xnode)&lt;br /&gt;
|-&lt;br /&gt;
| Timed Loops || ([[vi.lib]]\Platform\TimedLoop\XDataNode\XDataNode.xnode)&lt;br /&gt;
|-&lt;br /&gt;
| Database Variant To Data || ([[vi.lib]]\addons\database\_DB Variant To Data\Database Variant To Data.xnode)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Ability VIs ==&lt;br /&gt;
:&#039;&#039;Main Article: [[List of XNode Abilities]].&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{portal}}&lt;br /&gt;
*[[External Nodes]]&lt;br /&gt;
*[[XControls]]&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=XNodes&amp;diff=180</id>
		<title>XNodes</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=XNodes&amp;diff=180"/>
		<updated>2007-03-16T07:51:41Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: portal?&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;XNodes&#039;&#039;&#039; are a technology built into [[LabVIEW 8.0]]+ that allows dynamic edit-time macro support.&lt;br /&gt;
&lt;br /&gt;
XNodes are [[Library|Libraries]] that feature several &amp;quot;Ability&amp;quot; [[VI]]s which consist of various events and methods of the XNode.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
{{portal}}&lt;br /&gt;
&lt;br /&gt;
===XNodes used in LabVIEW 8.2===&lt;br /&gt;
{|cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Class Aggregate Handler? || ([[vi.lib]]\Utility\AggHandler\Cls_AggHandler.xnode)&lt;br /&gt;
|-&lt;br /&gt;
| Class Grow Array Handler? || ([[vi.lib]]\Utility\XGrowArr-llb\Cls_GrowArr.xnode)&lt;br /&gt;
|-&lt;br /&gt;
| Regular Expression || ([[vi.lib]]\regexp\Match Regular Expression.xnode)&lt;br /&gt;
|-&lt;br /&gt;
| Shared Variables || ([[vi.lib]]\variable\varXNode.llb\vi.lib\variable\varXNode.llb\varXNode.xnode)&lt;br /&gt;
|-&lt;br /&gt;
| Timed Loops || ([[vi.lib]]\Platform\TimedLoop\XDataNode\XDataNode.xnode)&lt;br /&gt;
|-&lt;br /&gt;
| Database Variant To Data || ([[vi.lib]]\addons\database\_DB Variant To Data\Database Variant To Data.xnode)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Ability VIs ==&lt;br /&gt;
:&#039;&#039;Main Article: [[List of XNode Abilities]].&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
*[[External Nodes]]&lt;br /&gt;
*[[XControls]]&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=XNode_Abilities&amp;diff=179</id>
		<title>XNode Abilities</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=XNode_Abilities&amp;diff=179"/>
		<updated>2007-03-16T07:51:00Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: namespace&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[XNodes:List of XNode Abilities]]&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Template:Portal&amp;diff=178</id>
		<title>Template:Portal</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Template:Portal&amp;diff=178"/>
		<updated>2007-03-16T07:48:55Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: from http://en.wikipedia.org/wiki/Template:Portal&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;margin: 0 0 0 0.5em; border: solid #aaa 1px; background: #f9f9f9; font-size: 85%;&amp;quot; class=&amp;quot;tright&amp;quot;&amp;gt;&lt;br /&gt;
{| style=&amp;quot;background: transparent;&amp;quot; width={{{boxsize|{{{4|0}}}}}}&lt;br /&gt;
| &amp;lt;div style=&amp;quot;position: relative; width: {{{size|{{{3|32}}}}}}px; height: 28px; overflow: hidden&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: absolute; top: 0px; left: 0px; z-index: 2&amp;quot;&amp;gt; [[Image:{{{image|{{{2|Portal.svg}}}}}}|{{{size|{{{3|32}}}}}}x28px|Portal:{{{name|{{{1|{{PAGENAME}}}}}}}}]]&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
|| &#039;&#039;&#039;&#039;&#039;[[Portal:{{{name|{{{1|{{PAGENAME}}}}}}}}|{{{name|{{{1|{{PAGENAME}}}}}}}} Portal]]&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|}&amp;lt;/div&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&amp;lt;br clear=all /&amp;gt;&lt;br /&gt;
{{protected template}}&lt;br /&gt;
&lt;br /&gt;
==Use==&lt;br /&gt;
This template is used to link an article to its related [[Portal:List of portals|portal]].&lt;br /&gt;
&lt;br /&gt;
;Optional parameters&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;{{Portal|name|image|size|boxsize}}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
==Location==&lt;br /&gt;
This template is to be placed at the bottom of the article in the &amp;quot;See also&amp;quot; section.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=List_of_XNode_Abilities&amp;diff=176</id>
		<title>List of XNode Abilities</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=List_of_XNode_Abilities&amp;diff=176"/>
		<updated>2007-03-16T07:46:09Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: List of XNode Abilities moved to XNodes:List of XNode Abilities: namespace&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a list of the Ability [[VI]]s for [[XNodes]] in LabVIEW 8.20.&lt;br /&gt;
(Originally created by Dany Allard and updated by Aitor Solar)&lt;br /&gt;
&lt;br /&gt;
{|cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Ability Name || Public Name || Provides UI? || OS Messages Handled? || Deprecated in [[LabVIEW 8.20]]&lt;br /&gt;
|-&lt;br /&gt;
| [[State (XNode Ability)|State]] || [[State (XNode Ability)|State]] || N/A || N/A || No&lt;br /&gt;
|-&lt;br /&gt;
| [[AdaptToInputs (XNode Ability)|AdaptToInputs]] || [[AdaptToInputs (XNode Ability)|AdaptToInputs]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[AugmentSelf (XNode Ability)|AugmentSelf]] || [[AugmentSelf (XNode Ability)|AugmentSelf]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[AutotoolRegions (XNode Ability)|AutotoolRegions]] || [[GetAutotoolRegions (XNode Ability)|GetAutotoolRegions]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[Bounds (XNode Ability)|Bounds]] || [[GetBounds (XNode Ability)|GetBounds]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[BuildMenu (XNode Ability)|BuildMenu]] || [[BuildMenu2 (XNode Ability)|BuildMenu2]] || No || No || Yes, use [[BuildMenu3 (XNode Ability)|BuildMenu3]]&lt;br /&gt;
|-&lt;br /&gt;
| [[BuildMenu3 (XNode Ability)|BuildMenu3]] || [[BuildMenu3 (XNode Ability)|BuildMenu3]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[BuildPopup (XNode Ability)|BuildPopup]] || [[BuildMenu (XNode Ability)|BuildMenu]] || No || No || Yes, use [[BuildMenu3 (XNode Ability)|BuildMenu3]]&lt;br /&gt;
|-&lt;br /&gt;
| [[CanAcceptDataDrag (XNode Ability)|CanAcceptDataDrag]] || [[CanAcceptDataDrag (XNode Ability)|CanAcceptDataDrag]] || No || No || Yes, use [[CanAcceptDataDrag2 (XNode Ability)|CanAcceptDataDrag2]]&lt;br /&gt;
|-&lt;br /&gt;
| [[CanAcceptDataDrag2 (XNode Ability)|CanAcceptDataDrag2]] || [[CanAcceptDataDrag2 (XNode Ability)|CanAcceptDataDrag2]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[Compare (XNode Ability)|Compare ]] || [[Compare (XNode Ability)|Compare ]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[Copy (XNode Ability)|Copy]] || [[Copy (XNode Ability)|Copy]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[DataDrag (XNode Ability)|DataDrag]] || [[OnDataDrag (XNode Ability)|OnDataDrag]] || Yes || Yes || Yes, use [[DataDrag2 (XNode Ability)|DataDrag2]]&lt;br /&gt;
|-&lt;br /&gt;
| [[DataDrag2 (XNode Ability)|DataDrag2]] || [[OnDataDrag2 (XNode Ability)|OnDataDrag2]] || Yes || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| [[DisplayName (XNode Ability)|DisplayName]] || [[GetDisplayName (XNode Ability)|GetDisplayName]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[DoubleClick (XNode Ability)|DoubleClick]] || [[OnDoubleClick (XNode Ability)|OnDoubleClick]] || Yes || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| [[Feedsthrough (XNode Ability)|Feedsthrough]] || [[CalculateFeedthrough (XNode Ability)|CalculateFeedthrough]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[GenerateCode (XNode Ability)|GenerateCode]] || [[GenerateCode (XNode Ability)|GenerateCode]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[GetDataForDrag (XNode Ability)|GetDataForDrag]] || [[GetDataForDrag (XNode Ability)|GetDataForDrag]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[GetDisplayName2 (XNode Ability)|GetDisplayName2]] || [[GetDisplayName2 (XNode Ability)|GetDisplayName2]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[GetErrors3 (XNode Ability)|GetErrors3]] || [[GetErrors3 (XNode Ability)|GetErrors3]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[GetTerms3 (XNode Ability)|GetTerms3]] || [[GetTerms3 (XNode Ability)|GetTerms3]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[GrowInfo (XNode Ability)|GrowInfo]] || [[GetGrowInfo (XNode Ability)|GetGrowInfo]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[Help (XNode Ability)|Help]] || [[GetHelp (XNode Ability)|GetHelp]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[Image (XNode Ability)|Image]] || [[GetImage (XNode Ability)|GetImage]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[Initialize (XNode Ability)|Initialize]] || [[Initialize (XNode Ability)|Initialize]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[ListErrors (XNode Ability)|ListErrors]] || [[GetErrors (XNode Ability)|GetErrors]] || No || No || Yes, use [[GetErrors3 (XNode Ability)|GetErrors3]]&lt;br /&gt;
|-&lt;br /&gt;
| [[ListErrors2 (XNode Ability)|ListErrors2]] || [[GetErrors2 (XNode Ability)|GetErrors2]] || No || No || Yes, use [[GetErrors3 (XNode Ability)|GetErrors3]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Message (XNode Ability)|Message]] || [[Message (XNode Ability)|Message]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[MessageWithUI (XNode Ability)|MessageWithUI]] || [[MessageWithUI (XNode Ability)|MessageWithUI]] || Yes || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| [[MessageWithoutEffect (XNode Ability)|MessageWithoutEffect]] || [[MessageWithoutEffect (XNode Ability)|MessageWithoutEffect]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[MessageWithUIWithoutEffect (XNode Ability)|MessageWithUIWithoutEffect]] || [[MessageWithUIWithoutEffect (XNode Ability)|MessageWithUIWithoutEffect]] || Yes || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| [[ModifyCode (XNode Ability)|ModifyCode]] || [[ModifyCode (XNode Ability)|ModifyCode]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[MutateForPrevious (XNode Ability)|MutateForPrevious]] || [[MutateForPrevious (XNode Ability)|MutateForPrevious]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[OnFontChange (XNode Ability)|OnFontChange]] || [[OnFontChange (XNode Ability)|OnFontChange]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[OperateClick (XNode Ability)|OperateClick]] || [[OnOperateClick (XNode Ability)|OnOperateClick]] || Yes || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| [[RefeeChanged (XNode Ability)|RefeeChanged]] || [[OnRefeeChange (XNode Ability)|OnRefeeChange]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[ReplaceSelf (XNode Ability)|ReplaceSelf]] || [[ReplaceSelf (XNode Ability)|ReplaceSelf]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[RespondToDrop (XNode Ability)|RespondToDrop]] || [[OnDrop (XNode Ability)|OnDrop]] || Yes || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| [[SaveForPrevious (XNode Ability)|SaveForPrevious]] || [[SaveForPrevious (XNode Ability)|SaveForPrevious]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[SelectMenu (XNode Ability)|SelectMenu]] || [[SelectMenu2 (XNode Ability)|SelectMenu2]] || Yes || Yes || Yes, use [[SelectMenu3 (XNode Ability)|SelectMenu3]]&lt;br /&gt;
|-&lt;br /&gt;
| [[SelectMenu3 (XNode Ability)|SelectMenu3]] || [[SelectMenu3 (XNode Ability)|SelectMenu3]] || Yes || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| [[SelectPopUp (XNode Ability)|SelectPopUp]] || [[SelectMenu (XNode Ability)|SelectMenu]] || Yes || Yes || Yes, use [[SelectMenu3 (XNode Ability)|SelectMenu3]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Size (XNode Ability)|Size]] || [[OnResize (XNode Ability)|OnResize]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[SpecifyInsertTerm (XNode Ability)|SpecifyInsertTerm]] || [[SpecifyInsertTerm (XNode Ability)|SpecifyInsertTerm]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[Terms (XNode Ability)|Terms]] || [[GetTerms (XNode Ability)|GetTerms]] || No || No || Yes, use [[GetTerms3 (XNode Ability)|GetTerms3]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Terms2 (XNode Ability)|Terms2]] || [[GetTerms2 (XNode Ability)|GetTerms2]] || No || No || Yes, use [[GetTerms3 (XNode Ability)|GetTerms3]]&lt;br /&gt;
|-&lt;br /&gt;
| [[UpdateState (XNode Ability)|UpdateState]] || [[UpdateState (XNode Ability)|UpdateState]] || No || No || Yes, use [[UpdateStateWithRef (XNode Ability)|UpdateStateWithRef]]&lt;br /&gt;
|-&lt;br /&gt;
| [[UpdateStateWithRef (XNode Ability)|UpdateStateWithRef]] || [[UpdateState2 (XNode Ability)|UpdateState2]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[HelpMap (XNode Ability)|HelpMap]] || (Not an ability VI) || N/A || N/A || N/A&lt;br /&gt;
|-&lt;br /&gt;
| [[L10N (XNode Ability)|L10N]] || (Not an ability VI) || N/A || N/A || N/A&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=175</id>
		<title>Template:XNode Ability</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=175"/>
		<updated>2007-03-16T07:45:32Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: ugly, now fixed&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| cellspacing=&amp;quot;5&amp;quot; style=&amp;quot;width: 30em; font-size: 90%; text-align: left; float: right; clear: right; border: 1px solid #aaa; background-color: #f5f9fd; color: black; margin-bottom: 0.5em; margin-left: 1em; padding: 0.2em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | {{{name}}} (XNode Ability)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | [[XNodes:List of XNode Abilities|List of XNode Abilities]]&lt;br /&gt;
{{#if:{{{public name|{{{public_name|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Public Name:&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;{{{public name|{{{public_name|}}}}}}&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;|&lt;br /&gt;
}}{{#if:{{{deprecated prefer|{{{deprecated_prefer|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Deprecated, prefer:&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;[[XNodes:{{{deprecated prefer|{{{deprecated_prefer|}}}}}}|{{{deprecated prefer|{{{deprecated_prefer|}}}}}}]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;|&lt;br /&gt;
}}{{#if:{{{introduced version number|{{{introduced_version_number|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Introduced in:&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;[[LabVIEW {{{introduced version number|{{{introduced_version_number|}}}}}}]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;|&lt;br /&gt;
}}{{#if:{{{deprecated version number|{{{deprecated_version_number|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Deprecated in:&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;[[LabVIEW {{{deprecated version number|{{{deprecated_version_number|}}}}}}]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;|&lt;br /&gt;
}}{{#if:{{{is not ability|{{{is_not_ability|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;&#039;&#039;Note: This is not an ability VI.&#039;&#039;&amp;lt;/th&amp;gt;&amp;lt;/tr&amp;gt;|&lt;br /&gt;
}}{{#if:{{{provides ui|{{{provides_ui|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Provides UI:&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;{{{provides ui|{{{provides_ui|}}}}}}&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;|&lt;br /&gt;
}}{{#if:{{{os handled|{{{os_handled|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;OS Messages Handled:&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;{{{os handled|{{{os_handled|}}}}}}&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;|&lt;br /&gt;
}}&lt;br /&gt;
|}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{{{FULLPAGENAME}}/doc}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=174</id>
		<title>Template:XNode Ability</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=174"/>
		<updated>2007-03-16T07:44:49Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: namespace additions, ui, os&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| cellspacing=&amp;quot;5&amp;quot; style=&amp;quot;width: 30em; font-size: 90%; text-align: left; float: right; clear: right; border: 1px solid #aaa; background-color: #f5f9fd; color: black; margin-bottom: 0.5em; margin-left: 1em; padding: 0.2em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | {{{name}}} (XNode Ability)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | [[XNodes:List of XNode Abilities]]&lt;br /&gt;
{{#if:{{{public name|{{{public_name|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Public Name:&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;{{{public name|{{{public_name|}}}}}}&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;|&lt;br /&gt;
}}{{#if:{{{deprecated prefer|{{{deprecated_prefer|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Deprecated, prefer:&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;[[XNodes:{{{deprecated prefer|{{{deprecated_prefer|}}}}}}|{{{deprecated prefer|{{{deprecated_prefer|}}}}}}]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;|&lt;br /&gt;
}}{{#if:{{{introduced version number|{{{introduced_version_number|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Introduced in:&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;[[LabVIEW {{{introduced version number|{{{introduced_version_number|}}}}}}]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;|&lt;br /&gt;
}}{{#if:{{{deprecated version number|{{{deprecated_version_number|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Deprecated in:&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;[[LabVIEW {{{deprecated version number|{{{deprecated_version_number|}}}}}}]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;|&lt;br /&gt;
}}{{#if:{{{is not ability|{{{is_not_ability|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;&#039;&#039;Note: This is not an ability VI.&#039;&#039;&amp;lt;/th&amp;gt;&amp;lt;/tr&amp;gt;|&lt;br /&gt;
}}{{#if:{{{provides ui|{{{provides_ui|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Provides UI:&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;{{{provides ui|{{{provides_ui|}}}}}}&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;|&lt;br /&gt;
}}{{#if:{{{os handled|{{{os_handled|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;OS Messages Handled:&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;{{{os handled|{{{os_handled|}}}}}}&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;|&lt;br /&gt;
}}&lt;br /&gt;
|}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{{{FULLPAGENAME}}/doc}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=173</id>
		<title>Template:XNode Ability</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=173"/>
		<updated>2007-03-16T07:13:03Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: ....&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| cellspacing=&amp;quot;5&amp;quot; style=&amp;quot;width: 30em; font-size: 90%; text-align: left; float: right; clear: right; border: 1px solid #aaa; background-color: #f5f9fd; color: black; margin-bottom: 0.5em; margin-left: 1em; padding: 0.2em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | {{{name}}} (XNode Ability)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | [[List of XNode Abilities]]&lt;br /&gt;
{{#if:{{{public name|{{{public_name|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Public Name:&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;{{{public name|{{{public_name|}}}}}}&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;|&lt;br /&gt;
}}{{#if:{{{deprecated prefer|{{{deprecated_prefer|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Deprecated, prefer:&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;[[{{{deprecated prefer|{{{deprecated_prefer|}}}}}} (XNode Ability)|{{{deprecated prefer|{{{deprecated_prefer|}}}}}}]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;|&lt;br /&gt;
}}{{#if:{{{introduced version number|{{{introduced_version_number|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Introduced in:&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;[[LabVIEW {{{introduced version number|{{{introduced_version_number|}}}}}}]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;|&lt;br /&gt;
}}{{#if:{{{deprecated version number|{{{deprecated_version_number|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Deprecated in:&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;[[LabVIEW {{{deprecated version number|{{{deprecated_version_number|}}}}}}]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;|&lt;br /&gt;
}}{{#if:{{{is not ability|{{{is_not_ability|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;&#039;&#039;Note: This is not an ability VI.&#039;&#039;&amp;lt;/th&amp;gt;&amp;lt;/tr&amp;gt;|&lt;br /&gt;
}}&lt;br /&gt;
|}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{{{FULLPAGENAME}}/doc}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=172</id>
		<title>Template:XNode Ability</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=172"/>
		<updated>2007-03-16T07:12:27Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: ...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| cellspacing=&amp;quot;5&amp;quot; style=&amp;quot;width: 30em; font-size: 90%; text-align: left; float: right; clear: right; border: 1px solid #aaa; background-color: #f5f9fd; color: black; margin-bottom: 0.5em; margin-left: 1em; padding: 0.2em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | {{{name}}} (XNode Ability)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | [[List of XNode Abilities]]&lt;br /&gt;
{{#if:{{{public name|{{{public_name|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Public Name:&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;{{{public name|{{{public_name|}}}}}}&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
{{#if:{{{deprecated prefer|{{{deprecated_prefer|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Deprecated, prefer:&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;[[{{{deprecated prefer|{{{deprecated_prefer|}}}}}} (XNode Ability)|{{{deprecated prefer|{{{deprecated_prefer|}}}}}}]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
{{#if:{{{introduced version number|{{{introduced_version_number|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Introduced in:&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;[[LabVIEW {{{introduced version number|{{{introduced_version_number|}}}}}}]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
{{#if:{{{deprecated version number|{{{deprecated_version_number|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Deprecated in:&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;[[LabVIEW {{{deprecated version number|{{{deprecated_version_number|}}}}}}]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{#if:{{{is not ability|{{{is_not_ability|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;&#039;&#039;Note: This is not an ability VI.&#039;&#039;&amp;lt;/th&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
|}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{{{FULLPAGENAME}}/doc}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=169</id>
		<title>Template:XNode Ability</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=169"/>
		<updated>2007-03-16T07:09:39Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: hmm&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| cellspacing=&amp;quot;5&amp;quot; style=&amp;quot;width: 30em; font-size: 90%; text-align: left; float: right; clear: right; border: 1px solid #aaa; background-color: #f5f9fd; color: black; margin-bottom: 0.5em; margin-left: 1em; padding: 0.2em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | {{{name}}} (XNode Ability)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | [[List of XNode Abilities]]&lt;br /&gt;
{{#if:{{{deprecated prefer|{{{deprecated_prefer|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Deprecated, prefer:&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;[[{{{deprecated prefer|{{{deprecated_prefer|}}}}}} (XNode Ability)|{{{deprecated prefer|{{{deprecated_prefer|}}}}}}]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
{{#if:{{{introduced version number|{{{introduced_version_number|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Introduced in:&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;[[LabVIEW {{{introduced version number|{{{introduced_version_number|}}}}}}]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
{{#if:{{{deprecated version number|{{{deprecated_version_number|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Deprecated in:&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;[[LabVIEW {{{deprecated version number|{{{deprecated_version_number|}}}}}}]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
}}{{#if:{{{public name|{{{public_name|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Public Name:&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;{{{public name|{{{public_name|}}}}}}&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
}}{{#if:{{{is not ability|{{{is_not_ability|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;&#039;&#039;Note: This is not an ability VI.&#039;&#039;&amp;lt;/th&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
|}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{{{FULLPAGENAME}}/doc}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=168</id>
		<title>Template:XNode Ability</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=168"/>
		<updated>2007-03-16T07:08:28Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: oldie&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| cellspacing=&amp;quot;5&amp;quot; style=&amp;quot;width: 30em; font-size: 90%; text-align: left; float: right; clear: right; border: 1px solid #aaa; background-color: #f5f9fd; color: black; margin-bottom: 0.5em; margin-left: 1em; padding: 0.2em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | {{{name}}} (XNode Ability)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | [[List of XNode Abilities]]&lt;br /&gt;
|-&lt;br /&gt;
{{#if:{{{deprecated prefer|{{{deprecated_prefer|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Deprecated, prefer:&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;[[{{{deprecated prefer|{{{deprecated_prefer|}}}}}} (XNode Ability)|{{{deprecated prefer|{{{deprecated_prefer|}}}}}}]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
}}{{#if:{{{introduced version number|{{{introduced_version_number|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Introduced in:&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;[[LabVIEW {{{introduced version number|{{{introduced_version_number|}}}}}}]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
}}{{#if:{{{deprecated version number|{{{deprecated_version_number|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Deprecated in:&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;[[LabVIEW {{{deprecated version number|{{{deprecated_version_number|}}}}}}]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
}}{{#if:{{{public name|{{{public_name|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Public Name:&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;{{{public name|{{{public_name|}}}}}}&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
}}{{#if:{{{is not ability|{{{is_not_ability|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;&#039;&#039;Note: This is not an ability VI.&#039;&#039;&amp;lt;/th&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
|}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{{{FULLPAGENAME}}/doc}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=167</id>
		<title>Template:XNode Ability</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=167"/>
		<updated>2007-03-16T07:00:44Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: ...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| cellspacing=&amp;quot;5&amp;quot; style=&amp;quot;width: 30em; font-size: 90%; text-align: left; float: right; clear: right; border: 1px solid #aaa; background-color: #f5f9fd; color: black; margin-bottom: 0.5em; margin-left: 1em; padding: 0.2em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | {{{name}}} (XNode Ability)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | [[List of XNode Abilities]]&lt;br /&gt;
|-&lt;br /&gt;
{{#if:{{{public name|{{{public_name|}}}}}}|!Public Name: {{!}}{{{public name|{{{public_name|}}}}}}&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{#if:{{{introduced version number|{{{introduced_version_number|}}}}}}|!Introduced in: &lt;br /&gt;
{{!}}[[LabVIEW {{{introduced version number|{{{introduced_version_number|}}}}}}]]&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{#if:{{{deprecated version number|{{{deprecated_version_number|}}}}}}|!Deprecated in: &lt;br /&gt;
{{!}}[[LabVIEW {{{deprecated version number|{{{deprecated_version_number|}}}}}}]]&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{#if:{{{deprecated prefer|{{{deprecated_prefer|}}}}}}|!Deprecated, prefer: &lt;br /&gt;
{{!}}[[{{{deprecated prefer|{{{deprecated_prefer|}}}}}} (XNode Ability)|{{{deprecated prefer|{{{deprecated_prefer|}}}}}}]]&lt;br /&gt;
}}&lt;br /&gt;
|}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{{{FULLPAGENAME}}/doc}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=166</id>
		<title>Template:XNode Ability</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=166"/>
		<updated>2007-03-16T06:58:11Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: well that was easy&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| cellspacing=&amp;quot;5&amp;quot; style=&amp;quot;width: 30em; font-size: 90%; text-align: left; float: right; clear: right; border: 1px solid #aaa; background-color: #f5f9fd; color: black; margin-bottom: 0.5em; margin-left: 1em; padding: 0.2em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | {{{name}}} (XNode Ability)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | [[List of XNode Abilities]]&lt;br /&gt;
|-&lt;br /&gt;
{{#if:{{{public name|{{{public_name|}}}}}}|!Public Name: {{!}}{{{public name|{{{public_name|}}}}}}&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{#if:{{{introduced version number|{{{introduced_version_number|}}}}}}|!Introduced in: {{!}}[[LabVIEW {{{introduced version number|{{{introduced_version_number|}}}}}}]]&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{#if:{{{deprecated version number|{{{deprecated_version_number|}}}}}}|!Deprecated in: {{!}}[[LabVIEW {{{deprecated version number|{{{deprecated_version_number|}}}}}}]]&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{#if:{{{deprecated prefer|{{{deprecated_prefer|}}}}}}|!Deprecated, prefer: {{!}}[[{{{deprecated prefer|{{{deprecated_prefer|}}}}}} (XNode Ability)|{{{deprecated prefer|{{{deprecated_prefer|}}}}}}]]&lt;br /&gt;
}}&lt;br /&gt;
|}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{{{FULLPAGENAME}}/doc}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=162</id>
		<title>Template:XNode Ability</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=162"/>
		<updated>2007-03-16T06:55:37Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: ...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| cellspacing=&amp;quot;5&amp;quot; style=&amp;quot;width: 30em; font-size: 90%; text-align: left; float: right; clear: right; border: 1px solid #aaa; background-color: #f5f9fd; color: black; margin-bottom: 0.5em; margin-left: 1em; padding: 0.2em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | {{{name}}} (XNode Ability)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | [[List of XNode Abilities]]&lt;br /&gt;
|-&lt;br /&gt;
{{#if:{{{public name|{{{public_name|}}}}}}|!Public Name: &amp;lt;nowiki&amp;gt;|&amp;lt;/nowiki&amp;gt;{{{public name|{{{public_name|}}}}}}&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{#if:{{{introduced version number|{{{introduced_version_number|}}}}}}|!Introduced in: &amp;lt;nowiki&amp;gt;|&amp;lt;/nowiki&amp;gt;[[LabVIEW {{{introduced version number|{{{introduced_version_number|}}}}}}]]&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{#if:{{{deprecated version number|{{{deprecated_version_number|}}}}}}|!Deprecated in: &amp;lt;nowiki&amp;gt;|&amp;lt;/nowiki&amp;gt;[[LabVIEW {{{deprecated version number|{{{deprecated_version_number|}}}}}}]]&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{#if:{{{deprecated prefer|{{{deprecated_prefer|}}}}}}|!Deprecated, prefer: &amp;lt;nowiki&amp;gt;|&amp;lt;/nowiki&amp;gt;[[{{{deprecated prefer|{{{deprecated_prefer|}}}}}} (XNode Ability)|{{{deprecated prefer|{{{deprecated_prefer|}}}}}}]]&lt;br /&gt;
}}&lt;br /&gt;
|}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{{{FULLPAGENAME}}/doc}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=160</id>
		<title>Template:XNode Ability</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=160"/>
		<updated>2007-03-16T06:54:18Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: dumb tables&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| cellspacing=&amp;quot;5&amp;quot; style=&amp;quot;width: 30em; font-size: 90%; text-align: left; float: right; clear: right; border: 1px solid #aaa; background-color: #f5f9fd; color: black; margin-bottom: 0.5em; margin-left: 1em; padding: 0.2em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | {{{name}}} (XNode Ability)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | [[List of XNode Abilities]]&lt;br /&gt;
|-&lt;br /&gt;
{{#if:{{{public name|{{{public_name|}}}}}}|!Public Name: &amp;amp;#124;{{{public name|{{{public_name|}}}}}}&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{#if:{{{introduced version number|{{{introduced_version_number|}}}}}}|!Introduced in: &amp;amp;#124;[[LabVIEW {{{introduced version number|{{{introduced_version_number|}}}}}}]]&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{#if:{{{deprecated version number|{{{deprecated_version_number|}}}}}}|!Deprecated in: &amp;amp;#124;[[LabVIEW {{{deprecated version number|{{{deprecated_version_number|}}}}}}]]&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{#if:{{{deprecated prefer|{{{deprecated_prefer|}}}}}}|!Deprecated, prefer: &amp;amp;#124;[[{{{deprecated prefer|{{{deprecated_prefer|}}}}}} (XNode Ability)|{{{deprecated prefer|{{{deprecated_prefer|}}}}}}]]&lt;br /&gt;
}}&lt;br /&gt;
|}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{{{FULLPAGENAME}}/doc}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=159</id>
		<title>Template:XNode Ability</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=159"/>
		<updated>2007-03-16T06:51:17Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: test&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| cellspacing=&amp;quot;5&amp;quot; style=&amp;quot;width: 30em; font-size: 90%; text-align: left; float: right; clear: right; border: 1px solid #aaa; background-color: #f5f9fd; color: black; margin-bottom: 0.5em; margin-left: 1em; padding: 0.2em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | {{{name}}} (XNode Ability)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | [[List of XNode Abilities]]&lt;br /&gt;
{{#if:{{{public name|{{{public_name|}}}}}}|&lt;br /&gt;
&amp;amp;#124;-X&lt;br /&gt;
!Public Name: &amp;amp;#124;{{{public name|{{{public_name|}}}}}}&lt;br /&gt;
}}{{#if:{{{introduced version number|{{{introduced_version_number|}}}}}}&lt;br /&gt;
&amp;amp;#124;-Y&lt;br /&gt;
!Introduced in: &amp;amp;#124;[[LabVIEW {{{introduced version number|{{{introduced_version_number|}}}}}}]]&lt;br /&gt;
}}{{#if:{{{deprecated version number|{{{deprecated_version_number|}}}}}}&lt;br /&gt;
&amp;amp;#124;-Z&lt;br /&gt;
!Deprecated in: &amp;amp;#124;[[LabVIEW {{{deprecated version number|{{{deprecated_version_number|}}}}}}]]&lt;br /&gt;
}}{{#if:{{{deprecated prefer|{{{deprecated_prefer|}}}}}}&lt;br /&gt;
&amp;amp;#124;-A&lt;br /&gt;
!Deprecated, prefer: &amp;amp;#124;[[{{{deprecated prefer|{{{deprecated_prefer|}}}}}} (XNode Ability)|{{{deprecated prefer|{{{deprecated_prefer|}}}}}}]]&lt;br /&gt;
}}&lt;br /&gt;
|}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{{{FULLPAGENAME}}/doc}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=158</id>
		<title>Template:XNode Ability</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=158"/>
		<updated>2007-03-16T06:50:45Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| cellspacing=&amp;quot;5&amp;quot; style=&amp;quot;width: 30em; font-size: 90%; text-align: left; float: right; clear: right; border: 1px solid #aaa; background-color: #f5f9fd; color: black; margin-bottom: 0.5em; margin-left: 1em; padding: 0.2em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | {{{name}}} (XNode Ability)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | [[List of XNode Abilities]]&lt;br /&gt;
{{#if:{{{public_name|}}}|&lt;br /&gt;
&amp;amp;#124;-&lt;br /&gt;
!Public Name: &amp;amp;#124;{{{public name|{{{public_name|}}}}}}&lt;br /&gt;
}}{{#if:{{{introduced version number|{{{introduced_version_number|}}}}}}&lt;br /&gt;
&amp;amp;#124;-&lt;br /&gt;
!Introduced in: &amp;amp;#124;[[LabVIEW {{{introduced version number|{{{introduced_version_number|}}}}}}]]&lt;br /&gt;
}}{{#if:{{{deprecated version number|{{{deprecated_version_number|}}}}}}&lt;br /&gt;
&amp;amp;#124;-&lt;br /&gt;
!Deprecated in: &amp;amp;#124;[[LabVIEW {{{deprecated version number|{{{deprecated_version_number|}}}}}}]]&lt;br /&gt;
}}{{#if:{{{deprecated prefer|{{{deprecated_prefer|}}}}}}&lt;br /&gt;
&amp;amp;#124;-&lt;br /&gt;
!Deprecated, prefer: &amp;amp;#124;[[{{{deprecated prefer|{{{deprecated_prefer|}}}}}} (XNode Ability)|{{{deprecated prefer|{{{deprecated_prefer|}}}}}}]]&lt;br /&gt;
}}&lt;br /&gt;
|}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{{{FULLPAGENAME}}/doc}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=156</id>
		<title>Template:XNode Ability</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=156"/>
		<updated>2007-03-16T06:48:17Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: um, maybe this&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| cellspacing=&amp;quot;5&amp;quot; style=&amp;quot;width: 30em; font-size: 90%; text-align: left; float: right; clear: right; border: 1px solid #aaa; background-color: #f5f9fd; color: black; margin-bottom: 0.5em; margin-left: 1em; padding: 0.2em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | {{{name}}} (XNode Ability)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | [[List of XNode Abilities]]&lt;br /&gt;
{{#if:{{{public name|{{{public_name|}}}}}}&lt;br /&gt;
&amp;amp;#124;-&lt;br /&gt;
!Public Name: &amp;amp;#124;{{{public name|{{{public_name|}}}}}}&lt;br /&gt;
}}{{#if:{{{introduced version number|{{{introduced_version_number|}}}}}}&lt;br /&gt;
&amp;amp;#124;-&lt;br /&gt;
!Introduced in: &amp;amp;#124;[[LabVIEW {{{introduced version number|{{{introduced_version_number|}}}}}}]]&lt;br /&gt;
}}{{#if:{{{deprecated version number|{{{deprecated_version_number|}}}}}}&lt;br /&gt;
&amp;amp;#124;-&lt;br /&gt;
!Deprecated in: &amp;amp;#124;[[LabVIEW {{{deprecated version number|{{{deprecated_version_number|}}}}}}]]&lt;br /&gt;
}}{{#if:{{{deprecated prefer|{{{deprecated_prefer|}}}}}}&lt;br /&gt;
&amp;amp;#124;-&lt;br /&gt;
!Deprecated, prefer: &amp;amp;#124;[[{{{deprecated prefer|{{{deprecated_prefer|}}}}}} (XNode Ability)|{{{deprecated prefer|{{{deprecated_prefer|}}}}}}]]&lt;br /&gt;
}}&lt;br /&gt;
|}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{{{FULLPAGENAME}}/doc}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=155</id>
		<title>Template:XNode Ability</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=155"/>
		<updated>2007-03-16T06:47:36Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: fix 1&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| cellspacing=&amp;quot;5&amp;quot; style=&amp;quot;width: 30em; font-size: 90%; text-align: left; float: right; clear: right; border: 1px solid #aaa; background-color: #f5f9fd; color: black; margin-bottom: 0.5em; margin-left: 1em; padding: 0.2em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | {{{name}}} (XNode Ability)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | [[List of XNode Abilities]]&lt;br /&gt;
{{#if:{{{public name|{{{public_name|}}}}}}|&lt;br /&gt;
&amp;amp;#124;-&lt;br /&gt;
!Public Name: &amp;amp;#124;{{{public name|{{{public_name|}}}}}}&lt;br /&gt;
}}{{#if:{{{introduced version number|{{{introduced_version_number|}}}}}}|&lt;br /&gt;
&amp;amp;#124;-&lt;br /&gt;
!Introduced in: &amp;amp;#124;[[LabVIEW {{{introduced version number|{{{introduced_version_number|}}}}}}]]&lt;br /&gt;
}}{{#if:{{{deprecated version number|{{{deprecated_version_number|}}}}}}|&lt;br /&gt;
&amp;amp;#124;-&lt;br /&gt;
!Deprecated in: &amp;amp;#124;[[LabVIEW {{{deprecated version number|{{{deprecated_version_number|}}}}}}]]&lt;br /&gt;
}}{{#if:{{{deprecated prefer|{{{deprecated_prefer|}}}}}}|&lt;br /&gt;
&amp;amp;#124;-&lt;br /&gt;
!Deprecated, prefer: &amp;amp;#124;[[{{{deprecated prefer|{{{deprecated_prefer|}}}}}} (XNode Ability)|{{{deprecated prefer|{{{deprecated_prefer|}}}}}}]]&lt;br /&gt;
}}&lt;br /&gt;
|}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{{{FULLPAGENAME}}/doc}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=153</id>
		<title>Template:XNode Ability</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=153"/>
		<updated>2007-03-16T06:45:30Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: well dang, it works! this should be good for now&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| cellspacing=&amp;quot;5&amp;quot; style=&amp;quot;width: 30em; font-size: 90%; text-align: left; float: right; clear: right; border: 1px solid #aaa; background-color: #f5f9fd; color: black; margin-bottom: 0.5em; margin-left: 1em; padding: 0.2em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | {{{name}}} (XNode Ability)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | [[List of XNode Abilities]]&lt;br /&gt;
{{#if:{{{public name|{{{public_name|}}}}}}|&lt;br /&gt;
&amp;amp;#124;-&lt;br /&gt;
!Public Name: &amp;amp;#124;{{{public name|{{{public_name|}}}}}}&lt;br /&gt;
}}{{#if:{{{introduced version number|{{{introduced_version_number|}}}}}}|&lt;br /&gt;
&amp;amp;#124;-&lt;br /&gt;
!Introduced in: &amp;amp;#124;[[LabVIEW {{{introduced version number|{{{introduced_version_number|}}}}}}]]&lt;br /&gt;
}}{{#if:{{{deprecated version number|{{{deprecated_version_number|}}}}}}|&lt;br /&gt;
&amp;amp;#124;-&lt;br /&gt;
!Deprecated in: &amp;amp;#124;[[LabVIEW {{{deprecated version number|{{{deprecated_version_number|}}}}}}]]&lt;br /&gt;
&amp;amp;#124;-&lt;br /&gt;
}}{{#if:{{{deprecated prefer|{{{deprecated_prefer|}}}}}}|&lt;br /&gt;
!Deprecated, prefer: &amp;amp;#124;[[{{{deprecated prefer|{{{deprecated_prefer|}}}}}} (XNode Ability)|{{{deprecated prefer|{{{deprecated_prefer|}}}}}}]]&lt;br /&gt;
}}&lt;br /&gt;
|}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{{{FULLPAGENAME}}/doc}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=151</id>
		<title>Template:XNode Ability</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=151"/>
		<updated>2007-03-16T06:42:58Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: http://meta.wikimedia.org/wiki/ParserFunctions#Tables --&amp;gt; let&amp;#039;s try this&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| cellspacing=&amp;quot;5&amp;quot; style=&amp;quot;width: 30em; font-size: 90%; text-align: left; float: right; clear: right; border: 1px solid #aaa; background-color: #f5f9fd; color: black; margin-bottom: 0.5em; margin-left: 1em; padding: 0.2em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | {{{name}}} (XNode Ability)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | [[List of XNode Abilities]]&lt;br /&gt;
|-&lt;br /&gt;
!Public Name:&lt;br /&gt;
|{{{public name|{{{public_name|}}}}}}&lt;br /&gt;
{{#if:{{{introduced version number|{{{introduced_version_number|}}}}}}&lt;br /&gt;
&amp;amp;#124;-&lt;br /&gt;
!Introduced in:|[[LabVIEW {{{introduced version number|{{{introduced_version_number|}}}}}}]]&lt;br /&gt;
}}{{#if:{{{deprecated version number|{{{deprecated_version_number|}}}}}}&lt;br /&gt;
&amp;amp;#124;-&lt;br /&gt;
!Deprecated in:&amp;amp;#124;[[LabVIEW {{{deprecated version number|{{{deprecated_version_number|}}}}}}]]&lt;br /&gt;
&amp;amp;#124;-&lt;br /&gt;
}}{{#if:{{{deprecated prefer|{{{deprecated_prefer|}}}}}}&lt;br /&gt;
!Deprecated, prefer:&amp;amp;#124;[[{{{deprecated prefer|{{{deprecated_prefer|}}}}}} (XNode Ability)|{{{deprecated prefer|{{{deprecated_prefer|}}}}}}]]&lt;br /&gt;
}}&lt;br /&gt;
|}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{{{FULLPAGENAME}}/doc}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=148</id>
		<title>Template:XNode Ability</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=148"/>
		<updated>2007-03-16T06:35:10Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: try a rollback then let&amp;#039;s fix it&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| cellspacing=&amp;quot;5&amp;quot; style=&amp;quot;width: 30em; font-size: 90%; text-align: left; float: right; clear: right; border: 1px solid #aaa; background-color: #f5f9fd; color: black; margin-bottom: 0.5em; margin-left: 1em; padding: 0.2em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | {{{name}}} (XNode Ability)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | [[List of XNode Abilities]]&lt;br /&gt;
{{#if:{{{deprecated prefer|{{{deprecated_prefer|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Deprecated, prefer:&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;[[{{{deprecated prefer|{{{deprecated_prefer|}}}}}} (XNode Ability)|{{{deprecated prefer|{{{deprecated_prefer|}}}}}}]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
}}{{#if:{{{introduced version number|{{{introduced_version_number|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Introduced in:&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;[[LabVIEW {{{introduced version number|{{{introduced_version_number|}}}}}}]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
}}{{#if:{{{deprecated version number|{{{deprecated_version_number|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Deprecated in:&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;[[LabVIEW {{{deprecated version number|{{{deprecated_version_number|}}}}}}]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
}}{{#if:{{{public name|{{{public_name|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Public Name:&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;{{{public name|{{{public_name|}}}}}}&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
}}{{#if:{{{is not ability|{{{is_not_ability|}}}}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;&#039;&#039;Note: This is not an ability VI.&#039;&#039;&amp;lt;/th&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
|}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{{{FULLPAGENAME}}/doc}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=146</id>
		<title>Template:XNode Ability</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=146"/>
		<updated>2007-03-16T06:33:00Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: attmpt2&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| cellspacing=&amp;quot;5&amp;quot; style=&amp;quot;width: 30em; font-size: 90%; text-align: left; float: right; clear: right; border: 1px solid #aaa; background-color: #f5f9fd; color: black; margin-bottom: 0.5em; margin-left: 1em; padding: 0.2em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | {{{name}}} (XNode Ability)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | [[List of XNode Abilities]]&lt;br /&gt;
|-&lt;br /&gt;
!Public Name:&lt;br /&gt;
|{{{public name|{{{public_name|}}}}}}&lt;br /&gt;
{{#if:{{{introduced version number|{{{introduced_version_number|}}}}}}&lt;br /&gt;
|-&lt;br /&gt;
!Introduced in:|[[LabVIEW {{{introduced version number|{{{introduced_version_number|}}}}}}]]&lt;br /&gt;
}}{{#if:{{{deprecated version number|{{{deprecated_version_number|}}}}}}&lt;br /&gt;
|-&lt;br /&gt;
!Deprecated in:|[[LabVIEW {{{deprecated version number|{{{deprecated_version_number|}}}}}}]]&lt;br /&gt;
|-&lt;br /&gt;
}}{{#if:{{{deprecated prefer|{{{deprecated_prefer|}}}}}}&lt;br /&gt;
!Deprecated, prefer:|[[{{{deprecated prefer|{{{deprecated_prefer|}}}}}} (XNode Ability)|{{{deprecated prefer|{{{deprecated_prefer|}}}}}}]]&lt;br /&gt;
}}&lt;br /&gt;
|}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{{{FULLPAGENAME}}/doc}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=145</id>
		<title>Template:XNode Ability</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=145"/>
		<updated>2007-03-16T06:31:27Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: attempt 1 to keep new format and conditionals&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| cellspacing=&amp;quot;5&amp;quot; style=&amp;quot;width: 30em; font-size: 90%; text-align: left; float: right; clear: right; border: 1px solid #aaa; background-color: #f5f9fd; color: black; margin-bottom: 0.5em; margin-left: 1em; padding: 0.2em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | {{{name}}} (XNode Ability)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | [[List of XNode Abilities]]&lt;br /&gt;
|-&lt;br /&gt;
!Public Name:&lt;br /&gt;
|{{{public name|{{{public_name|}}}}}}&lt;br /&gt;
{{#if:{{{introduced version number|{{{introduced_version_number|}}}}}}&lt;br /&gt;
|-&lt;br /&gt;
!Introduced in:&lt;br /&gt;
|[[LabVIEW {{{introduced version number|{{{introduced_version_number|}}}}}}]]&lt;br /&gt;
}}{{#if:{{{deprecated version number|{{{deprecated_version_number|}}}}}}&lt;br /&gt;
|-&lt;br /&gt;
!Deprecated in:&lt;br /&gt;
|[[LabVIEW {{{deprecated version number|{{{deprecated_version_number|}}}}}}]]&lt;br /&gt;
|-&lt;br /&gt;
}}{{#if:{{{deprecated prefer|{{{deprecated_prefer|}}}}}}&lt;br /&gt;
!Deprecated, prefer:&lt;br /&gt;
|[[{{{deprecated prefer|{{{deprecated_prefer|}}}}}} (XNode Ability)|{{{deprecated prefer|{{{deprecated_prefer|}}}}}}]]&lt;br /&gt;
}}&lt;br /&gt;
|}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{{{FULLPAGENAME}}/doc}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=XNode_Abilities&amp;diff=142</id>
		<title>XNode Abilities</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=XNode_Abilities&amp;diff=142"/>
		<updated>2007-03-16T06:25:15Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: redirect to list for now, maybe descriptions &amp;amp; stuff later&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[List of XNode Abilities]]&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=XNodes&amp;diff=118</id>
		<title>XNodes</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=XNodes&amp;diff=118"/>
		<updated>2007-03-15T22:57:38Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: /* Ability VIs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;XNodes&#039;&#039;&#039; are a technology built into [[LabVIEW 8.0]]+ that allows dynamic edit-time macro support.&lt;br /&gt;
&lt;br /&gt;
XNodes are [[Library|Libraries]] that feature several &amp;quot;Ability&amp;quot; [[VI]]s which consist of various events and methods of the XNode.&lt;br /&gt;
&lt;br /&gt;
===XNodes used in LabVIEW 8.2===&lt;br /&gt;
{|cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Class Aggregate Handler? || ([[vi.lib]]\Utility\AggHandler\Cls_AggHandler.xnode)&lt;br /&gt;
|-&lt;br /&gt;
| Class Grow Array Handler? || ([[vi.lib]]\Utility\XGrowArr-llb\Cls_GrowArr.xnode)&lt;br /&gt;
|-&lt;br /&gt;
| Regular Expression || ([[vi.lib]]\regexp\Match Regular Expression.xnode)&lt;br /&gt;
|-&lt;br /&gt;
| Shared Variables || ([[vi.lib]]\variable\varXNode.llb\vi.lib\variable\varXNode.llb\varXNode.xnode)&lt;br /&gt;
|-&lt;br /&gt;
| Timed Loops || ([[vi.lib]]\Platform\TimedLoop\XDataNode\XDataNode.xnode)&lt;br /&gt;
|-&lt;br /&gt;
| Database Variant To Data || ([[vi.lib]]\addons\database\_DB Variant To Data\Database Variant To Data.xnode)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Ability VIs ==&lt;br /&gt;
:&#039;&#039;Main Article: [[List of XNode Abilities]].&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
*[[External Nodes]]&lt;br /&gt;
*[[XControls]]&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=117</id>
		<title>Template:XNode Ability</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=117"/>
		<updated>2007-03-15T22:56:58Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: prettified&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| cellspacing=&amp;quot;5&amp;quot; style=&amp;quot;width: 30em; font-size: 90%; text-align: left; float: right; clear: right; border: 1px solid #aaa; background-color: #f5f9fd; color: black; margin-bottom: 0.5em; margin-left: 1em; padding: 0.2em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | {{{name}}} (XNode Ability)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | [[List of XNode Abilities]]&lt;br /&gt;
|-&lt;br /&gt;
!Public Name:&lt;br /&gt;
|{{{public name|{{{public_name|}}}}}}&lt;br /&gt;
|-&lt;br /&gt;
!Introduced in:&lt;br /&gt;
|[[LabVIEW {{{introduced version number|{{{introduced_version_number|}}}}}}]]&lt;br /&gt;
|-&lt;br /&gt;
!Deprecated in:&lt;br /&gt;
|[[LabVIEW {{{deprecated version number|{{{deprecated_version_number|}}}}}}]]&lt;br /&gt;
|-&lt;br /&gt;
!Deprecated, prefer:&lt;br /&gt;
|[[{{{deprecated prefer|{{{deprecated_prefer|}}}}}} (XNode Ability)|{{{deprecated prefer|{{{deprecated_prefer|}}}}}}]]&lt;br /&gt;
|}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{{{FULLPAGENAME}}/doc}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=116</id>
		<title>Template:XNode Ability</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Template:XNode_Ability&amp;diff=116"/>
		<updated>2007-03-15T22:46:39Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: float, clear: right&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;infobox&amp;quot; cellspacing=&amp;quot;5&amp;quot; style=&amp;quot;width: 24em; font-size: 90%; text-align: left; float: right; clear: right;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | {{{name}}} (XNode Ability)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center; font-size: 130%; font-weight: bold;&amp;quot; | [[List of XNode Abilities]]&lt;br /&gt;
|-&lt;br /&gt;
!Public Name:||{{{public name|{{{public_name|}}}}}}&lt;br /&gt;
|-&lt;br /&gt;
!Introduced in:||[[LabVIEW {{{introduced version number|{{{introduced_version_number|}}}}}}]]&lt;br /&gt;
|-&lt;br /&gt;
!Deprecated in:||[[LabVIEW {{{deprecated version number|{{{deprecated_version_number|}}}}}}]]&lt;br /&gt;
|-&lt;br /&gt;
!Deprecated, prefer:||[[{{{deprecated prefer|{{{deprecated_prefer|}}}}}} (XNode Ability)|{{{deprecated prefer|{{{deprecated_prefer|}}}}}}]]&lt;br /&gt;
|}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{{{FULLPAGENAME}}/doc}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=List_of_XNode_Abilities&amp;diff=115</id>
		<title>List of XNode Abilities</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=List_of_XNode_Abilities&amp;diff=115"/>
		<updated>2007-03-15T22:44:48Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: tweak bottom part&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a list of the Ability [[VI]]s for [[XNodes]] in LabVIEW 8.20.&lt;br /&gt;
(Originally created by Dany Allard and updated by Aitor Solar)&lt;br /&gt;
&lt;br /&gt;
{|cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Ability Name || Public Name || Provides UI? || OS Messages Handled? || Deprecated in [[LabVIEW 8.20]]&lt;br /&gt;
|-&lt;br /&gt;
| [[State (XNode Ability)|State]] || [[State (XNode Ability)|State]] || N/A || N/A || No&lt;br /&gt;
|-&lt;br /&gt;
| [[AdaptToInputs (XNode Ability)|AdaptToInputs]] || [[AdaptToInputs (XNode Ability)|AdaptToInputs]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[AugmentSelf (XNode Ability)|AugmentSelf]] || [[AugmentSelf (XNode Ability)|AugmentSelf]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[AutotoolRegions (XNode Ability)|AutotoolRegions]] || [[GetAutotoolRegions (XNode Ability)|GetAutotoolRegions]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[Bounds (XNode Ability)|Bounds]] || [[GetBounds (XNode Ability)|GetBounds]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[BuildMenu (XNode Ability)|BuildMenu]] || [[BuildMenu2 (XNode Ability)|BuildMenu2]] || No || No || Yes, use [[BuildMenu3 (XNode Ability)|BuildMenu3]]&lt;br /&gt;
|-&lt;br /&gt;
| [[BuildMenu3 (XNode Ability)|BuildMenu3]] || [[BuildMenu3 (XNode Ability)|BuildMenu3]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[BuildPopup (XNode Ability)|BuildPopup]] || [[BuildMenu (XNode Ability)|BuildMenu]] || No || No || Yes, use [[BuildMenu3 (XNode Ability)|BuildMenu3]]&lt;br /&gt;
|-&lt;br /&gt;
| [[CanAcceptDataDrag (XNode Ability)|CanAcceptDataDrag]] || [[CanAcceptDataDrag (XNode Ability)|CanAcceptDataDrag]] || No || No || Yes, use [[CanAcceptDataDrag2 (XNode Ability)|CanAcceptDataDrag2]]&lt;br /&gt;
|-&lt;br /&gt;
| [[CanAcceptDataDrag2 (XNode Ability)|CanAcceptDataDrag2]] || [[CanAcceptDataDrag2 (XNode Ability)|CanAcceptDataDrag2]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[Compare (XNode Ability)|Compare ]] || [[Compare (XNode Ability)|Compare ]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[Copy (XNode Ability)|Copy]] || [[Copy (XNode Ability)|Copy]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[DataDrag (XNode Ability)|DataDrag]] || [[OnDataDrag (XNode Ability)|OnDataDrag]] || Yes || Yes || Yes, use [[DataDrag2 (XNode Ability)|DataDrag2]]&lt;br /&gt;
|-&lt;br /&gt;
| [[DataDrag2 (XNode Ability)|DataDrag2]] || [[OnDataDrag2 (XNode Ability)|OnDataDrag2]] || Yes || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| [[DisplayName (XNode Ability)|DisplayName]] || [[GetDisplayName (XNode Ability)|GetDisplayName]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[DoubleClick (XNode Ability)|DoubleClick]] || [[OnDoubleClick (XNode Ability)|OnDoubleClick]] || Yes || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| [[Feedsthrough (XNode Ability)|Feedsthrough]] || [[CalculateFeedthrough (XNode Ability)|CalculateFeedthrough]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[GenerateCode (XNode Ability)|GenerateCode]] || [[GenerateCode (XNode Ability)|GenerateCode]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[GetDataForDrag (XNode Ability)|GetDataForDrag]] || [[GetDataForDrag (XNode Ability)|GetDataForDrag]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[GetDisplayName2 (XNode Ability)|GetDisplayName2]] || [[GetDisplayName2 (XNode Ability)|GetDisplayName2]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[GetErrors3 (XNode Ability)|GetErrors3]] || [[GetErrors3 (XNode Ability)|GetErrors3]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[GetTerms3 (XNode Ability)|GetTerms3]] || [[GetTerms3 (XNode Ability)|GetTerms3]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[GrowInfo (XNode Ability)|GrowInfo]] || [[GetGrowInfo (XNode Ability)|GetGrowInfo]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[Help (XNode Ability)|Help]] || [[GetHelp (XNode Ability)|GetHelp]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[Image (XNode Ability)|Image]] || [[GetImage (XNode Ability)|GetImage]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[Initialize (XNode Ability)|Initialize]] || [[Initialize (XNode Ability)|Initialize]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[ListErrors (XNode Ability)|ListErrors]] || [[GetErrors (XNode Ability)|GetErrors]] || No || No || Yes, use [[GetErrors3 (XNode Ability)|GetErrors3]]&lt;br /&gt;
|-&lt;br /&gt;
| [[ListErrors2 (XNode Ability)|ListErrors2]] || [[GetErrors2 (XNode Ability)|GetErrors2]] || No || No || Yes, use [[GetErrors3 (XNode Ability)|GetErrors3]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Message (XNode Ability)|Message]] || [[Message (XNode Ability)|Message]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[MessageWithUI (XNode Ability)|MessageWithUI]] || [[MessageWithUI (XNode Ability)|MessageWithUI]] || Yes || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| [[MessageWithoutEffect (XNode Ability)|MessageWithoutEffect]] || [[MessageWithoutEffect (XNode Ability)|MessageWithoutEffect]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[MessageWithUIWithoutEffect (XNode Ability)|MessageWithUIWithoutEffect]] || [[MessageWithUIWithoutEffect (XNode Ability)|MessageWithUIWithoutEffect]] || Yes || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| [[ModifyCode (XNode Ability)|ModifyCode]] || [[ModifyCode (XNode Ability)|ModifyCode]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[MutateForPrevious (XNode Ability)|MutateForPrevious]] || [[MutateForPrevious (XNode Ability)|MutateForPrevious]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[OnFontChange (XNode Ability)|OnFontChange]] || [[OnFontChange (XNode Ability)|OnFontChange]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[OperateClick (XNode Ability)|OperateClick]] || [[OnOperateClick (XNode Ability)|OnOperateClick]] || Yes || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| [[RefeeChanged (XNode Ability)|RefeeChanged]] || [[OnRefeeChange (XNode Ability)|OnRefeeChange]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[ReplaceSelf (XNode Ability)|ReplaceSelf]] || [[ReplaceSelf (XNode Ability)|ReplaceSelf]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[RespondToDrop (XNode Ability)|RespondToDrop]] || [[OnDrop (XNode Ability)|OnDrop]] || Yes || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| [[SaveForPrevious (XNode Ability)|SaveForPrevious]] || [[SaveForPrevious (XNode Ability)|SaveForPrevious]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[SelectMenu (XNode Ability)|SelectMenu]] || [[SelectMenu2 (XNode Ability)|SelectMenu2]] || Yes || Yes || Yes, use [[SelectMenu3 (XNode Ability)|SelectMenu3]]&lt;br /&gt;
|-&lt;br /&gt;
| [[SelectMenu3 (XNode Ability)|SelectMenu3]] || [[SelectMenu3 (XNode Ability)|SelectMenu3]] || Yes || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| [[SelectPopUp (XNode Ability)|SelectPopUp]] || [[SelectMenu (XNode Ability)|SelectMenu]] || Yes || Yes || Yes, use [[SelectMenu3 (XNode Ability)|SelectMenu3]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Size (XNode Ability)|Size]] || [[OnResize (XNode Ability)|OnResize]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[SpecifyInsertTerm (XNode Ability)|SpecifyInsertTerm]] || [[SpecifyInsertTerm (XNode Ability)|SpecifyInsertTerm]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[Terms (XNode Ability)|Terms]] || [[GetTerms (XNode Ability)|GetTerms]] || No || No || Yes, use [[GetTerms3 (XNode Ability)|GetTerms3]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Terms2 (XNode Ability)|Terms2]] || [[GetTerms2 (XNode Ability)|GetTerms2]] || No || No || Yes, use [[GetTerms3 (XNode Ability)|GetTerms3]]&lt;br /&gt;
|-&lt;br /&gt;
| [[UpdateState (XNode Ability)|UpdateState]] || [[UpdateState (XNode Ability)|UpdateState]] || No || No || Yes, use [[UpdateStateWithRef (XNode Ability)|UpdateStateWithRef]]&lt;br /&gt;
|-&lt;br /&gt;
| [[UpdateStateWithRef (XNode Ability)|UpdateStateWithRef]] || [[UpdateState2 (XNode Ability)|UpdateState2]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[HelpMap (XNode Ability)|HelpMap]] || (Not an ability VI) || N/A || N/A || N/A&lt;br /&gt;
|-&lt;br /&gt;
| [[L10N (XNode Ability)|L10N]] || (Not an ability VI) || N/A || N/A || N/A&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=List_of_XNode_Abilities&amp;diff=114</id>
		<title>List of XNode Abilities</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=List_of_XNode_Abilities&amp;diff=114"/>
		<updated>2007-03-15T22:44:03Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: added UI / OS Message handling&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a list of the Ability [[VI]]s for [[XNodes]] in LabVIEW 8.20.&lt;br /&gt;
(Originally created by Dany Allard and updated by Aitor Solar)&lt;br /&gt;
&lt;br /&gt;
{|cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Ability Name || Public Name || Provides UI? || OS Messages Handled? || Deprecated in [[LabVIEW 8.20]]&lt;br /&gt;
|-&lt;br /&gt;
| [[State (XNode Ability)|State]] || [[State (XNode Ability)|State]] || N/A || N/A || No&lt;br /&gt;
|-&lt;br /&gt;
| [[AdaptToInputs (XNode Ability)|AdaptToInputs]] || [[AdaptToInputs (XNode Ability)|AdaptToInputs]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[AugmentSelf (XNode Ability)|AugmentSelf]] || [[AugmentSelf (XNode Ability)|AugmentSelf]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[AutotoolRegions (XNode Ability)|AutotoolRegions]] || [[GetAutotoolRegions (XNode Ability)|GetAutotoolRegions]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[Bounds (XNode Ability)|Bounds]] || [[GetBounds (XNode Ability)|GetBounds]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[BuildMenu (XNode Ability)|BuildMenu]] || [[BuildMenu2 (XNode Ability)|BuildMenu2]] || No || No || Yes, use [[BuildMenu3 (XNode Ability)|BuildMenu3]]&lt;br /&gt;
|-&lt;br /&gt;
| [[BuildMenu3 (XNode Ability)|BuildMenu3]] || [[BuildMenu3 (XNode Ability)|BuildMenu3]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[BuildPopup (XNode Ability)|BuildPopup]] || [[BuildMenu (XNode Ability)|BuildMenu]] || No || No || Yes, use [[BuildMenu3 (XNode Ability)|BuildMenu3]]&lt;br /&gt;
|-&lt;br /&gt;
| [[CanAcceptDataDrag (XNode Ability)|CanAcceptDataDrag]] || [[CanAcceptDataDrag (XNode Ability)|CanAcceptDataDrag]] || No || No || Yes, use [[CanAcceptDataDrag2 (XNode Ability)|CanAcceptDataDrag2]]&lt;br /&gt;
|-&lt;br /&gt;
| [[CanAcceptDataDrag2 (XNode Ability)|CanAcceptDataDrag2]] || [[CanAcceptDataDrag2 (XNode Ability)|CanAcceptDataDrag2]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[Compare (XNode Ability)|Compare ]] || [[Compare (XNode Ability)|Compare ]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[Copy (XNode Ability)|Copy]] || [[Copy (XNode Ability)|Copy]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[DataDrag (XNode Ability)|DataDrag]] || [[OnDataDrag (XNode Ability)|OnDataDrag]] || Yes || Yes || Yes, use [[DataDrag2 (XNode Ability)|DataDrag2]]&lt;br /&gt;
|-&lt;br /&gt;
| [[DataDrag2 (XNode Ability)|DataDrag2]] || [[OnDataDrag2 (XNode Ability)|OnDataDrag2]] || Yes || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| [[DisplayName (XNode Ability)|DisplayName]] || [[GetDisplayName (XNode Ability)|GetDisplayName]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[DoubleClick (XNode Ability)|DoubleClick]] || [[OnDoubleClick (XNode Ability)|OnDoubleClick]] || Yes || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| [[Feedsthrough (XNode Ability)|Feedsthrough]] || [[CalculateFeedthrough (XNode Ability)|CalculateFeedthrough]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[GenerateCode (XNode Ability)|GenerateCode]] || [[GenerateCode (XNode Ability)|GenerateCode]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[GetDataForDrag (XNode Ability)|GetDataForDrag]] || [[GetDataForDrag (XNode Ability)|GetDataForDrag]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[GetDisplayName2 (XNode Ability)|GetDisplayName2]] || [[GetDisplayName2 (XNode Ability)|GetDisplayName2]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[GetErrors3 (XNode Ability)|GetErrors3]] || [[GetErrors3 (XNode Ability)|GetErrors3]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[GetTerms3 (XNode Ability)|GetTerms3]] || [[GetTerms3 (XNode Ability)|GetTerms3]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[GrowInfo (XNode Ability)|GrowInfo]] || [[GetGrowInfo (XNode Ability)|GetGrowInfo]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[Help (XNode Ability)|Help]] || [[GetHelp (XNode Ability)|GetHelp]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[Image (XNode Ability)|Image]] || [[GetImage (XNode Ability)|GetImage]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[Initialize (XNode Ability)|Initialize]] || [[Initialize (XNode Ability)|Initialize]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[ListErrors (XNode Ability)|ListErrors]] || [[GetErrors (XNode Ability)|GetErrors]] || No || No || Yes, use [[GetErrors3 (XNode Ability)|GetErrors3]]&lt;br /&gt;
|-&lt;br /&gt;
| [[ListErrors2 (XNode Ability)|ListErrors2]] || [[GetErrors2 (XNode Ability)|GetErrors2]] || No || No || Yes, use [[GetErrors3 (XNode Ability)|GetErrors3]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Message (XNode Ability)|Message]] || [[Message (XNode Ability)|Message]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[MessageWithUI (XNode Ability)|MessageWithUI]] || [[MessageWithUI (XNode Ability)|MessageWithUI]] || Yes || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| [[MessageWithoutEffect (XNode Ability)|MessageWithoutEffect]] || [[MessageWithoutEffect (XNode Ability)|MessageWithoutEffect]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[MessageWithUIWithoutEffect (XNode Ability)|MessageWithUIWithoutEffect]] || [[MessageWithUIWithoutEffect (XNode Ability)|MessageWithUIWithoutEffect]] || Yes || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| [[ModifyCode (XNode Ability)|ModifyCode]] || [[ModifyCode (XNode Ability)|ModifyCode]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[MutateForPrevious (XNode Ability)|MutateForPrevious]] || [[MutateForPrevious (XNode Ability)|MutateForPrevious]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[OnFontChange (XNode Ability)|OnFontChange]] || [[OnFontChange (XNode Ability)|OnFontChange]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[OperateClick (XNode Ability)|OperateClick]] || [[OnOperateClick (XNode Ability)|OnOperateClick]] || Yes || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| [[RefeeChanged (XNode Ability)|RefeeChanged]] || [[OnRefeeChange (XNode Ability)|OnRefeeChange]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[ReplaceSelf (XNode Ability)|ReplaceSelf]] || [[ReplaceSelf (XNode Ability)|ReplaceSelf]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[RespondToDrop (XNode Ability)|RespondToDrop]] || [[OnDrop (XNode Ability)|OnDrop]] || Yes || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| [[SaveForPrevious (XNode Ability)|SaveForPrevious]] || [[SaveForPrevious (XNode Ability)|SaveForPrevious]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[SelectMenu (XNode Ability)|SelectMenu]] || [[SelectMenu2 (XNode Ability)|SelectMenu2]] || Yes || Yes || Yes, use [[SelectMenu3 (XNode Ability)|SelectMenu3]]&lt;br /&gt;
|-&lt;br /&gt;
| [[SelectMenu3 (XNode Ability)|SelectMenu3]] || [[SelectMenu3 (XNode Ability)|SelectMenu3]] || Yes || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| [[SelectPopUp (XNode Ability)|SelectPopUp]] || [[SelectMenu (XNode Ability)|SelectMenu]] || Yes || Yes || Yes, use [[SelectMenu3 (XNode Ability)|SelectMenu3]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Size (XNode Ability)|Size]] || [[OnResize (XNode Ability)|OnResize]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[SpecifyInsertTerm (XNode Ability)|SpecifyInsertTerm]] || [[SpecifyInsertTerm (XNode Ability)|SpecifyInsertTerm]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[Terms (XNode Ability)|Terms]] || [[GetTerms (XNode Ability)|GetTerms]] || No || No || Yes, use [[GetTerms3 (XNode Ability)|GetTerms3]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Terms2 (XNode Ability)|Terms2]] || [[GetTerms2 (XNode Ability)|GetTerms2]] || No || No || Yes, use [[GetTerms3 (XNode Ability)|GetTerms3]]&lt;br /&gt;
|-&lt;br /&gt;
| [[UpdateState (XNode Ability)|UpdateState]] || [[UpdateState (XNode Ability)|UpdateState]] || No || No || Yes, use [[UpdateStateWithRef (XNode Ability)|UpdateStateWithRef]]&lt;br /&gt;
|-&lt;br /&gt;
| [[UpdateStateWithRef (XNode Ability)|UpdateStateWithRef]] || [[UpdateState2 (XNode Ability)|UpdateState2]] || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| [[HelpMap (XNode Ability)|HelpMap]] || N/A || N/A || (Not an ability VI)&lt;br /&gt;
|-&lt;br /&gt;
| [[L10N (XNode Ability)|L10N]] || N/A || N/A || (Not an ability VI)&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=UpdateState2_(XNode_Ability)&amp;diff=113</id>
		<title>UpdateState2 (XNode Ability)</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=UpdateState2_(XNode_Ability)&amp;diff=113"/>
		<updated>2007-03-15T22:33:27Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: #REDIRECT UpdateStateWithRef (XNode Ability)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[UpdateStateWithRef (XNode Ability)]]&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=GetTerms2_(XNode_Ability)&amp;diff=112</id>
		<title>GetTerms2 (XNode Ability)</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=GetTerms2_(XNode_Ability)&amp;diff=112"/>
		<updated>2007-03-15T22:33:05Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: #REDIRECT Terms2 (XNode Ability)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Terms2 (XNode Ability)]]&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=GetTerms_(XNode_Ability)&amp;diff=111</id>
		<title>GetTerms (XNode Ability)</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=GetTerms_(XNode_Ability)&amp;diff=111"/>
		<updated>2007-03-15T22:32:47Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: #REDIRECT Terms (XNode Ability)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Terms (XNode Ability)]]&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=OnResize_(XNode_Ability)&amp;diff=110</id>
		<title>OnResize (XNode Ability)</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=OnResize_(XNode_Ability)&amp;diff=110"/>
		<updated>2007-03-15T22:32:30Z</updated>

		<summary type="html">&lt;p&gt;Adamrofer: #REDIRECT Size (XNode Ability)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Size (XNode Ability)]]&lt;/div&gt;</summary>
		<author><name>Adamrofer</name></author>
	</entry>
</feed>