<?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=Thoric</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=Thoric"/>
	<link rel="alternate" type="text/html" href="https://labviewwiki.org/wiki/Special:Contributions/Thoric"/>
	<updated>2026-04-20T21:35:39Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Connector_pane&amp;diff=32736</id>
		<title>Connector pane</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Connector_pane&amp;diff=32736"/>
		<updated>2024-05-29T14:50:27Z</updated>

		<summary type="html">&lt;p&gt;Thoric: typo fix&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{TOCright}}&lt;br /&gt;
The &#039;&#039;&#039;Connector Pane&#039;&#039;&#039; is used to pass data to and from a [[SubVI]]. The Connector Pane is available in the [[Front Panel]] window&#039;s upper right corner next to the [[VI Icon]].&lt;br /&gt;
&lt;br /&gt;
== Patterns ==&lt;br /&gt;
Right-click on the Connector Pane to choose a pattern. &lt;br /&gt;
&lt;br /&gt;
[[Image:Connector Pane Patterns.png|thumb|center|300px|How to select a connector pane pattern]] &lt;br /&gt;
&lt;br /&gt;
It is considered good practice to choose a pattern that has more inputs/outputs than you need when writing the VI so that new inputs or outputs can be added without changing the connector pane and causing the VI&#039;s that link to your subVI to recompile. The 4x2x2x4 pattern highlighted above is the most commonly used for NI primitives. In [[LabVIEW 8]] and above the connector pane is defaulted to the 4x2x2x4 pattern. To customize the default connector pane used for new VIs, set the defaultConPane variable in your [[LabVIEW configuration file]] (see [[LabVIEW configuration file/Miscellaneous#defaultConPane|Miscellaneous&amp;amp;gt;defaultConPane]]). &lt;br /&gt;
&lt;br /&gt;
[[Image:ConPane.png|center|Connector pane values]]&lt;br /&gt;
&lt;br /&gt;
=== Increase/Decrease Terminals ===&lt;br /&gt;
Right-clicking the Connector Pane and selecting &#039;&#039;&#039;Add Terminal&#039;&#039;&#039; or &#039;&#039;&#039;Remove Terminal&#039;&#039;&#039; effectively moves the pattern up or down one.&lt;br /&gt;
&lt;br /&gt;
=== Changing Orientation ===&lt;br /&gt;
Right-clicking the Connector Pane and selecting &#039;&#039;&#039;Rotate 90 Degrees&#039;&#039;&#039;, &#039;&#039;&#039;Flip Horizontal&#039;&#039;&#039;, or &#039;&#039;&#039;Flip Vertical&#039;&#039;&#039; keeps the same pattern but changes the orientation.&lt;br /&gt;
&lt;br /&gt;
== Connecting Controls and Indicators ==&lt;br /&gt;
To connect a control or an indicator to a terminal on the Connector Pane:&lt;br /&gt;
# Select the control or indicator&lt;br /&gt;
# Click on the desired terminal on the Connector Pane&lt;br /&gt;
&lt;br /&gt;
== Switching Terminal Positions ==&lt;br /&gt;
To switch or move a control or indicator to a different terminal:&lt;br /&gt;
# Click on the terminal to move on the Connector Pane&lt;br /&gt;
# Hold-down &#039;&#039;Ctrl&#039;&#039; and click on a different terminal.  This will switch the two terminals, whether connected to something or empty.&lt;br /&gt;
&lt;br /&gt;
== Disconnecting a Terminal ==&lt;br /&gt;
Right-click on the Connector Pane and select either:&lt;br /&gt;
* &#039;&#039;&#039;Disconnect All Terminals&#039;&#039;&#039; - to disconnect all terminals&lt;br /&gt;
* &#039;&#039;&#039;Disconnet This Terminal&#039;&#039;&#039; - to disconnect just the terminal that was clicked on&lt;br /&gt;
&lt;br /&gt;
== Requirement Level ==&lt;br /&gt;
Right-clicking a terminal and selection &#039;&#039;&#039;This Connection Is&#039;&#039;&#039; presents four different options.  The terminals can be set to:&lt;br /&gt;
# &#039;&#039;&#039;Required&#039;&#039;&#039; - sets the input as required.  If the input is not wired, the program will not run, see [[Broken Run Arrow]].&lt;br /&gt;
# &#039;&#039;&#039;Recommended&#039;&#039;&#039; - sets the input as recommended.  If the input is not wired, the program will still run and the default value for control is used.&lt;br /&gt;
# &#039;&#039;&#039;Optional&#039;&#039;&#039; - sets the input as optional which is the same as recommended but the terminal will not appear in the [[Context Help]].&lt;br /&gt;
# &#039;&#039;&#039;Dynamic Dispatch Input (Required)&#039;&#039;&#039; or &#039;&#039;&#039;Dynamic Dispatch Output (Recommended)&#039;&#039;&#039; - Greyed out except for [[Class (object-oriented programming)|class]] inputs and outputs.  Sets the [[VI]] as [[Dynamic dispatch]].&lt;br /&gt;
&lt;br /&gt;
== Index of Terminals ==&lt;br /&gt;
When using [[VI Scripting]] to access a Connector Pane (for example: [[ConnectorPane class/Controls() property|ConnectorPane class/Controls[] property]]), the terminals by defaultare ordered from Right to Left, Bottom to Top.  This changes if the pattern is rotated or flipped.  Therefore, for a standard 4x2x2x4 pattern the terminals are indexed as follows:&lt;br /&gt;
&lt;br /&gt;
[[File:4x2x2x4-Default.png|Default 4x2x2x4]]&lt;br /&gt;
&lt;br /&gt;
To see other patterns, see [[Connector pane patterns|Connector Pane Patterns]].&lt;br /&gt;
&lt;br /&gt;
== Best Practices ==&lt;br /&gt;
&lt;br /&gt;
=== Terminal Organization ===&lt;br /&gt;
* Use the 4x2x2x4 pattern even if it leaves empty spaces.  Only go to patterns with more terminals if necessary.  However, before switching to more terminals, consider [[Bundle|bundling]] inputs or outputs into [[Cluster data type|Clusters]].&lt;br /&gt;
* Put inputs on the left side of the Connector Pane and outputs on the right.&lt;br /&gt;
* Use the bottom corners for &#039;&#039;[[Error Cluster data type|error in]]&#039;&#039; and &#039;&#039;[[Error Cluster data type|error out]]&#039;&#039;.&lt;br /&gt;
* If the [[VI]] is a [[Method (object-oriented programming)|method]] in a [[Class (object-oriented programming)|class]], use the top corners as the class object input and output.&lt;br /&gt;
&lt;br /&gt;
=== Require by Default ===&lt;br /&gt;
* Turn the flag in the [[Options dialog]] on which will require all inputs by default, except the &#039;&#039;error in&#039;&#039;.  This makes it so inputs to [[SubVI]]s don&#039;t get accidentally forgotten.&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Version&lt;br /&gt;
! Change(s)&lt;br /&gt;
|-&lt;br /&gt;
|[[File:LV8-2013.png|frameless|border|64x64px|LabVIEW 2011|link=LabVIEW 2011]]&lt;br /&gt;
|In [[LabVIEW 2011]] the Connector Pane was changed to always be visible on the [[Front Panel]] window next to the [[VI Icon]].  [[LabVIEW 2010]] and earlier only the Connector Pane or the [[VI Icon]] was visible at a time and they were toggled between via a right-click menu (&#039;&#039;&#039;Show Connector&#039;&#039;&#039; or &#039;&#039;&#039;Show Icon&#039;&#039;&#039;).&lt;br /&gt;
&lt;br /&gt;
Also, previously to [[LabVIEW 2011]], when creating a SubVI from a selection, the SubVI would be created with a varying pattern with just the number of inputs or outputs needed.  In [[LabVIEW 2011]] and later, the new SubVI will default to the 4x2x2x4 pattern, if the input/output count fits, and the errors will default to the bottom corners.  &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
* [[Front Panel]]&lt;br /&gt;
* [[Block Diagram]]&lt;br /&gt;
* [[VI Icon]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Calling a VI]]&lt;br /&gt;
[[Category:Connector Pane]]&lt;/div&gt;</summary>
		<author><name>Thoric</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=ProjectItem_class/Get_All_Descendents_method&amp;diff=32732</id>
		<title>ProjectItem class/Get All Descendents method</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=ProjectItem_class/Get_All_Descendents_method&amp;diff=32732"/>
		<updated>2024-05-24T07:54:24Z</updated>

		<summary type="html">&lt;p&gt;Thoric: Added a useful link to the list of valid Type strings.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{VIServerMethod&lt;br /&gt;
| classid = 74&lt;br /&gt;
| methodid = 35B53810&lt;br /&gt;
| scope=basic&lt;br /&gt;
| dataname = Get All Descendents&lt;br /&gt;
| shortname = Get All Descendents&lt;br /&gt;
| longname = Get All Descendents&lt;br /&gt;
| datatypeimage = ProjectItem Refnum Array Indicator.png&lt;br /&gt;
| datatype = ProjectItem Refnum Array&lt;br /&gt;
| invokenodeimage = ProjectItem-Get All Descendents.png&lt;br /&gt;
| availableinrealtime = No&lt;br /&gt;
| availableinruntime = Yes (Read/Write)&lt;br /&gt;
| loadsbd = No&lt;br /&gt;
| loadsfp = No&lt;br /&gt;
| needsauthentication = No&lt;br /&gt;
| remoteallowed = Yes&lt;br /&gt;
| settablewhenrunning = No&lt;br /&gt;
|}}&lt;br /&gt;
{{TOCright}}&lt;br /&gt;
Recursively returns project items that appear under the referenced item in the project tree. For example, if you call this method on project library A that contains an inner project library B, the method returns items owned both by library A and library B.&lt;br /&gt;
&lt;br /&gt;
For this method, the term descendents does &amp;lt;em&amp;gt;not&amp;lt;/em&amp;gt; refer to children classes of the referenced project item.&lt;br /&gt;
==Parameters==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;column&amp;quot; style=&amp;quot;text-align:Center;&amp;quot; | Data type&lt;br /&gt;
! scope=&amp;quot;column&amp;quot; style=&amp;quot;text-align:Left;&amp;quot; | Name&lt;br /&gt;
! scope=&amp;quot;column&amp;quot; style=&amp;quot;text-align:Left;&amp;quot; | Required&lt;br /&gt;
! scope=&amp;quot;column&amp;quot; style=&amp;quot;text-align:Left;&amp;quot; | Description&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;row&amp;quot; style=&amp;quot;text-align:Center;&amp;quot; | [[File:ProjectItem Refnum Array Indicator.png|frameless|border|ProjectItem Refnum Array|link=ProjectItem Refnum Array data type]]&lt;br /&gt;
| &#039;&#039;&#039;Get All Descendents&#039;&#039;&#039;&lt;br /&gt;
| Yes. Return value. &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;row&amp;quot; style=&amp;quot;text-align:Center;&amp;quot; | [[File:String.png|frameless|border|String|link=String data type]]&lt;br /&gt;
| &#039;&#039;&#039;Type&#039;&#039;&#039;&lt;br /&gt;
| No &lt;br /&gt;
| Specifies which kind of project items this method returns. For a list of valid Type strings see [[ProjectItem]].&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;row&amp;quot; style=&amp;quot;text-align:Center;&amp;quot; | [[File:Boolean.png|frameless|border|Boolean|link=Boolean data type]]&lt;br /&gt;
| &#039;&#039;&#039;ExcludeDependencies&#039;&#039;&#039;&lt;br /&gt;
| No &lt;br /&gt;
| Specifies whether to ignore items under the &amp;lt;code&amp;gt;Dependencies&amp;lt;/code&amp;gt; folder if the referenced item is a project. If the referenced item is a target, this input specifies whether to exclude items under the target. If the referenced item is neither a project nor a target, this input has no effect on the output of this method.&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;row&amp;quot; style=&amp;quot;text-align:Center;&amp;quot; | [[File:Boolean.png|frameless|border|Boolean|link=Boolean data type]]&lt;br /&gt;
| &#039;&#039;&#039;ExcludeBuilds&#039;&#039;&#039;&lt;br /&gt;
| No &lt;br /&gt;
| If TRUE, does not return Build Specifications or any items under Build Specifications. The default is FALSE.&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;row&amp;quot; style=&amp;quot;text-align:Center;&amp;quot; | [[File:Boolean.png|frameless|border|Boolean|link=Boolean data type]]&lt;br /&gt;
| &#039;&#039;&#039;ExcludeTargets&#039;&#039;&#039;&lt;br /&gt;
| No &lt;br /&gt;
| If TRUE, does not return any targets or any items under targets. The default is FALSE.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Uses ==&lt;br /&gt;
The &#039;&#039;&#039;ProjectItem class/Get All Descendents method&#039;&#039;&#039; is used to get references to all of the children under the input referenced ProjectItem.  The parameter &#039;&#039;Type&#039;&#039; is used to filter to just those that match that specific type.  The [[ProjectItem class/Type String property]] can be used to get the &#039;&#039;Type&#039;&#039; of an item.  A list of valid &#039;&#039;Type String&#039;&#039; values and their descriptions are listed on the [[ProjectItem]] page.&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
{{ambox|text=History information is needed.  What changes have occurred over previous versions?}}&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Version&lt;br /&gt;
! Change(s)&lt;br /&gt;
|-&lt;br /&gt;
|[[File:LV2018.png|frameless|border|64x64px|LabVIEW 2018|link=LabVIEW 2018]]&lt;br /&gt;
|More info to come.&lt;br /&gt;
|}&lt;br /&gt;
== See Also ==&lt;br /&gt;
{{ambox|text=Add links to internal wiki pages that would also help.}}&lt;br /&gt;
&lt;br /&gt;
== External Links ==&lt;br /&gt;
{{ambox|text=Add links to external resources that would also help.}}&lt;br /&gt;
&lt;br /&gt;
[[Category:VI Server Method]]&lt;/div&gt;</summary>
		<author><name>Thoric</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=GDevCon&amp;diff=10490</id>
		<title>GDevCon</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=GDevCon&amp;diff=10490"/>
		<updated>2020-01-08T00:24:34Z</updated>

		<summary type="html">&lt;p&gt;Thoric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Events]] : GDevCon &amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:Gdevconsmalllogo.jpg|frameless|right]]&lt;br /&gt;
&#039;&#039;&#039;GDevCon&#039;&#039;&#039; is an independent conference open to all graphical developers. It exists to help [[LabVIEW]] developers in teams learn and level up together, and it aims to help solve real problems encountered everyday by LabVIEW developers.&lt;br /&gt;
&lt;br /&gt;
Designed as a series of events, GDevCon is focused on delivering world-class graphical programming material, from the community for the community. The conferences last several days and feature presentations by LabVIEW peers from around the world&lt;br /&gt;
​&lt;br /&gt;
The events do not mandate any level of certification, unlike the CLA Summits, enabling developers who don&#039;t choose to attain any formal accreditation to build connections to the LabVIEW community.&lt;br /&gt;
&lt;br /&gt;
GDevCon is run by the [https://www.gdevcon.com/alliance GDevCon Alliance], a not-for-profit organisation that is independent from system vendors.&lt;br /&gt;
{{TOCright}}&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:GDevCon3GenevaSept.png|300px|frameless|left|link=GDevCon-3]]&lt;br /&gt;
| style=&amp;quot;vertical-align:top;&amp;quot; | &lt;br /&gt;
== GDevCon #3 ==&lt;br /&gt;
[[GDevCon-3|GDevCon#3]] will be held in CERN, Geneva, on 8-9th September, the first event outside of the UK. To learn more visit the website [http://www.gdevcon.com GDevCon].&lt;br /&gt;
|-&lt;br /&gt;
|[[File:GDevCon2.png|300px|frameless|left|link=GDevCon-2]]&lt;br /&gt;
| style=&amp;quot;vertical-align:top;&amp;quot; | &lt;br /&gt;
== GDevCon #2 ==&lt;br /&gt;
[[GDevCon-2|GDevCon#2]] was held in Birmingham, UK, on 21-22nd August at the inspiring [http://www.uniquevenuesbirmingham.com/ Unique Venues Birmingham (UVB)]. The event was headline sponsored by Dyson, with a strong emphasis on teams of developers attending together. This event was preceded by a sold-out workshop on Pragmatic Software Development.&lt;br /&gt;
|-&lt;br /&gt;
|[[File:GDevCon1.png|300px|frameless|left|link=GDevCon-1]]&lt;br /&gt;
| style=&amp;quot;vertical-align:top;&amp;quot; | &lt;br /&gt;
== GDevCon #1 ==&lt;br /&gt;
[[GDevCon-1|GDevCon#1]] was held in Cambridge, UK, on 4-5th September 2018 at Murray Edwards College. The event was attended by over 140 developers, and actually had to be moved from their first venue, Girton College, to accommodate the higher than expected demand for tickets. &lt;br /&gt;
&lt;br /&gt;
The success of GDevCon#1 proved that the LabVIEW community has matured to the point of running its own events in addition to NI&#039;s conferences.&lt;br /&gt;
|}&lt;br /&gt;
== History ==&lt;br /&gt;
The idea of GDevCon was born in the summer of 2017. In a discussion in June 2017 on the NI Champions forum, Steve Watts had jested about a new, community-driven LabVIEW event, and was backed up by Richard Thomas. The idea slowly evolved, with more and more people getting involved, who would finally form the GDevCon Alliance. The first company meeting of GDevCon Ltd. was held in London in November 2017. A [https://twitter.com/swatzyssdc/status/938159481799704577 tweet] on 5th of December 2017 by Steve Watts finally announced the project to the public. &lt;br /&gt;
&lt;br /&gt;
== Other Resources == &lt;br /&gt;
* [http://www.gdevcon.com GDevCon Website]&lt;br /&gt;
* [http://youtube.com/gdevcon GDevCon&#039;s YouTube channel]&lt;br /&gt;
* [https://www.flickr.com/photos/gdevcon/ GDevCon Flickr Album]&lt;br /&gt;
* [https://automatedenver.com/gdevcon-1-review/ Review of GdevCon #1]&lt;br /&gt;
&lt;br /&gt;
[[Category:Conferences]]&lt;br /&gt;
[[Category:Events]]&lt;/div&gt;</summary>
		<author><name>Thoric</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=File:GDevCon3GenevaSept.png&amp;diff=10489</id>
		<title>File:GDevCon3GenevaSept.png</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=File:GDevCon3GenevaSept.png&amp;diff=10489"/>
		<updated>2020-01-08T00:24:02Z</updated>

		<summary type="html">&lt;p&gt;Thoric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GDevCon3 Logo&lt;/div&gt;</summary>
		<author><name>Thoric</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=LabVIEW_Wiki:Featured_content&amp;diff=5609</id>
		<title>LabVIEW Wiki:Featured content</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=LabVIEW_Wiki:Featured_content&amp;diff=5609"/>
		<updated>2018-11-22T15:52:41Z</updated>

		<summary type="html">&lt;p&gt;Thoric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[GDevCon]] - the new Independent LabVIEW Conference&lt;/div&gt;</summary>
		<author><name>Thoric</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=GDevCon&amp;diff=5608</id>
		<title>GDevCon</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=GDevCon&amp;diff=5608"/>
		<updated>2018-11-22T15:50:20Z</updated>

		<summary type="html">&lt;p&gt;Thoric: Created page with &amp;quot;right GDevCon is an independent organisation dedicated to creating a series of events that is all about world-class graphical programmi...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Gdevconsmalllogo.jpg|frameless|right]]&lt;br /&gt;
GDevCon is an independent organisation dedicated to creating a series of events that is all about world-class graphical programming, organised by the community for the community.&lt;br /&gt;
&lt;br /&gt;
Established in 2017, GDevCon held their first conference in Cambridge, UK, on 4-5th September 2018 at Murray Edwards College. The event was attended by over 140 developers, and actually had to be moved from their first venue, Girton College, to accommodate the higher than expected demand for tickets.&lt;br /&gt;
&lt;br /&gt;
The event does not mandate any level of certification, unlike the CLA Summits, enabling access to developers who don&#039;t choose to attain any formal accreditation.&lt;br /&gt;
&lt;br /&gt;
Based on the success of GDevCon#1, GDevCon intend to build on the format and organise additional conferences.&lt;br /&gt;
&lt;br /&gt;
Visit the [http://www.gdevcon.com GDevCon] website to learn more about GDevCon and their future conferences.&lt;/div&gt;</summary>
		<author><name>Thoric</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=File:Gdevconsmalllogo.jpg&amp;diff=5607</id>
		<title>File:Gdevconsmalllogo.jpg</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=File:Gdevconsmalllogo.jpg&amp;diff=5607"/>
		<updated>2018-11-22T15:49:48Z</updated>

		<summary type="html">&lt;p&gt;Thoric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GDevCon Small Logo from website&lt;/div&gt;</summary>
		<author><name>Thoric</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Getting_Started&amp;diff=5606</id>
		<title>Getting Started</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Getting_Started&amp;diff=5606"/>
		<updated>2018-11-22T15:36:12Z</updated>

		<summary type="html">&lt;p&gt;Thoric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;span&amp;gt;This page is intended to be a starting point and resource to help navigate all LabVIEW content on this Wiki and elsewhere.&amp;lt;/span&amp;gt;&amp;lt;p class=&amp;quot;mw_paragraph&amp;quot;&amp;gt;[[LabVIEW|General information about LabVIEW]]&lt;br /&gt;
&lt;br /&gt;
*Basic Topics&lt;br /&gt;
**[[Training|Online Training]]&lt;br /&gt;
**[[LabVIEW_style_guide|LabVIEW Style Guide]]&lt;br /&gt;
**[[Community|Online Community]]&lt;br /&gt;
**[[Contributing_online|Contributing Online]]&lt;br /&gt;
**[[Finding_professional_help|Finding Professional Help]]&lt;br /&gt;
**[[Tips_and_tricks|Useful Tips and Tricks]]&lt;br /&gt;
**[[State_machine|State Machine Design Pattern]]&lt;br /&gt;
*Advanced Topics&lt;br /&gt;
**[[Object_oriented_software|Object Oriented Software]]&lt;br /&gt;
**[[Abstraction|Abstraction]]&lt;br /&gt;
**[[Actor_framework|Actor Framework]]&lt;br /&gt;
**[[Error_handling|Error Handling]]&lt;br /&gt;
**[[Source_code_control|Source Code Control]]&lt;br /&gt;
**[[SOLID_principals|SOLID Principals]]&lt;br /&gt;
**[[Unit_testing|Unit Testing]]&lt;br /&gt;
**[[VI_analyzer|VI Analyzer]]&lt;br /&gt;
**[[Virtual_machines|Virtual Machines]]&lt;br /&gt;
*Connecting With Other Developers&lt;br /&gt;
**[[User_groups|User Groups]]&lt;br /&gt;
**[[NI_week|NI Week]]&lt;br /&gt;
**[[GDevCon|GDevCon]]&lt;br /&gt;
**[[Summits|Summits]]&lt;br /&gt;
*[[LabVIEW_blogs|LabVIEW Blogs]]&lt;br /&gt;
*[[Online_videos|Online Videos]]&lt;br /&gt;
*[[Certifications|Certifications]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;[[data flow|Data Flow]]&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;[[LabVIEW tutorial|LabVIEW Tutorial]]&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;Hardware Basics&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Lists]]&lt;/div&gt;</summary>
		<author><name>Thoric</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=LabVIEW_configuration_file/Block_Diagram&amp;diff=5605</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=5605"/>
		<updated>2018-11-22T13:52:07Z</updated>

		<summary type="html">&lt;p&gt;Thoric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a list of LabVIEW ini File settings relating to Block Diagram behaviour.&lt;br /&gt;
&lt;br /&gt;
{{TOCnestright}}&lt;br /&gt;
&lt;br /&gt;
{{ labviewconfigurationkey&lt;br /&gt;
| keyname =  allowDragDropFromFileDlg&lt;br /&gt;
| example = allowDragDropFromFileDlg=TRUE&lt;br /&gt;
| datatype = b&lt;br /&gt;
| description = Enables drag and drop functionality from the file dialog to the block diagram of a vi&lt;br /&gt;
| permitted_values = TRUE or FALSE&lt;br /&gt;
| default = FALSE&lt;br /&gt;
| LV1 = 8.5&lt;br /&gt;
| OS1 = w&lt;br /&gt;
| OS2 = m&lt;br /&gt;
| OS3 = l&lt;br /&gt;
| OS4 = u&lt;br /&gt;
| notes = This functionality existed in LV 5.0 -&amp;gt; LV 7.1, was removed in LV 8.x, and added back in as an ini setting in 8.5&lt;br /&gt;
}}&lt;br /&gt;
{{ labviewconfigurationkey&lt;br /&gt;
| keyname =  autoWireMax&lt;br /&gt;
| example = autoWireMax=24&lt;br /&gt;
| datatype = i&lt;br /&gt;
| description = Maximum distance between nodes for autowiring to be active&lt;br /&gt;
| permitted_values = 1 to 2&amp;lt;sup&amp;gt;32&amp;lt;/sup&amp;gt;&lt;br /&gt;
| default = 16&lt;br /&gt;
| LV1 =6&lt;br /&gt;
| LV2 =7&lt;br /&gt;
| LV3 =8&lt;br /&gt;
| LV4 =&lt;br /&gt;
| LV5 =&lt;br /&gt;
| LV6 =&lt;br /&gt;
| OS1 = w&lt;br /&gt;
| OS2 = m&lt;br /&gt;
| OS3 = l&lt;br /&gt;
| OS4 = u&lt;br /&gt;
| notes = This setting is only effective if [[#enableAutoWire|enableAutoWire]] is set to TRUE&lt;br /&gt;
}}&lt;br /&gt;
{{ labviewconfigurationkey&lt;br /&gt;
| keyname =  autoWireMin&lt;br /&gt;
| example = autoWireMin=8&lt;br /&gt;
| datatype = i&lt;br /&gt;
| description = Minimum distance between nodes for autowiring to be active&lt;br /&gt;
| permitted_values = 1 to 2&amp;lt;sup&amp;gt;32&amp;lt;/sup&amp;gt;&lt;br /&gt;
| default = 4&lt;br /&gt;
| LV1 = 6&lt;br /&gt;
| LV2 = 7&lt;br /&gt;
| LV3 = 8&lt;br /&gt;
| LV4 =&lt;br /&gt;
| LV5 =&lt;br /&gt;
| LV6 =&lt;br /&gt;
| OS1 = w&lt;br /&gt;
| OS2 = m&lt;br /&gt;
| OS3 = l&lt;br /&gt;
| OS4 = u&lt;br /&gt;
| notes = This setting is only effective if [[#enableAutoWire|enableAutoWire]] is set to TRUE&lt;br /&gt;
}}&lt;br /&gt;
{{ labviewconfigurationkey&lt;br /&gt;
| keyname =  copyDeleteFPDCOFromFPTerm&lt;br /&gt;
| example = copyDeleteFPDCOFromFPTerm=TRUE&lt;br /&gt;
| datatype = b&lt;br /&gt;
| description = Delete front panel terminals from diagram&lt;br /&gt;
| permitted_values = TRUE or FALSE&lt;br /&gt;
| default = FALSE&lt;br /&gt;
| LV1 =&lt;br /&gt;
| LV2 = 4&lt;br /&gt;
| LV3 = 5&lt;br /&gt;
| LV4 = 6&lt;br /&gt;
| LV5 = 7&lt;br /&gt;
| LV6 = 8&lt;br /&gt;
| OS1 = w&lt;br /&gt;
| OS2 = m&lt;br /&gt;
| OS3 = l&lt;br /&gt;
| OS4 = u&lt;br /&gt;
| notes = None&lt;br /&gt;
}}&lt;br /&gt;
{{ labviewconfigurationkey&lt;br /&gt;
| keyname =  enableAutoWire&lt;br /&gt;
| example = enableAutoWire=FALSE&lt;br /&gt;
| datatype = b&lt;br /&gt;
| description = Enable Auto Wiring&lt;br /&gt;
| permitted_values = TRUE or FALSE&lt;br /&gt;
| default = TRUE&lt;br /&gt;
| LV1 = 6&lt;br /&gt;
| LV2 = 7&lt;br /&gt;
| LV3 = 8&lt;br /&gt;
| LV4 =&lt;br /&gt;
| LV5 =&lt;br /&gt;
| LV6 =&lt;br /&gt;
| OS1 = w&lt;br /&gt;
| OS2 = m&lt;br /&gt;
| OS3 = l&lt;br /&gt;
| OS4 = u&lt;br /&gt;
| notes = None&lt;br /&gt;
}}&lt;br /&gt;
{{ labviewconfigurationkey&lt;br /&gt;
| keyname =  FancyFPTerms&lt;br /&gt;
| example = FancyFPTerms=FALSE&lt;br /&gt;
| datatype = b&lt;br /&gt;
| description = Place front panel terminals as icons&lt;br /&gt;
| permitted_values = TRUE or FALSE&lt;br /&gt;
| default = (Depends on LV Version)&lt;br /&gt;
| LV1 = 7&lt;br /&gt;
| LV2 = 8&lt;br /&gt;
| LV3 =&lt;br /&gt;
| LV4 =&lt;br /&gt;
| LV5 =&lt;br /&gt;
| LV6 =&lt;br /&gt;
| OS1 = w&lt;br /&gt;
| OS2 = m&lt;br /&gt;
| OS3 = l&lt;br /&gt;
| OS4 = u&lt;br /&gt;
| notes = http://forums.lavag.org/FancyFPTerms-in-LabVIEWini-t725.html&lt;br /&gt;
}}&lt;br /&gt;
{{ labviewconfigurationkey&lt;br /&gt;
| keyname =  funkyErrClustWire&lt;br /&gt;
| example = funkyErrClustWire=FALSE&lt;br /&gt;
| datatype = b&lt;br /&gt;
| description = Change Error Cluster wires color from the standard cluster pink to a more distinctive brown/green color&lt;br /&gt;
| permitted_values = TRUE or FALSE&lt;br /&gt;
| default = LabVIEW 5.1, 6.x, 7.x: FALSE,  LabVIEW 8.x: TRUE&lt;br /&gt;
| LV1 = 5&lt;br /&gt;
| LV2 = 6&lt;br /&gt;
| LV3 = 7&lt;br /&gt;
| LV4 = 8&lt;br /&gt;
| LV5 =&lt;br /&gt;
| LV6 =&lt;br /&gt;
| OS1 = w&lt;br /&gt;
| OS2 = m&lt;br /&gt;
| OS3 = l&lt;br /&gt;
| OS4 = u&lt;br /&gt;
| notes = None&lt;br /&gt;
}}&lt;br /&gt;
{{ labviewconfigurationkey&lt;br /&gt;
| keyname =  inlineSubVIEnabled&lt;br /&gt;
| example = inlineSubVIEnabled=FALSE&lt;br /&gt;
| datatype = b&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.&lt;br /&gt;
| permitted_values = TRUE or FALSE&lt;br /&gt;
| default = FALSE&lt;br /&gt;
| LV1 = 6&lt;br /&gt;
| LV2 = 7&lt;br /&gt;
| LV3 = 8&lt;br /&gt;
| LV4 =&lt;br /&gt;
| LV5 =&lt;br /&gt;
| LV6 =&lt;br /&gt;
| OS1 = w&lt;br /&gt;
| OS2 = m&lt;br /&gt;
| OS3 = l&lt;br /&gt;
| OS4 = u&lt;br /&gt;
| notes = None&lt;br /&gt;
}}&lt;br /&gt;
{{ labviewconfigurationkey&lt;br /&gt;
| keyname =  maxUndoSteps&lt;br /&gt;
| example = maxUndoSteps=50&lt;br /&gt;
| datatype = i&lt;br /&gt;
| description = Maximum undo steps per VI&lt;br /&gt;
| permitted_values = 1 to 99&lt;br /&gt;
| default = 8&lt;br /&gt;
| LV1 = 5&lt;br /&gt;
| LV2 = 6&lt;br /&gt;
| LV3 = 7&lt;br /&gt;
| LV4 = 8&lt;br /&gt;
| LV5 =&lt;br /&gt;
| LV6 =&lt;br /&gt;
| OS1 = w&lt;br /&gt;
| OS2 = m&lt;br /&gt;
| OS3 = l&lt;br /&gt;
| OS4 = u&lt;br /&gt;
| notes = None&lt;br /&gt;
}}&lt;br /&gt;
{{ labviewconfigurationkey&lt;br /&gt;
| keyname =  showSubVIName&lt;br /&gt;
| example = showSubVIName=TRUE&lt;br /&gt;
| datatype = b&lt;br /&gt;
| description = Show subVI names when dropped&lt;br /&gt;
| permitted_values = TRUE or FALSE&lt;br /&gt;
| default = FALSE&lt;br /&gt;
| LV1 =4&lt;br /&gt;
| LV2 =5&lt;br /&gt;
| LV3 =6&lt;br /&gt;
| LV4 =7&lt;br /&gt;
| LV5 =8&lt;br /&gt;
| LV6 =&lt;br /&gt;
| OS1 = w&lt;br /&gt;
| OS2 = m&lt;br /&gt;
| OS3 = l&lt;br /&gt;
| OS4 = u&lt;br /&gt;
| notes = None&lt;br /&gt;
}}&lt;br /&gt;
{{ labviewconfigurationkey&lt;br /&gt;
| keyname =  showTipStringsOnTerms&lt;br /&gt;
| example = showTipStringsOnTerms=FALSE&lt;br /&gt;
| datatype = b&lt;br /&gt;
| description = Show tip-strips over terminals&lt;br /&gt;
| permitted_values = TRUE or FALSE&lt;br /&gt;
| default = TRUE&lt;br /&gt;
| LV1 =4&lt;br /&gt;
| LV2 =5&lt;br /&gt;
| LV3 =6&lt;br /&gt;
| LV4 =7&lt;br /&gt;
| LV5 =8&lt;br /&gt;
| LV6 =&lt;br /&gt;
| OS1 = w&lt;br /&gt;
| OS2 = m&lt;br /&gt;
| OS3 = l&lt;br /&gt;
| OS4 = u&lt;br /&gt;
| notes = None&lt;br /&gt;
}}&lt;br /&gt;
{{ labviewconfigurationkey&lt;br /&gt;
| keyname =  showWireDots&lt;br /&gt;
| example = showWireDots=TRUE&lt;br /&gt;
| datatype = b&lt;br /&gt;
| description = Show dots at wire junctions&lt;br /&gt;
| permitted_values = TRUE or FALSE&lt;br /&gt;
| default = FALSE&lt;br /&gt;
| LV1 =7&lt;br /&gt;
| LV2 =8&lt;br /&gt;
| LV3 =&lt;br /&gt;
| LV4 =&lt;br /&gt;
| LV5 =&lt;br /&gt;
| LV6 =&lt;br /&gt;
| OS1 = w&lt;br /&gt;
| OS2 = m&lt;br /&gt;
| OS3 = l&lt;br /&gt;
| OS4 = u&lt;br /&gt;
| notes = None&lt;br /&gt;
}}&lt;br /&gt;
{{ labviewconfigurationkey&lt;br /&gt;
| keyname =  showWireGuides&lt;br /&gt;
| example = showWireGuides=FALSE&lt;br /&gt;
| datatype = b&lt;br /&gt;
| description = Show dashed line while wiring&lt;br /&gt;
| permitted_values = TRUE or FALSE&lt;br /&gt;
| default = TRUE&lt;br /&gt;
| LV1 =4&lt;br /&gt;
| LV2 =5&lt;br /&gt;
| LV3 =6&lt;br /&gt;
| LV4 =7&lt;br /&gt;
| LV5 =8&lt;br /&gt;
| LV6 =&lt;br /&gt;
| OS1 = w&lt;br /&gt;
| OS2 = m&lt;br /&gt;
| OS3 = l&lt;br /&gt;
| OS4 = u&lt;br /&gt;
| notes = None&lt;br /&gt;
}}&lt;br /&gt;
{{ labviewconfigurationkey&lt;br /&gt;
| keyname =  structuresFadeToDiagramBeneath&lt;br /&gt;
| example = structuresFadeToDiagramBeneath=FALSE&lt;br /&gt;
| datatype = b&lt;br /&gt;
| description = Makes the diagram of structures semi-transparent so that you can see objects behind them.&lt;br /&gt;
| permitted_values = TRUE or FALSE&lt;br /&gt;
| default = TRUE&lt;br /&gt;
| LV1 =6&lt;br /&gt;
| LV2 =7&lt;br /&gt;
| LV3 =8&lt;br /&gt;
| LV4 =&lt;br /&gt;
| LV5 =&lt;br /&gt;
| LV6 =&lt;br /&gt;
| OS1 = w&lt;br /&gt;
| OS2 = m&lt;br /&gt;
| OS3 = l&lt;br /&gt;
| OS4 = u&lt;br /&gt;
| notes = Enabling this setting will slow down the development environment on large Block Diagrams. Feature disabled in LabVIEW 2014 onwards.&lt;br /&gt;
}}&lt;br /&gt;
{{ labviewconfigurationkey&lt;br /&gt;
| keyname =  transparentBDLabels&lt;br /&gt;
| example = transparentBDLabels=TRUE&lt;br /&gt;
| datatype = b&lt;br /&gt;
| description = Use transparent name labels&lt;br /&gt;
| permitted_values = TRUE or FALSE&lt;br /&gt;
| default = FALSE&lt;br /&gt;
| LV1 =5&lt;br /&gt;
| LV2 =6&lt;br /&gt;
| LV3 =7&lt;br /&gt;
| LV4 =8&lt;br /&gt;
| LV5 =&lt;br /&gt;
| LV6 =&lt;br /&gt;
| OS1 = w&lt;br /&gt;
| OS2 = m&lt;br /&gt;
| OS3 = l&lt;br /&gt;
| OS4 = u&lt;br /&gt;
| notes = None&lt;br /&gt;
}}&lt;br /&gt;
{{ labviewconfigurationkey&lt;br /&gt;
| keyname = UseNumbersForNewVIIcons&lt;br /&gt;
| example = UseNumbersForNewVIIcons=FALSE&lt;br /&gt;
| datatype = b&lt;br /&gt;
| description = Tells LabVIEW whether to automatically include a number (1-9) in the lower-right corner of each new VI&#039;s icon.&lt;br /&gt;
| permitted_values = TRUE or FALSE&lt;br /&gt;
| default = TRUE&lt;br /&gt;
| LV1 = 8.6&lt;br /&gt;
| LV2 =&lt;br /&gt;
| LV3 =&lt;br /&gt;
| LV4 =&lt;br /&gt;
| LV5 =&lt;br /&gt;
| LV6 =&lt;br /&gt;
| OS1 =w&lt;br /&gt;
| OS2 =m&lt;br /&gt;
| OS3 =l&lt;br /&gt;
| OS4 =&lt;br /&gt;
| notes = This key replaces [[#UseNumbersForNewVIIconsInLibs|UseNumbersForNewVIIconsInLibs]] from LabVIEW 8.5.&lt;br /&gt;
}}&lt;br /&gt;
{{ labviewconfigurationkey&lt;br /&gt;
| keyname = UseNumbersForNewVIIconsInLibs&lt;br /&gt;
| example = UseNumbersForNewVIIconsInLibs=FALSE&lt;br /&gt;
| datatype = b&lt;br /&gt;
| description = Tells LabVIEW whether to automatically include a number (1-9) in the lower-right corner of each new VI&#039;s icon for VIs created inside libraries (.lvlib, .lvclass, .xctl, .lvsc, etc).&lt;br /&gt;
| permitted_values = TRUE or FALSE&lt;br /&gt;
| default = TRUE&lt;br /&gt;
| LV1 = 8.5&lt;br /&gt;
| LV2 =&lt;br /&gt;
| LV3 =&lt;br /&gt;
| LV4 =&lt;br /&gt;
| LV5 =&lt;br /&gt;
| LV6 =&lt;br /&gt;
| OS1 =w&lt;br /&gt;
| OS2 =m&lt;br /&gt;
| OS3 =l&lt;br /&gt;
| OS4 =&lt;br /&gt;
| notes = This key was replaced by [[#UseNumbersForNewVIIcons|UseNumbersForNewVIIcons]] in LabVIEW 8.6.&lt;br /&gt;
}}&lt;br /&gt;
{{ labviewconfigurationkey&lt;br /&gt;
| keyname =  viCaptionTipStrings&lt;br /&gt;
| example = viCaptionTipStrings=FALSE&lt;br /&gt;
| datatype = b&lt;br /&gt;
| description = Use control captions for subVI tip-strips&lt;br /&gt;
| permitted_values = TRUE or FALSE&lt;br /&gt;
| default = TRUE&lt;br /&gt;
| LV1 =5&lt;br /&gt;
| LV2 =6&lt;br /&gt;
| LV3 =7&lt;br /&gt;
| LV4 =8&lt;br /&gt;
| LV5 =&lt;br /&gt;
| LV6 =&lt;br /&gt;
| OS1 = w&lt;br /&gt;
| OS2 = m&lt;br /&gt;
| OS3 = l&lt;br /&gt;
| OS4 = u&lt;br /&gt;
| notes = None&lt;br /&gt;
}}&lt;br /&gt;
{{ labviewconfigurationkey&lt;br /&gt;
| keyname = SourceOnlyEnvironment&lt;br /&gt;
| example = SourceOnlyEnvironment=True&lt;br /&gt;
| datatype = b&lt;br /&gt;
| description = The option &amp;quot;Separate Compiled Code from Source&amp;quot; is turned on by default&lt;br /&gt;
| permitted_values = TRUE or FALSE&lt;br /&gt;
| default = FALSE&lt;br /&gt;
| LV1 =10&lt;br /&gt;
| LV2 =&lt;br /&gt;
| LV3 =&lt;br /&gt;
| LV4 =&lt;br /&gt;
| LV5 =&lt;br /&gt;
| LV6 =&lt;br /&gt;
| OS1 = w&lt;br /&gt;
| OS2 = &lt;br /&gt;
| OS3 = &lt;br /&gt;
| OS4 = &lt;br /&gt;
| notes = Currently this causes &amp;quot;uncomfortably&amp;quot; slow load times when opening a large number of VIs which this option enabled.  Reference, [https://decibel.ni.com/content/groups/large-labview-application-development/blog/2010/09 NI forums]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Configuration File|Block Diagram]]&lt;/div&gt;</summary>
		<author><name>Thoric</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=LabVIEW_configuration_file/Debugging&amp;diff=5387</id>
		<title>LabVIEW configuration file/Debugging</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=LabVIEW_configuration_file/Debugging&amp;diff=5387"/>
		<updated>2013-12-13T14:31:50Z</updated>

		<summary type="html">&lt;p&gt;Thoric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a list of LabVIEW ini File settings relating to Debugging.&lt;br /&gt;
{{TOCright}}&lt;br /&gt;
{{ labviewconfigurationkey&lt;br /&gt;
| keyname =  showExePathInWindowTitle&lt;br /&gt;
| example = showExePathInWindowTitle=TRUE&lt;br /&gt;
| datatype = b&lt;br /&gt;
| description = It puts the full path of every vi in the title bar (as well as the path and version to the LabVIEW instance the vi belongs to).&lt;br /&gt;
| permitted_values = TRUE or FALSE&lt;br /&gt;
| default = FALSE&lt;br /&gt;
| LV1 = 8.x&lt;br /&gt;
| OS1 = w&lt;br /&gt;
| OS2 = m&lt;br /&gt;
| OS3 = l&lt;br /&gt;
| OS4 = u&lt;br /&gt;
| notes =&lt;br /&gt;
}}&lt;br /&gt;
{{ labviewconfigurationkey&lt;br /&gt;
| keyname = prettyExecHilite&lt;br /&gt;
| example = prettyExecHilite=FALSE&lt;br /&gt;
| datatype =b&lt;br /&gt;
| description =Show data flow trace bubbles during execution highlighting&lt;br /&gt;
| permitted_values =TRUE or FALSE&lt;br /&gt;
| default =TRUE&lt;br /&gt;
| LV1 = 3&lt;br /&gt;
| LV2 = 4&lt;br /&gt;
| LV3 = 5&lt;br /&gt;
| LV4 = 6&lt;br /&gt;
| LV5 = 7&lt;br /&gt;
| LV6 = 8&lt;br /&gt;
| OS1 =w&lt;br /&gt;
| OS2 =m&lt;br /&gt;
| OS3 =l&lt;br /&gt;
| OS4 =u&lt;br /&gt;
| notes =None&lt;br /&gt;
}}&lt;br /&gt;
{{ labviewconfigurationkey&lt;br /&gt;
| keyname = autoProbe&lt;br /&gt;
| example = autoProbe=FALSE&lt;br /&gt;
| datatype =b&lt;br /&gt;
| description =Show data values on wires during execution highlighting&lt;br /&gt;
| permitted_values =TRUE or FALSE&lt;br /&gt;
| default =TRUE&lt;br /&gt;
| LV1 = 3&lt;br /&gt;
| LV2 = 4&lt;br /&gt;
| LV3 = 5&lt;br /&gt;
| LV4 = 6&lt;br /&gt;
| LV5 = 7&lt;br /&gt;
| LV6 = 8&lt;br /&gt;
| OS1 =w&lt;br /&gt;
| OS2 =m&lt;br /&gt;
| OS3 =l&lt;br /&gt;
| OS4 =u&lt;br /&gt;
| notes =None&lt;br /&gt;
}}&lt;br /&gt;
{{ labviewconfigurationkey&lt;br /&gt;
| keyname = showWarnings&lt;br /&gt;
| example = showWarnings=TRUE&lt;br /&gt;
| datatype =b&lt;br /&gt;
| description =Show warnings in error box&lt;br /&gt;
| permitted_values =TRUE or FALSE&lt;br /&gt;
| default =FALSE&lt;br /&gt;
| LV1 = 3&lt;br /&gt;
| LV2 = 4&lt;br /&gt;
| LV3 = 5&lt;br /&gt;
| LV4 = 6&lt;br /&gt;
| LV5 = 7&lt;br /&gt;
| LV6 = 8&lt;br /&gt;
| OS1 =w&lt;br /&gt;
| OS2 =m&lt;br /&gt;
| OS3 =l&lt;br /&gt;
| OS4 =u&lt;br /&gt;
| notes =None&lt;br /&gt;
}}&lt;br /&gt;
{{ labviewconfigurationkey&lt;br /&gt;
| keyname = massCompAll&lt;br /&gt;
| example = massCompAll=TRUE&lt;br /&gt;
| datatype =b&lt;br /&gt;
| description =Forces Mass Compile to compile every VI&lt;br /&gt;
| permitted_values =TRUE or FALSE&lt;br /&gt;
| default =FALSE&lt;br /&gt;
| LV1 = 8.6.1 onwards&lt;br /&gt;
| OS1 =w&lt;br /&gt;
| OS2 =m&lt;br /&gt;
| OS3 =l&lt;br /&gt;
| OS4 =u&lt;br /&gt;
| notes = source: https://forums.ni.com/t5/LabVIEW-Idea-Exchange/Force-Recompile-option-in-Mass-Compile/idc-p/2662843#M26036&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Configuration File|Debugging]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Configuration File|Debugging]]&lt;/div&gt;</summary>
		<author><name>Thoric</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Richard_Thomas_(LabVIEW_Champion)&amp;diff=4836</id>
		<title>Richard Thomas (LabVIEW Champion)</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Richard_Thomas_(LabVIEW_Champion)&amp;diff=4836"/>
		<updated>2012-09-26T15:50:42Z</updated>

		<summary type="html">&lt;p&gt;Thoric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;NI Handle: Thoric&lt;br /&gt;
&lt;br /&gt;
Home: Cambridge, England&lt;br /&gt;
&lt;br /&gt;
Programming Languages: LabVIEW (incl. RT and FPGA)&lt;br /&gt;
&lt;br /&gt;
Certification: Certified LabVIEW Architect&lt;br /&gt;
&lt;br /&gt;
Used LabVIEW Since: 2000 (Version 6i)&lt;br /&gt;
&lt;br /&gt;
Applications Areas:&lt;br /&gt;
Software consultancy providing solutions to most scientific and industrial software challenges.&lt;br /&gt;
Biography:&lt;br /&gt;
&lt;br /&gt;
I&#039;ve programmed in LabVIEW since version 6i as a post-grad student at Leicester University, where I used LabVIEW to acquire and analyse data from a large scale laminar wind tunnel. I expanded my experience further when I took up a post-doc position at the Turbomachinery Group of the Engineering Department at Cambridge University, where LabVIEW is used extensively for hardware control and instrumentation acquisition and data analysis.&lt;br /&gt;
&lt;br /&gt;
I currently work as a Senior Systems Engineer at Product Technology Partners, also based in Cambridge, UK. As a software consultancy we provide solutions to almost any scientific and industrial control challenge. I&#039;m a hugely enthusiastic LabVIEW programmer, and enjoy pushing LabVIEW and NI hardware to their limits.&lt;br /&gt;
&lt;br /&gt;
I host the Cambridge LabVIEW Users Group, one of only two user groups here in the UK, and frequently present material on a wide range of topics, with my favorites being Object Oriented programming and User Interface design.&lt;br /&gt;
&lt;br /&gt;
Personally, when I&#039;m not working with LabVIEW, I&#039;m often finding things to break so that I can fix them (I&#039;m an aspirational DIYer), and annoying the local townsfolk every Monday night ringing the church bells as a student campanologist.&lt;br /&gt;
&lt;br /&gt;
User Groups:&lt;br /&gt;
I host and regularly present atthe Cambridge LabVIEW User Group (CLUG). We gather three times a year in the Cambridge area. Visit our website if you are interested and want to come along (http://www.labviewcambridge.co.uk/). The site has its own forum pages and a downloads section that includes all our presentations and demonstration material.&lt;br /&gt;
&lt;br /&gt;
www.labviewcambridge.co.uk&lt;br /&gt;
www.ptpart.co.uk&lt;br /&gt;
&lt;br /&gt;
[[Category:LabVIEW Champions]]&lt;/div&gt;</summary>
		<author><name>Thoric</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Richard_Thomas_(LabVIEW_Champion)&amp;diff=4835</id>
		<title>Richard Thomas (LabVIEW Champion)</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Richard_Thomas_(LabVIEW_Champion)&amp;diff=4835"/>
		<updated>2012-09-26T15:50:11Z</updated>

		<summary type="html">&lt;p&gt;Thoric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Avatar: Thoric&lt;br /&gt;
&lt;br /&gt;
Home: Cambridge, England&lt;br /&gt;
&lt;br /&gt;
Programming Languages: LabVIEW (incl. RT and FPGA)&lt;br /&gt;
&lt;br /&gt;
Certification: Certified LabVIEW Architect&lt;br /&gt;
&lt;br /&gt;
Used LabVIEW Since: 2000 (Version 6i)&lt;br /&gt;
&lt;br /&gt;
Applications Areas:&lt;br /&gt;
Software consultancy providing solutions to most scientific and industrial software challenges.&lt;br /&gt;
Biography:&lt;br /&gt;
&lt;br /&gt;
I&#039;ve programmed in LabVIEW since version 6i as a post-grad student at Leicester University, where I used LabVIEW to acquire and analyse data from a large scale laminar wind tunnel. I expanded my experience further when I took up a post-doc position at the Turbomachinery Group of the Engineering Department at Cambridge University, where LabVIEW is used extensively for hardware control and instrumentation acquisition and data analysis.&lt;br /&gt;
&lt;br /&gt;
I currently work as a Senior Systems Engineer at Product Technology Partners, also based in Cambridge, UK. As a software consultancy we provide solutions to almost any scientific and industrial control challenge. I&#039;m a hugely enthusiastic LabVIEW programmer, and enjoy pushing LabVIEW and NI hardware to their limits.&lt;br /&gt;
&lt;br /&gt;
I host the Cambridge LabVIEW Users Group, one of only two user groups here in the UK, and frequently present material on a wide range of topics, with my favorites being Object Oriented programming and User Interface design.&lt;br /&gt;
&lt;br /&gt;
Personally, when I&#039;m not working with LabVIEW, I&#039;m often finding things to break so that I can fix them (I&#039;m an aspirational DIYer), and annoying the local townsfolk every Monday night ringing the church bells as a student campanologist.&lt;br /&gt;
&lt;br /&gt;
User Groups:&lt;br /&gt;
I host and regularly present atthe Cambridge LabVIEW User Group (CLUG). We gather three times a year in the Cambridge area. Visit our website if you are interested and want to come along (http://www.labviewcambridge.co.uk/). The site has its own forum pages and a downloads section that includes all our presentations and demonstration material.&lt;br /&gt;
&lt;br /&gt;
www.labviewcambridge.co.uk&lt;br /&gt;
www.ptpart.co.uk&lt;br /&gt;
&lt;br /&gt;
[[Category:LabVIEW Champions]]&lt;/div&gt;</summary>
		<author><name>Thoric</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Richard_Thomas_(LabVIEW_Champion)&amp;diff=4834</id>
		<title>Richard Thomas (LabVIEW Champion)</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Richard_Thomas_(LabVIEW_Champion)&amp;diff=4834"/>
		<updated>2012-09-26T15:49:56Z</updated>

		<summary type="html">&lt;p&gt;Thoric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Avatar: Thoric&lt;br /&gt;
&lt;br /&gt;
Home: Cambridge, England&lt;br /&gt;
&lt;br /&gt;
Programming Languages: LabVIEW (incl. RT and FPGA)&lt;br /&gt;
&lt;br /&gt;
Certification: Certified LabVIEW Architect&lt;br /&gt;
&lt;br /&gt;
Used LabVIEW Since: 2000 (Version 6i)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Applications Areas:&lt;br /&gt;
Software consultancy providing solutions to most scientific and industrial software challenges.&lt;br /&gt;
Biography:&lt;br /&gt;
&lt;br /&gt;
I&#039;ve programmed in LabVIEW since version 6i as a post-grad student at Leicester University, where I used LabVIEW to acquire and analyse data from a large scale laminar wind tunnel. I expanded my experience further when I took up a post-doc position at the Turbomachinery Group of the Engineering Department at Cambridge University, where LabVIEW is used extensively for hardware control and instrumentation acquisition and data analysis.&lt;br /&gt;
&lt;br /&gt;
I currently work as a Senior Systems Engineer at Product Technology Partners, also based in Cambridge, UK. As a software consultancy we provide solutions to almost any scientific and industrial control challenge. I&#039;m a hugely enthusiastic LabVIEW programmer, and enjoy pushing LabVIEW and NI hardware to their limits.&lt;br /&gt;
&lt;br /&gt;
I host the Cambridge LabVIEW Users Group, one of only two user groups here in the UK, and frequently present material on a wide range of topics, with my favorites being Object Oriented programming and User Interface design.&lt;br /&gt;
&lt;br /&gt;
Personally, when I&#039;m not working with LabVIEW, I&#039;m often finding things to break so that I can fix them (I&#039;m an aspirational DIYer), and annoying the local townsfolk every Monday night ringing the church bells as a student campanologist.&lt;br /&gt;
&lt;br /&gt;
User Groups:&lt;br /&gt;
I host and regularly present atthe Cambridge LabVIEW User Group (CLUG). We gather three times a year in the Cambridge area. Visit our website if you are interested and want to come along (http://www.labviewcambridge.co.uk/). The site has its own forum pages and a downloads section that includes all our presentations and demonstration material.&lt;br /&gt;
&lt;br /&gt;
www.labviewcambridge.co.uk&lt;br /&gt;
www.ptpart.co.uk&lt;br /&gt;
&lt;br /&gt;
[[Category:LabVIEW Champions]]&lt;br /&gt;
[[Category:LabVIEW Champions]]&lt;/div&gt;</summary>
		<author><name>Thoric</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Richard_Thomas_(LabVIEW_Champion)&amp;diff=4833</id>
		<title>Richard Thomas (LabVIEW Champion)</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Richard_Thomas_(LabVIEW_Champion)&amp;diff=4833"/>
		<updated>2012-09-26T15:49:36Z</updated>

		<summary type="html">&lt;p&gt;Thoric: Created page with &amp;quot;{| class=&amp;quot;wikitable&amp;quot;|-| Name: || Dr. Richard Thomas |-| NI Handle: || Thoric |-| Programming Languages: || LabVIEW (incl. RT, FPGA) |-| Certification: || Certified LabVIEW Archit...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot;|-| Name: || Dr. Richard Thomas |-| NI Handle: || Thoric |-| Programming Languages: || LabVIEW (incl. RT, FPGA) |-| Certification: || Certified LabVIEW Architect |-| Used LabVIEW Since: || 2000 (Version 6i) |}&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Avatar: Thoric&lt;br /&gt;
&lt;br /&gt;
Home: Cambridge, England&lt;br /&gt;
&lt;br /&gt;
Programming Languages: LabVIEW (incl. RT and FPGA)&lt;br /&gt;
&lt;br /&gt;
Certification: Certified LabVIEW Architect&lt;br /&gt;
&lt;br /&gt;
Used LabVIEW Since: 2000 (Version 6i)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Applications Areas:&lt;br /&gt;
Software consultancy providing solutions to most scientific and industrial software challenges.&lt;br /&gt;
Biography:&lt;br /&gt;
&lt;br /&gt;
I&#039;ve programmed in LabVIEW since version 6i as a post-grad student at Leicester University, where I used LabVIEW to acquire and analyse data from a large scale laminar wind tunnel. I expanded my experience further when I took up a post-doc position at the Turbomachinery Group of the Engineering Department at Cambridge University, where LabVIEW is used extensively for hardware control and instrumentation acquisition and data analysis.&lt;br /&gt;
&lt;br /&gt;
I currently work as a Senior Systems Engineer at Product Technology Partners, also based in Cambridge, UK. As a software consultancy we provide solutions to almost any scientific and industrial control challenge. I&#039;m a hugely enthusiastic LabVIEW programmer, and enjoy pushing LabVIEW and NI hardware to their limits.&lt;br /&gt;
&lt;br /&gt;
I host the Cambridge LabVIEW Users Group, one of only two user groups here in the UK, and frequently present material on a wide range of topics, with my favorites being Object Oriented programming and User Interface design.&lt;br /&gt;
&lt;br /&gt;
Personally, when I&#039;m not working with LabVIEW, I&#039;m often finding things to break so that I can fix them (I&#039;m an aspirational DIYer), and annoying the local townsfolk every Monday night ringing the church bells as a student campanologist.&lt;br /&gt;
&lt;br /&gt;
User Groups:&lt;br /&gt;
I host and regularly present atthe Cambridge LabVIEW User Group (CLUG). We gather three times a year in the Cambridge area. Visit our website if you are interested and want to come along (http://www.labviewcambridge.co.uk/). The site has its own forum pages and a downloads section that includes all our presentations and demonstration material.&lt;br /&gt;
&lt;br /&gt;
www.labviewcambridge.co.uk&lt;br /&gt;
www.ptpart.co.uk&lt;br /&gt;
&lt;br /&gt;
[[Category:LabVIEW Champions]]&lt;br /&gt;
&lt;br /&gt;
[[Category:LabVIEW Champions]]&lt;/div&gt;</summary>
		<author><name>Thoric</name></author>
	</entry>
</feed>