<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;CUcARnc_cCp7ImA9WhBQGUo.&quot;"><id>tag:blogger.com,1999:blog-3607298864599224213</id><updated>2013-03-22T12:24:07.948-05:00</updated><title>LabVIEW Artisan</title><subtitle type="html">My experiences coding with National Instruments' LabVIEW programming language</subtitle><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://labviewartisan.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://labviewartisan.blogspot.com/" /><link rel="next" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default?start-index=26&amp;max-results=25&amp;redirect=false&amp;v=2" /><author><name>Darren Nattinger</name><uri>http://www.blogger.com/profile/02086721848867401467</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://2.bp.blogspot.com/_GmlqCX6Omow/Sa2cs4MLtbI/AAAAAAAAABk/4e4f-vRbwxM/S220/burger.gif" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>50</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/labviewartisan" /><feedburner:info uri="labviewartisan" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry gd:etag="W/&quot;A0IHSHo5eSp7ImA9WhNSGUs.&quot;"><id>tag:blogger.com,1999:blog-3607298864599224213.post-6226355985979100639</id><published>2012-11-03T14:05:00.001-05:00</published><updated>2012-11-03T14:05:39.421-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-11-03T14:05:39.421-05:00</app:edited><title>Getting Started with Custom Quick Drop Keyboard Shortcuts</title><content type="html">Back when I first introduced Quick Drop Keyboard Shortcuts (QDKS) in LabVIEW 2009, I wrote &lt;a href="http://labviewartisan.blogspot.com/2009/08/write-your-own-quick-drop-keyboard.html"&gt;this blog post&lt;/a&gt; that discussed how to write your own shortcuts. That information is still valid (for LabVIEW 2009, anyway), but it's a bit dated, and doesn't quite discuss all the details and functionality available today. Plus, I've been asked several times recently about how to "get started" writing custom QDKS. So this blog post will be a a refresher, along with up-to-date information about what's currently available in LabVIEW 2012 that pertains to QDKS.&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;b&gt;&lt;u&gt;Template&lt;/u&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div&gt;
There is a plugin template that ships with LabVIEW that you can use to get started writing your shortcut:&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;i&gt;[LabVIEW 2012]\resource\dialog\QuickDrop\QuickDrop Plugin Template.vi&lt;/i&gt;&lt;/div&gt;
&lt;div&gt;
&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/div&gt;
&lt;div&gt;
Yes, I know it should be a .vit file, and it will be in LabVIEW 2013...but for now, you have to save your own copy somewhere. Anyway, this VI is full of commentary describing how you go about adding the necessary scripting code for your plugin. The template already includes the bookend code necessary to set up an Undo transaction for whatever operation your plugin performs.&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;b&gt;&lt;u&gt;File Locations&lt;/u&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div&gt;
&lt;div&gt;
You can place your plugin VI in one of the following two locations to make it available as a QDKS:&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;i&gt;[LabVIEW 20xx]\resource\dialog\QuickDrop\plugins&lt;/i&gt;&lt;/div&gt;
&lt;div&gt;
&lt;i&gt;[LabVIEW Data]\Quick Drop Plugins&lt;/i&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/div&gt;
&lt;div&gt;
If you put your plugin in the &lt;i&gt;LabVIEW 20xx&lt;/i&gt; folder, it will only be available in that version of LabVIEW. If you put it in the &lt;i&gt;LabVIEW Data&lt;/i&gt; folder, it will be available in any LabVIEW version (2010 and later), as long as you saved it in the earliest LabVIEW version you want to support.&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;b&gt;&lt;u&gt;Getting Started&lt;/u&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div&gt;
Not sure how to get started actually writing the scripting code for your plugin? The shipping plugins are all fully documented, so you can browse their code for reference:&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;i&gt;[LabVIEW 2012]\resource\dialog\QuickDrop\plugins&lt;/i&gt;&lt;/div&gt;
&lt;div&gt;
&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/div&gt;
&lt;div&gt;
The &lt;i&gt;Wire All Terminals&lt;/i&gt;&amp;nbsp;and &lt;i&gt;VI Server Rename&lt;/i&gt;&amp;nbsp;plugins are password-protected because they use private scripting functionality, but the other plugins are available for your perusal.&amp;nbsp;If you need any help writing your plugin, the &lt;a href="https://decibel.ni.com/content/groups/quick-drop-enthusiasts"&gt;Quick Drop Enthusiasts&lt;/a&gt; group on the NI Community has lots of experience writing shortcuts, and there are dozens of community shortcuts that you can use for reference as well.&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;b&gt;&lt;u&gt;Sharing your Shortcut&lt;/u&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div&gt;
Once your plugin is ready for prime time, share it with the world! Post it to the Quick Drop Enthusiasts community, and include a link to it on the &lt;a href="https://decibel.ni.com/content/docs/DOC-9573"&gt;List of Community Quick Drop Keyboard Shortcuts&lt;/a&gt; page.&lt;/div&gt;
</content><link rel="replies" type="application/atom+xml" href="http://labviewartisan.blogspot.com/feeds/6226355985979100639/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://labviewartisan.blogspot.com/2012/11/getting-started-with-custom-quick-drop.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/6226355985979100639?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/6226355985979100639?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/labviewartisan/~3/BXmGtlwoj4Y/getting-started-with-custom-quick-drop.html" title="Getting Started with Custom Quick Drop Keyboard Shortcuts" /><author><name>Darren Nattinger</name><uri>http://www.blogger.com/profile/02086721848867401467</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://2.bp.blogspot.com/_GmlqCX6Omow/Sa2cs4MLtbI/AAAAAAAAABk/4e4f-vRbwxM/S220/burger.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://labviewartisan.blogspot.com/2012/11/getting-started-with-custom-quick-drop.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkEMQ346fCp7ImA9WhJVEkU.&quot;"><id>tag:blogger.com,1999:blog-3607298864599224213.post-2351634328709288899</id><published>2012-08-24T14:55:00.000-05:00</published><updated>2012-08-29T18:58:02.014-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-08-29T18:58:02.014-05:00</app:edited><title>What's the Deal with Coercion Dots?</title><content type="html">Let's talk about those &lt;a href="http://zone.ni.com/reference/en-XX/help/371361J-01/lvconcepts/using_wires/#Coercion_Dots"&gt;little red dots&lt;/a&gt; on your diagram:&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://3.bp.blogspot.com/-7KW89eVfkg4/UDepO0IMx1I/AAAAAAAADaQ/uXU5Y7suECI/s1600/dot1.png" imageanchor="1" style="clear: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/-7KW89eVfkg4/UDepO0IMx1I/AAAAAAAADaQ/uXU5Y7suECI/s1600/dot1.png" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;u&gt;&lt;span style="font-size: large;"&gt;Background&lt;/span&gt;&lt;/u&gt;&lt;br /&gt;
They used to be gray, but we changed the default color of &lt;b&gt;coercion dots&lt;/b&gt; to &lt;span style="background-color: white; color: red;"&gt;red&lt;/span&gt; in LabVIEW 8.2, presumably to make them easier to see (and so their appearance wouldn't be confused with the &lt;a href="http://zone.ni.com/reference/en-XX/help/371361J-01/lvdialog/show_buffer_alloc/"&gt;Show Buffer Allocations&lt;/a&gt; feature).&amp;nbsp; Note that you can change the color of coercion dots in &lt;i&gt;Tools &amp;gt; Options &amp;gt; Environment &amp;gt; Colors &amp;gt; Coercion Dots&lt;/i&gt;, but most people keep them red.&lt;br /&gt;
&lt;br /&gt;
So what is a coercion dot, anyway?&amp;nbsp; It is LabVIEW's way of telling you that you have mismatched data types wired together, but they're close enough that your VI will still compile.&amp;nbsp; Contrast the image above with this one:&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: left;"&gt;
&lt;a href="http://3.bp.blogspot.com/-1_EDKqbSyFY/UDesAdpqUgI/AAAAAAAADag/n7e2OYDBBro/s1600/dot2.png" imageanchor="1" style="clear: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="171" src="http://3.bp.blogspot.com/-1_EDKqbSyFY/UDesAdpqUgI/AAAAAAAADag/n7e2OYDBBro/s320/dot2.png" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
In the first image, you have two (different) numeric types wired to the &lt;b&gt;Add&lt;/b&gt; function. Since both types are numeric, the &lt;b&gt;Add&lt;/b&gt; will work, after it &lt;b&gt;coerces&lt;/b&gt; one of the inputs (the I32) to match the other (the DBL).&amp;nbsp; In the second image, you're trying to add a numeric and a path.&amp;nbsp; Those types are incompatible...no coercion can be performed, so you get a broken wire.&lt;br /&gt;
&lt;br /&gt;
The purpose of the coercion dot is to inform you, the programmer, when LabVIEW is performing a conversion behind the scenes.&amp;nbsp; You could explicitly perform this conversion yourself, thereby removing the coercion dot entirely:&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: left;"&gt;
&lt;a href="http://2.bp.blogspot.com/-RattYK8NQ14/UDeuN3oLU0I/AAAAAAAADaw/TYLk7H5eDrU/s1600/dot3.png" imageanchor="1" style="clear: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="81" src="http://2.bp.blogspot.com/-RattYK8NQ14/UDeuN3oLU0I/AAAAAAAADaw/TYLk7H5eDrU/s400/dot3.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;a href="http://1.bp.blogspot.com/-7DQ_81GvJGc/UDetG2-cG7I/AAAAAAAADao/EGqL_i2vpOk/s1600/dot3.png" imageanchor="1" style="clear: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;u&gt;&lt;span style="font-size: large;"&gt;Scalar Numeric Coercions&lt;/span&gt;&lt;/u&gt;&lt;br /&gt;
So how does LabVIEW decide which type will be coerced?&amp;nbsp; In the case of DBL vs. I32, it's rather straightforward...the I32 will be coerced, because coercing the DBL would lose fractional data.&amp;nbsp; Depending on which value is coerced, 1.7 (DBL) + 3 (I32) would either equal 4.7 (DBL) or 5 (I32)...I think we all agree that 4.7 is the better answer. :) &lt;br /&gt;
&lt;br /&gt;
So for coercions like I32 -&amp;gt; DBL, you don't really need to worry about the coercion dot.&amp;nbsp; You could add the &lt;b&gt;To Double Precision Float&lt;/b&gt; conversion function (these are often called conversion "bullets") to your diagram like the previous screenshot, but it's just going to do exactly what the coercion dot is already doing.&lt;br /&gt;
But what about trickier numeric coercions?&amp;nbsp; Check out this diagram:&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: left;"&gt;
&lt;a href="http://3.bp.blogspot.com/-GaueGugEqXM/UDewgSdzQ0I/AAAAAAAADa4/XJmQ9MWQJ_w/s1600/dot4.png" imageanchor="1" style="clear: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="156" src="http://3.bp.blogspot.com/-GaueGugEqXM/UDewgSdzQ0I/AAAAAAAADa4/XJmQ9MWQJ_w/s320/dot4.png" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
I have indicated the data types of the constants in their labels.&amp;nbsp; In this diagram, the I16 has been coerced to a U16 value.&amp;nbsp; But since the result of this operation is a negative number, the U16 rolls under, and this diagram generates a value of '65531', even though you probably wanted it to generate '-5'.&amp;nbsp; So this would be a case where an explicit conversion on your part (specifically, of the U16 to an I16) would have been preferable.&amp;nbsp; When dealing with integer data types in particular, you'll always want to keep an eye out for places where roll unders or roll overs might occur.&lt;br /&gt;
&lt;br /&gt;
One nifty feature to mention here is the &lt;b&gt;Adapt to Source&lt;/b&gt; right-click menu option on numeric indicator terminals:&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: left;"&gt;
&lt;a href="http://4.bp.blogspot.com/-AOdIDlLvNMs/UDeyuOHvBPI/AAAAAAAADbA/p0bonEEFM4A/s1600/dot5.png" imageanchor="1" style="clear: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="400" src="http://4.bp.blogspot.com/-AOdIDlLvNMs/UDeyuOHvBPI/AAAAAAAADbA/p0bonEEFM4A/s400/dot5.png" width="346" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
If you do convert the U16 input to an I16, and you have &lt;b&gt;Adapt to Source&lt;/b&gt; enabled on the indicator, then its data type will automatically change to an I16 once the types match.&lt;br /&gt;
&lt;br /&gt;
&lt;u&gt;&lt;span style="font-size: large;"&gt;Array Coercions&lt;/span&gt;&lt;/u&gt;&lt;br /&gt;
A lot of the paranoia surrounding coercion dots is the concern that they "affect memory usage".&amp;nbsp; In practice, this often turns out not to be true.&amp;nbsp; Check out this diagram:&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: left;"&gt;
&lt;a href="http://2.bp.blogspot.com/--5W0hUH64sw/UDe3jByoqeI/AAAAAAAADbQ/np20JHXToBs/s1600/dot6.png" imageanchor="1" style="clear: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="196" src="http://2.bp.blogspot.com/--5W0hUH64sw/UDe3jByoqeI/AAAAAAAADbQ/np20JHXToBs/s320/dot6.png" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
Now, the "coercion dots are bad!" crowd would tell you that, in order to avoid additional memory usage because of the different data types, you need to do something about that coercion dot, particularly if this loop is running a whole bunch of times (since the arrays might be very large).&amp;nbsp; Well, it turns out that, no matter how I try to "optimize" this diagram to remove the coercion dot (a few things I tried included using a conversion bullet on the iteration count, a conversion bullet on the I32 array, and maintaining my own DBL iteration count in a shift register), all other approaches used more memory during execution than the simple coercion dot approach illustrated here.&amp;nbsp; So before you go trying to get rid of every coercion dot on your diagrams because you're afraid they affect performance and memory, I'd recommend actually using the &lt;a href="http://zone.ni.com/reference/en-XX/help/371361J-01/lvdialog/profile/"&gt;Profile Performance and Memory Window&lt;/a&gt; to see if any of the alternative approaches really are better.&lt;br /&gt;
&lt;br /&gt;
&lt;u&gt;&lt;span style="font-size: large;"&gt;Typedef Coercions&lt;/span&gt;&lt;/u&gt;&lt;br /&gt;
Another thing to look out for is coercion on typedef terminals. In these cases, the data types contained in the wire might be the same, but if one end of the wire is typedefed, and the other is not, you'll get a coercion dot.&amp;nbsp; In general, you're going to want to make sure this does not happen, and the easiest way to do so is to ensure that the source and the sink of the wire are both linked to the same typedef.&amp;nbsp; If you do not do this, and you see a coercion dot on a typedef terminal, then you may have problems when you change the data type of the typedef...the typedefed terminal will change, but the other terminal will not.&amp;nbsp; In the case of types like clusters and enums, you'll get a broken wire when the typedef changes. If you have many non-typedefs wired to typedefs throughout your VIs, these broken wires can become tedious to correct.&amp;nbsp; The easiest way to avoid these kinds of problems is to &lt;i&gt;make sure the terminals wired together are linked to the same typedef&lt;/i&gt;.&amp;nbsp; For more information about typedefs, check out &lt;a href="http://www.eyesonvis.com/blog/2009/03/there-are-no-strict-type-definition.html"&gt;this Eyes on VIs post&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;u&gt;&lt;span style="font-size: large;"&gt;Variant Coercion&lt;/span&gt;&lt;/u&gt;&lt;br /&gt;
Another time when you'll frequently see coercion dots is when you're dealing with variant data types.&amp;nbsp; Since a variant can contain any LabVIEW data type, you'll often see APIs where you will wire a specific type into a variant terminal, and you'll see a coercion dot.&amp;nbsp; Again, this is perfectly fine, and it's usually a waste of diagram space to use the &lt;b&gt;To Variant&lt;/b&gt; function to eliminate the coercion dot.&amp;nbsp; The only time I can recall using &lt;b&gt;To Variant&lt;/b&gt; was when I had a case structure generating a variety of types in different cases, all of which went to the same (variant) output tunnel.&amp;nbsp; In this case, I had to use &lt;b&gt;To Variant&lt;/b&gt; to avoid assigning a specific, non-variant type to the tunnel:&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: left;"&gt;
&lt;a href="http://4.bp.blogspot.com/-vHu5U24apN8/UDfVQpx0kTI/AAAAAAAADbw/RjSTFZKVcew/s1600/dot9.png" imageanchor="1" style="clear: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="178" src="http://4.bp.blogspot.com/-vHu5U24apN8/UDfVQpx0kTI/AAAAAAAADbw/RjSTFZKVcew/s400/dot9.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;span style="font-size: large;"&gt;&lt;u&gt;Identifying Coerced Types&lt;/u&gt;&lt;/span&gt;&lt;br /&gt;
If you want some more details about the specific types that are 
causing a coercion dot, there's a great new feature in LabVIEW 2012 that 
will display (in the Context Help window) the wired type, and the 
expected type, of a coerced terminal:&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: left;"&gt;
&lt;a href="http://3.bp.blogspot.com/-m78kjtXhR14/UDfSUN_7a8I/AAAAAAAADbg/EcETZpIOcdQ/s1600/dot8.png" style="clear: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="372" src="http://3.bp.blogspot.com/-m78kjtXhR14/UDfSUN_7a8I/AAAAAAAADbg/EcETZpIOcdQ/s400/dot8.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;u&gt;&lt;span style="font-size: large;"&gt;Summary&lt;/span&gt;&lt;/u&gt;&lt;br /&gt;
There are some other interesting scenarios involving coercion dots, like &lt;a href="http://zone.ni.com/reference/en-XX/help/371361J-01/lvconcepts/dynamic_data_type/"&gt;Dynamic Data&lt;/a&gt;, &lt;a href="http://zone.ni.com/reference/en-XX/help/371361J-01/lvconcepts/using_classes/"&gt;LabVIEW class wires&lt;/a&gt;, strict VI Server reference types, and more.&amp;nbsp; But for now, I'm hoping this blog post gives a good introduction to some more general issues regarding coercion dots.&amp;nbsp; I have described several scenarios that you need to watch out for...but these tend to be corner cases.&amp;nbsp; Usually, LabVIEW is doing the right thing behind the scenes when it has to coerce data types, and you won't need to worry much about memory usage, performance, etc., as long as you pay attention to the types you're using in the first place.</content><link rel="replies" type="application/atom+xml" href="http://labviewartisan.blogspot.com/feeds/2351634328709288899/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://labviewartisan.blogspot.com/2012/08/whats-deal-with-coercion-dots.html#comment-form" title="6 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/2351634328709288899?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/2351634328709288899?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/labviewartisan/~3/KLPVpN3sK5E/whats-deal-with-coercion-dots.html" title="What's the Deal with Coercion Dots?" /><author><name>Darren Nattinger</name><uri>http://www.blogger.com/profile/02086721848867401467</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://2.bp.blogspot.com/_GmlqCX6Omow/Sa2cs4MLtbI/AAAAAAAAABk/4e4f-vRbwxM/S220/burger.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/-7KW89eVfkg4/UDepO0IMx1I/AAAAAAAADaQ/uXU5Y7suECI/s72-c/dot1.png" height="72" width="72" /><thr:total>6</thr:total><feedburner:origLink>http://labviewartisan.blogspot.com/2012/08/whats-deal-with-coercion-dots.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUEMRHYyeyp7ImA9WhJWGE8.&quot;"><id>tag:blogger.com,1999:blog-3607298864599224213.post-3282935315804773293</id><published>2012-05-11T14:24:00.002-05:00</published><updated>2012-08-24T10:54:45.893-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-08-24T10:54:45.893-05:00</app:edited><title>Spell Checking in LabVIEW</title><content type="html">Did you know that LabVIEW has a spell checker?&amp;nbsp; Well, sort of.&amp;nbsp; It's the 'Spell Check' test of the &lt;a href="http://www.ni.com/white-paper/3588/en"&gt;VI Analyzer Toolkit&lt;/a&gt;.&amp;nbsp; The VI Analyzer Toolkit is a LabVIEW toolkit that you can either purchase separately, or is included as part of the &lt;a href="http://www.ni.com/suite/"&gt;NI Developer Suite&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
The Spell Check test will check the spelling of words it finds in your VI against three different dictionaries:&amp;nbsp; (1) standard English words, (2) engineering and scientific technical terms, and (3) custom words added by the user.&amp;nbsp; The following configuration options can be used to customize which parts of your VI are checked, and what kind of words are checked (the screenshot shows the default selected options for the test):&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://1.bp.blogspot.com/-UWFzUrzuL_c/T61keKfmLEI/AAAAAAAAAKo/t6tbOiH4Sow/s1600/vianspellcheckoptions.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/-UWFzUrzuL_c/T61keKfmLEI/AAAAAAAAAKo/t6tbOiH4Sow/s1600/vianspellcheckoptions.png" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
But enough of the sales pitch (we've got &lt;a href="https://decibel.ni.com/content/people/ElijahK"&gt;other people&lt;/a&gt; around here for that)...here are some of the reasons our current spell checking solution is less than ideal:&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;&lt;b&gt;Lack of integration&lt;/b&gt; - If you want to spell check your code, currently you have to run a separate tool (VI Analyzer) in order to see the results of the misspellings, as opposed to the standard way of just getting a red wavy underline of misspelled words as you type.&amp;nbsp; Also, to add a word to the custom dictionary, you have to do that through the VI Analyzer as well, as opposed to simply being able to right-click a word and add it to the custom dictionary.&amp;nbsp; Although I suppose it wouldn't be too tough to write a &lt;a href="http://labviewartisan.blogspot.com/2010/08/improvements-to-quick-drop-keyboard.html"&gt;Quick Drop Keyboard Shortcut&lt;/a&gt; or a &lt;a href="https://decibel.ni.com/content/groups/jki-right-click-framework-for-labview"&gt;JKIRCF&lt;/a&gt; plugin to enable a UI gesture to do this as you sift through your VI Analyzer results.&lt;/li&gt;
&lt;li&gt;&lt;b&gt;English only&lt;/b&gt; - The VI Analyzer Toolkit is not localized, so we only provide English dictionaries.&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Maintenance difficulty&lt;/b&gt; - Ok, this one is kind of selfish, but it's up to me, as the VI Analyzer Toolkit owner, to keep track of LabVIEW features that add different text fields to a VI so I can add the scripting code to the Spell Check test to get the text out of those fields.&amp;nbsp; In fact, I discovered recently a feature that was added two releases ago that I have yet to add Spell Check support for... :\&lt;/li&gt;
&lt;/ul&gt;
Despite these deficiencies, I've spoken to multiple developers who use the Spell Check test regularly because it's the best tool they have for identifying and fixing spelling mistakes in their VIs.&amp;nbsp; So with this blog post, I have a few questions to ask:&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;Do you use the VI Analyzer Spell Check test?&amp;nbsp; If so, how has the experience been?&lt;/li&gt;
&lt;li&gt;Do you think it's a feature that would be worth significant investment for LabVIEW R&amp;amp;D to integrate better into the LabVIEW editor?&lt;/li&gt;
&lt;li&gt;Are there any words you've found flagged by the Spell Check test that you think should be added to our standard dictionary or our technical dictionary?&lt;/li&gt;
&lt;/ol&gt;
Even if you've never used the Spell Check test, or even thought about spell checking in LabVIEW before, your feedback is welcome!</content><link rel="replies" type="application/atom+xml" href="http://labviewartisan.blogspot.com/feeds/3282935315804773293/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://labviewartisan.blogspot.com/2012/05/spell-checking-in-labview.html#comment-form" title="7 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/3282935315804773293?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/3282935315804773293?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/labviewartisan/~3/0_iTQupGQD4/spell-checking-in-labview.html" title="Spell Checking in LabVIEW" /><author><name>Darren Nattinger</name><uri>http://www.blogger.com/profile/02086721848867401467</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://2.bp.blogspot.com/_GmlqCX6Omow/Sa2cs4MLtbI/AAAAAAAAABk/4e4f-vRbwxM/S220/burger.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/-UWFzUrzuL_c/T61keKfmLEI/AAAAAAAAAKo/t6tbOiH4Sow/s72-c/vianspellcheckoptions.png" height="72" width="72" /><thr:total>7</thr:total><feedburner:origLink>http://labviewartisan.blogspot.com/2012/05/spell-checking-in-labview.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEAMSHk_fCp7ImA9WhRbGU0.&quot;"><id>tag:blogger.com,1999:blog-3607298864599224213.post-2151165683245629003</id><published>2012-02-09T15:10:00.003-06:00</published><updated>2012-02-10T13:39:49.744-06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-02-10T13:39:49.744-06:00</app:edited><title>Captions: More than You Ever Wanted to Know</title><content type="html">Every once in a while, the subject of control/indicator &lt;a href="http://zone.ni.com/reference/en-XX/help/371361H-01/lvhowto/creating_captions/"&gt;captions&lt;/a&gt; comes up around here, and every time, confusion arises.&amp;nbsp; So here we go...everything I know about captions.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;u&gt;The Basics&lt;/u&gt;&lt;/b&gt;&lt;br /&gt;
Enabling a caption on a control or indicator is straightforward enough:&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-XyvJN-QxZUo/TzQhwxxnP5I/AAAAAAAAAIM/IpmKlRffPGI/s1600/caption1.png" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="129" src="http://1.bp.blogspot.com/-XyvJN-QxZUo/TzQhwxxnP5I/AAAAAAAAAIM/IpmKlRffPGI/s320/caption1.png" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div style="text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you select this option, your control doesn't appear to change if you leave the caption as its default value: &lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-ueShxZaP8tY/TzQiLMNDupI/AAAAAAAAAIU/od3B3mB3-4c/s1600/caption2.png" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/-ueShxZaP8tY/TzQiLMNDupI/AAAAAAAAAIU/od3B3mB3-4c/s1600/caption2.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
But trust me, it has.&amp;nbsp; We have hidden the label of the control.&amp;nbsp; You are now viewing its caption (in the same location as the label).&amp;nbsp; If you give the caption a different value than the label, you will see both in the Context Help window: &lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-SG8KjvmPWU4/TzQinNSpU9I/AAAAAAAAAIc/MLfbZ6KrFp8/s1600/caption3.png" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="116" src="http://2.bp.blogspot.com/-SG8KjvmPWU4/TzQinNSpU9I/AAAAAAAAAIc/MLfbZ6KrFp8/s320/caption3.png" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Any control with its caption showing (assuming the caption is different than the label) will display the caption at the top, and the label in brackets underneath.&amp;nbsp; When hovering over the terminal of a subVI, you'll see the caption of the control/indicator in the tip strip instead of the label.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;u&gt;Use Cases&lt;/u&gt;&lt;/b&gt;&lt;br /&gt;
Now why would you ever want to show the caption in the first place?&amp;nbsp; I know of two possible reasons:&lt;br /&gt;
&lt;ol&gt;&lt;li&gt;&lt;b&gt;Long caption, short label&lt;/b&gt; - If you want your control/indicator to  have a long, meaningful description on the panel, but you don't want  that long string getting in the way on the diagram, you could show its  caption. Personally, I eschew this approach...instead of using a  caption, I would opt for a free label on the panel positioned  appropriately near the control with appropriately-justified text.&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Localization&lt;/b&gt; - This is the primary reason we use captions in  LabVIEW R&amp;amp;D.&amp;nbsp; When we localize LabVIEW into other languages, we  don't want to change the labels of controls and indicators...that could  potentially break code that programmatically refers to controls and  indicators by name.&amp;nbsp; So instead, we show localized captions (and hide  the labels) for the controls and indicators in all user-facing VIs that  ship with LabVIEW.&lt;/li&gt;
&lt;/ol&gt;&lt;br /&gt;
&lt;u&gt;&lt;b&gt;Deleting a Caption&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;
In older LabVIEW versions, there was no easy way to delete the caption of a control/indicator.&amp;nbsp; Thankfully, in LabVIEW 8.2 and later, it is very easy.&amp;nbsp; All you need to do is select the caption with your selection tool and press the 'Delete' key on your keyboard.&amp;nbsp; Note that this is not the same as highlighting the text in the caption and pressing the 'Delete' key...if you do that, the control will still have a caption, but it will be an empty string.&lt;u&gt;&lt;b&gt; &lt;/b&gt;&lt;/u&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;u&gt;&lt;b&gt;Working with Captions Programmatically&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;
This is where it gets a little tricky.&amp;nbsp; By default, controls and indicators do not have captions.&amp;nbsp; Let's say you try to read the Caption.Text property of a control like this:&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/--bzK8oNk1J8/TzQv4QVz-cI/AAAAAAAAAI0/4Q3HmN10L2o/s1600/captions5.png" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/--bzK8oNk1J8/TzQv4QVz-cI/AAAAAAAAAI0/4Q3HmN10L2o/s1600/captions5.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Believe it or not, one of &lt;i&gt;three &lt;/i&gt;different things can happen with this code:&lt;br /&gt;
&lt;ol&gt;&lt;li&gt;If the control already has a caption, you'll get the caption text.&lt;/li&gt;
&lt;li&gt;If the control doesn't already have a caption, and the VI that owns the control is in edit mode, then a caption will be created for you, with the same string as the label, and you'll get that text.&lt;/li&gt;
&lt;li&gt;If the control doesn't already have a caption, and the VI that owns the control is in run mode, then you'll get error 1320, which tells you that you can't read properties of control parts that haven't been created yet when the VI is in run mode.&lt;/li&gt;
&lt;/ol&gt;Because of all this craziness, there is another helpful VI Server property that you can use:&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/-FLpbjWHIicQ/TzQxC5vaQiI/AAAAAAAAAI8/dfouQCQqYLE/s1600/captions6.png" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/-FLpbjWHIicQ/TzQxC5vaQiI/AAAAAAAAAI8/dfouQCQqYLE/s1600/captions6.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The "HasCaption" property will tell you if a control even has a caption to begin with, before you start trying to do other caption-related stuff.&lt;br /&gt;
&lt;br /&gt;
One other nifty tip for dealing with captions programmatically...if you want to delete a caption programmatically, this is the way to do it: &lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/-4NZtuuBP_a0/TzQxguHsm2I/AAAAAAAAAJE/HrdLc7OcEuA/s1600/caption7.png" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/-4NZtuuBP_a0/TzQxguHsm2I/AAAAAAAAAJE/HrdLc7OcEuA/s1600/caption7.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;u&gt;&lt;b&gt;Summary&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;
So there you have it...way more information than you ever wanted to know about a LabVIEW feature that you probably weren't even using in the first place. :P&amp;nbsp; But in the event that someone ever does need this information, here's hoping this blog post eventually bubbles up to the top of a "LabVIEW captions" google search.&amp;nbsp; ;)&lt;u&gt;&lt;b&gt; &lt;/b&gt;&lt;/u&gt;</content><link rel="replies" type="application/atom+xml" href="http://labviewartisan.blogspot.com/feeds/2151165683245629003/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://labviewartisan.blogspot.com/2012/02/captions-more-than-you-ever-wanted-to.html#comment-form" title="9 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/2151165683245629003?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/2151165683245629003?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/labviewartisan/~3/MUwpjA-LH-M/captions-more-than-you-ever-wanted-to.html" title="Captions: More than You Ever Wanted to Know" /><author><name>Darren Nattinger</name><uri>http://www.blogger.com/profile/02086721848867401467</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://2.bp.blogspot.com/_GmlqCX6Omow/Sa2cs4MLtbI/AAAAAAAAABk/4e4f-vRbwxM/S220/burger.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/-XyvJN-QxZUo/TzQhwxxnP5I/AAAAAAAAAIM/IpmKlRffPGI/s72-c/caption1.png" height="72" width="72" /><thr:total>9</thr:total><feedburner:origLink>http://labviewartisan.blogspot.com/2012/02/captions-more-than-you-ever-wanted-to.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEEMRXo9fSp7ImA9WhRRFUU.&quot;"><id>tag:blogger.com,1999:blog-3607298864599224213.post-8908987806852087160</id><published>2011-11-29T11:11:00.000-06:00</published><updated>2011-11-29T11:11:24.465-06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-11-29T11:11:24.465-06:00</app:edited><title>LabVIEW Coding Challenge - December 2011</title><content type="html">It's time for another LabVIEW Coding Challenge! Man, I wish I could be a contestant in these. :) Anyway, this year, there are two separate challenges:&lt;br /&gt;
&lt;br /&gt;
&lt;u&gt;Problem Solving&lt;/u&gt;&lt;br /&gt;
You will submit a VI that solves a specific challenge as described in a given problem statement. The submissions will be judged based on whether the answer was correct as well as execution time of the VI. The winning entry will solve the problem correctly with the shortest execution time.&lt;br /&gt;
&lt;br /&gt;
&lt;u&gt;User Interface&lt;/u&gt;&lt;br /&gt;
You will be presented with a block diagram and a Front Panel with a few basic controls on it. The challenge will be to enhance the Front Panel to make it both functional and descriptive as a User Interface. The goal is to be creative, but also keep in mind usability in your design. The winning entry will be chosen based on the number of &lt;b&gt;likes&lt;/b&gt; (not &lt;i&gt;downloads&lt;/i&gt;) it receives.&lt;br /&gt;
&lt;br /&gt;
&lt;u&gt;Dates and Deadlines&lt;/u&gt;&lt;br /&gt;
Dec 1: Challenge descriptions become available&lt;br /&gt;
Dec 19: Submissions accepted and voting for User Interface Challenge begins&lt;br /&gt;
January 11: Deadline for submissions&lt;br /&gt;
January 13: Voting ends and winners announced&lt;br /&gt;
&lt;br /&gt;
Go to the &lt;a href="http://bit.ly/LVCC2011"&gt;LabVIEW Coding Challenge Community Group&lt;/a&gt; to learn more.&amp;nbsp; Good luck everybody!</content><link rel="replies" type="application/atom+xml" href="http://labviewartisan.blogspot.com/feeds/8908987806852087160/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://labviewartisan.blogspot.com/2011/11/labview-coding-challenge-december-2011.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/8908987806852087160?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/8908987806852087160?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/labviewartisan/~3/DvcGkD4q7QE/labview-coding-challenge-december-2011.html" title="LabVIEW Coding Challenge - December 2011" /><author><name>Darren Nattinger</name><uri>http://www.blogger.com/profile/02086721848867401467</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://2.bp.blogspot.com/_GmlqCX6Omow/Sa2cs4MLtbI/AAAAAAAAABk/4e4f-vRbwxM/S220/burger.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://labviewartisan.blogspot.com/2011/11/labview-coding-challenge-december-2011.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0IHRHk4fyp7ImA9WhdRE0w.&quot;"><id>tag:blogger.com,1999:blog-3607298864599224213.post-5975056733942998818</id><published>2011-08-02T15:03:00.001-05:00</published><updated>2011-08-02T15:05:35.737-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-08-02T15:05:35.737-05:00</app:edited><title>How to Customize Edit &gt; Create SubVI in LabVIEW 2011</title><content type="html">&lt;a href="http://www.ni.com/labview/"&gt;LabVIEW 2011&lt;/a&gt; was announced at the NI Week keynote today, and there are &lt;a href="http://www.ni.com/labview/whatsnew/features/"&gt;plenty&lt;/a&gt; &lt;a href="http://vishots.com/whats-new-in-labview-2011/"&gt;of&lt;/a&gt; &lt;a href="http://lavag.org/topic/14644-whats-new-in-labview-2011-accelerate-your-productivity/"&gt;places&lt;/a&gt; you can learn about all the great new features. In this blog post, I'll describe how to customize one of the best new features...the improvements to the &lt;i&gt;Edit &amp;gt; Create SubVI&lt;/i&gt; gesture in the LabVIEW IDE.&lt;br /&gt;
&lt;br /&gt;
You may recall that last year, Stephen and I solicited the LabVIEW Community to vote up (or 'kudo' up, I guess) the &lt;a href="http://forums.ni.com/t5/LabVIEW-Idea-Exchange/Create-a-proper-connector-pane-when-doing-Edit-gt-Create-subVI/idi-p/919959"&gt;Create a proper connector pane when doing Edit -&amp;gt; Create subVI&lt;/a&gt; idea posted by Yair on the Idea Exchange. You all responded in an impressive way, and we were able to add the feature in LabVIEW 2011.&amp;nbsp; Specifically, we now create a subVI with the proper connector pane, properly-named error terminals in the bottom corners, properly-named refnum/class terminals in the top corners, and an organized front panel.&lt;br /&gt;
&lt;br /&gt;
But that's not all!&amp;nbsp; Thanks to Stephen, the code that modifies the created subVI is all VI-based.&amp;nbsp; So if you want to customize the created subVI in some way with your own scripting VIs, there are two ways to do it. Here's how:&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Providing Additional Create SubVI Functionality&lt;/b&gt;&lt;br /&gt;
Do you like the way we create the subVI, but you want to perform additional actions on it?&amp;nbsp; If so, then follow these steps:&lt;br /&gt;
&lt;ol&gt;&lt;li&gt;Open this VI: &lt;i&gt;[LabVIEW]\resource\plugins\CreateSubVI\Additional Actions Template.vi&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;Save a copy of the VI here: &lt;i&gt;[LabVIEW]\resource\plugins\CreateSubVI\CreateSubVI_AdditionalActions.vi&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;Add scripting code to this copy of the VI to do whatever you want to the created subVI.&amp;nbsp; Some ideas I've had are:&lt;/li&gt;
&lt;ul&gt;&lt;li&gt;Perform a Diagram Cleanup on the created subVI's diagram&lt;/li&gt;
&lt;li&gt;Wrap the created subVI's diagram in an error case structure&lt;/li&gt;
&lt;li&gt;Programmatically launch the Icon Editor on the created subVI&lt;/li&gt;
&lt;/ul&gt;&lt;/ol&gt;&lt;b&gt;Completely Replacing Our Create SubVI Functionality&lt;/b&gt;&lt;br /&gt;
Would you rather define your own behavior for how the subVI is created?&amp;nbsp; If so, then follow these steps.&lt;br /&gt;
&lt;ol&gt;&lt;li&gt;Make a copy of&amp;nbsp; &lt;i&gt;[LabVIEW]\resource\plugins\lv_modifyNewSubVI.vi&lt;/i&gt; and name it &lt;i&gt;lv_modifyNewSubVI.bak&lt;/i&gt;.&lt;/li&gt;
&lt;li&gt;In the original &lt;i&gt;lv_modifyNewSubVI.vi&lt;/i&gt;, you can remove the code on its diagram, and write your own scripting code to modify the new subVI.&amp;nbsp; Here is a description of the inputs/outputs of the VI:&lt;/li&gt;
&lt;ul&gt;&lt;li&gt;&lt;b&gt;VI Refnum&lt;/b&gt; - A VI reference to the newly created subVI.&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Fail?&lt;/b&gt; - If true, LabVIEW assumes an error occurred during your scripting, does not commit any of your scripting changes, and instead creates the subVI in the same way it did in LabVIEW 2010 and previous...full conpane, weirdly-named controls, etc.&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Caller Connections in/out&lt;/b&gt; - This is the most complicated part.&amp;nbsp; The input Caller Connections array defines numeric indices for the controls/indicators on the (full) subVI conpane as it is originally created.&amp;nbsp; For example, if you create a subVI with one input and one output, then the array might have the values [0,1].&amp;nbsp; You can then programmatically inspect the conpane to see which items are connected to which indices...let's say for this example, the control is index 0 and the indicator is index 1.&amp;nbsp; For the output Caller Connections array, you must specify which indices on the new conpane those same objects are now wired to.&amp;nbsp; So for example, if you change to a 4x2x2x4 conpane, and you place the indicator at index 0 and the control at index 11 (those are the top corners of 4x2x2x4), you would output [11,0] as the output Caller Connections.&amp;nbsp; If you want to learn more about how this works, check out &lt;i&gt;[LabVIEW]\resource\plugins\CreateSubVI\Calculate New Conpane Array.vi&lt;/i&gt;, which is the VI that figures this out for the current shipping Create SubVI technique.&lt;/li&gt;
&lt;/ul&gt;&lt;li&gt;If you ever want to revert to the shipping functionality, restore the .bak copy of the VI. &lt;/li&gt;
&lt;/ol&gt;I should also point out that these VIs are not kept in memory after a Create SubVI operation...so it's very easy to debug (via breakpoints, etc.) any plugins you write, as you can easily modify your plugin code and test it by performing the &lt;i&gt;Edit &amp;gt; Create SubVI&amp;nbsp; &lt;/i&gt;gesture again. &lt;br /&gt;
&lt;br /&gt;
I would like to eventually post some plugins of both types to the NI Community.&amp;nbsp; In the meantime, please let me know if you've written some plugins to augment (or replace) the Create SubVI functionality...I'd love to see what y'all can come up with!</content><link rel="replies" type="application/atom+xml" href="http://labviewartisan.blogspot.com/feeds/5975056733942998818/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://labviewartisan.blogspot.com/2011/08/how-to-customize-edit-create-subvi-in.html#comment-form" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/5975056733942998818?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/5975056733942998818?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/labviewartisan/~3/Fk8vPup0xUU/how-to-customize-edit-create-subvi-in.html" title="How to Customize Edit &gt; Create SubVI in LabVIEW 2011" /><author><name>Darren Nattinger</name><uri>http://www.blogger.com/profile/02086721848867401467</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://2.bp.blogspot.com/_GmlqCX6Omow/Sa2cs4MLtbI/AAAAAAAAABk/4e4f-vRbwxM/S220/burger.gif" /></author><thr:total>2</thr:total><feedburner:origLink>http://labviewartisan.blogspot.com/2011/08/how-to-customize-edit-create-subvi-in.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Ak8GRXk5eyp7ImA9WhZTE00.&quot;"><id>tag:blogger.com,1999:blog-3607298864599224213.post-4809615859855735396</id><published>2011-03-16T15:53:00.000-05:00</published><updated>2011-03-16T15:53:44.723-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-03-16T15:53:44.723-05:00</app:edited><title>My Interview on VI Shots</title><content type="html">Last week, Michael posted his first interview with me on &lt;a href="http://www.vishots.com/"&gt;VI Shots&lt;/a&gt;. So far, I've been impressed with the content on this blog. Additionally, with the twitter account &lt;a href="http://twitter.com/#%21/vishots"&gt;@vishots&lt;/a&gt;, he retweets relevant LabVIEW-related topics posted by other twitter users.&lt;br /&gt;
&lt;br /&gt;
In our interview, we talk a bit about my background in LabVIEW, along with some of my tips for programming in LabVIEW at breakneck speed.&amp;nbsp; Check out our interview &lt;a href="http://vishots.com/002-labview-podcast-interview-with-darren-nattinger/"&gt;here&lt;/a&gt;.&amp;nbsp; And from what I understand, Michael has lots more great LabVIEW content in the works for future podcasts and articles.</content><link rel="replies" type="application/atom+xml" href="http://labviewartisan.blogspot.com/feeds/4809615859855735396/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://labviewartisan.blogspot.com/2011/03/my-interview-on-vi-shots.html#comment-form" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/4809615859855735396?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/4809615859855735396?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/labviewartisan/~3/N8N6zQZ_Q3k/my-interview-on-vi-shots.html" title="My Interview on VI Shots" /><author><name>Darren Nattinger</name><uri>http://www.blogger.com/profile/02086721848867401467</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://2.bp.blogspot.com/_GmlqCX6Omow/Sa2cs4MLtbI/AAAAAAAAABk/4e4f-vRbwxM/S220/burger.gif" /></author><thr:total>2</thr:total><feedburner:origLink>http://labviewartisan.blogspot.com/2011/03/my-interview-on-vi-shots.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUEGQXg8cSp7ImA9Wx9UGEU.&quot;"><id>tag:blogger.com,1999:blog-3607298864599224213.post-6486674120875567551</id><published>2011-02-16T14:20:00.000-06:00</published><updated>2011-02-16T14:20:20.679-06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-02-16T14:20:20.679-06:00</app:edited><title>Code Madness: The LabVIEW Example Program Challenge 2011</title><content type="html">(What a funny coincidence that my last two LabVIEW blog posts had a college basketball-themed title. And I'm not even into college basketball. Although I guess as good as the Longhorns are doing this season, I probably should be...)&lt;br /&gt;
&lt;br /&gt;
The latest LabVIEW coding contest on the NI Community has begun. Enter the&lt;a href="http://decibel.ni.com/content/groups/labview-example-challenge-march-madness-2011"&gt; LabVIEW Example Program Challenge 2011&lt;/a&gt; today for your chance to win an XBox, Amazon gift cards, and other prizes. In this contest, example submissions will initially compete with one another in a qualifying round (taking place now until March 6th), with downloads, "likes", and ratings all contributing to each submissions's ranking. The top 16 submissions will then move on to a tournament-style coding competition (taking place from March 8th to April 4th), with a bracket system being used to match up winners for the rounds of 16, 8, 4, and 2, until the winner is decided in the final round.&lt;br /&gt;
&lt;br /&gt;
To learn more about the Code Madness Program Challenge, visit &lt;a href="http://www.ni.com/codechallenge"&gt;http://www.ni.com/codechallenge&lt;/a&gt;. Begin submitting code today!</content><link rel="replies" type="application/atom+xml" href="http://labviewartisan.blogspot.com/feeds/6486674120875567551/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://labviewartisan.blogspot.com/2011/02/code-madness-labview-example-program.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/6486674120875567551?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/6486674120875567551?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/labviewartisan/~3/gcSUxpldBcE/code-madness-labview-example-program.html" title="Code Madness: The LabVIEW Example Program Challenge 2011" /><author><name>Darren Nattinger</name><uri>http://www.blogger.com/profile/02086721848867401467</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://2.bp.blogspot.com/_GmlqCX6Omow/Sa2cs4MLtbI/AAAAAAAAABk/4e4f-vRbwxM/S220/burger.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://labviewartisan.blogspot.com/2011/02/code-madness-labview-example-program.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0cASXY7fyp7ImA9Wx5VFEo.&quot;"><id>tag:blogger.com,1999:blog-3607298864599224213.post-8872234742169161000</id><published>2010-10-07T12:04:00.000-05:00</published><updated>2010-10-07T12:04:08.807-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-10-07T12:04:08.807-05:00</app:edited><title>The Sweet 16:  Idea Exchange Entries That Need More Support</title><content type="html">I've really been enjoying all the fantastic LabVIEW 2010 features that originated in the &lt;a href="http://forums.ni.com/t5/LabVIEW-Idea-Exchange/idb-p/labviewideas"&gt;Idea Exchange&lt;/a&gt;, and I'm also excited about the ones we have planned for LabVIEW 2011.&amp;nbsp; Last night, I went through the Idea Exchange and read through all the ideas that have more than 10, but less than 100 kudos.&amp;nbsp; I found 16 that I think would really benefit the LabVIEW environment and increase my productivity, but aren't currently on our roadmap of features because they haven't bubbled up high enough in the rankings.&amp;nbsp; So if you haven't already, please consider kudoing some or all of the following ideas, so we can push to get them included in LabVIEW 2012: &lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://forums.ni.com/t5/LabVIEW-Idea-Exchange/Make-Case-Selector/idi-p/956075"&gt;Make Case Selector&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://forums.ni.com/t5/LabVIEW-Idea-Exchange/Create-Space-in-One-Direction-Only/idi-p/1028081"&gt;Create Space in One Direction Only&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://forums.ni.com/t5/LabVIEW-Idea-Exchange/A-text-toolbar/idi-p/953534"&gt;A text toolbar&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://forums.ni.com/t5/LabVIEW-Idea-Exchange/Easier-way-to-insert-and-delete-element-in-array/idi-p/925650"&gt;Easier way to insert and delete element in array&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://forums.ni.com/t5/LabVIEW-Idea-Exchange/Shift-Enter-should-define-word-wrap-bounds-on-Free-Labels/idi-p/1089954"&gt;Shift-Enter should define word wrap bounds on Free Labels&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://forums.ni.com/t5/LabVIEW-Idea-Exchange/Shrink-Wrap-Structures/idi-p/1190275"&gt;Shrink-Wrap Structures&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://forums.ni.com/t5/LabVIEW-Idea-Exchange/Sort-arrow-in-column-headers-of-tables-and-listboxes/idi-p/929177"&gt;Sort arrow in column headers of tables and listboxes&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://forums.ni.com/t5/LabVIEW-Idea-Exchange/Make-mouse-wheel-scroll-the-string-control-indicator-and-add/idi-p/917795"&gt;Make mouse wheel scroll the string control/indicator&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://forums.ni.com/t5/LabVIEW-Idea-Exchange/Make-Type-Def-the-default-choice-in-the-control-editor/idi-p/918359"&gt;Make 'Type Def.' the default choice in the control editor&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://forums.ni.com/t5/LabVIEW-Idea-Exchange/Create-smaller-banner-for-libraries/idi-p/959345"&gt;Create smaller banner for libraries&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://forums.ni.com/t5/LabVIEW-Idea-Exchange/quot-Shift-Enter-quot-next-row-in-array-for-data-entry/idi-p/1005031"&gt;"Shift+Enter" next row in array for data entry&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://forums.ni.com/t5/LabVIEW-Idea-Exchange/Use-standard-Windows-keyboard-shortcuts-to-change-font-styles/idi-p/941973"&gt;Use standard Windows keyboard shortcuts to change font styles&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://forums.ni.com/t5/LabVIEW-Idea-Exchange/Key-Focus-Surrounding-Border-Let-s-Get-Rid-of-It/idi-p/1032514"&gt;Key Focus Surrounding Border - Let's Get Rid of It!&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://forums.ni.com/t5/LabVIEW-Idea-Exchange/String-case-structures-should-default-to-being-case-insensitive/idi-p/1114727"&gt;String case structures should default to being case insensitive&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://forums.ni.com/t5/LabVIEW-Idea-Exchange/Improve-Tree-Control-Performance/idi-p/1067286"&gt;Improve Tree Control Performance&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://forums.ni.com/t5/LabVIEW-Idea-Exchange/A-Better-quot-Find-Missing-Items-quot-and-quot-Find-Items-with/idi-p/972857"&gt;A Better "Find Missing Items" and "Find Items with No Callers" in Projects&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;By the way, I got the idea for this blog post from Aristos Queue, who has already posted &lt;a href="http://forums.ni.com/t5/LabVIEW/24-Great-Ideas-from-Idea-Exchange-for-you-to-Kudos/m-p/1154123"&gt;his own list of Idea Exchange entries&lt;/a&gt; that he'd like to see implemented in a future LabVIEW version.</content><link rel="replies" type="application/atom+xml" href="http://labviewartisan.blogspot.com/feeds/8872234742169161000/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://labviewartisan.blogspot.com/2010/10/sweet-16-idea-exchange-entries-that.html#comment-form" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/8872234742169161000?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/8872234742169161000?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/labviewartisan/~3/prQWeeCeo78/sweet-16-idea-exchange-entries-that.html" title="The Sweet 16:  Idea Exchange Entries That Need More Support" /><author><name>Darren Nattinger</name><uri>http://www.blogger.com/profile/02086721848867401467</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://2.bp.blogspot.com/_GmlqCX6Omow/Sa2cs4MLtbI/AAAAAAAAABk/4e4f-vRbwxM/S220/burger.gif" /></author><thr:total>1</thr:total><feedburner:origLink>http://labviewartisan.blogspot.com/2010/10/sweet-16-idea-exchange-entries-that.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkAESHg9fyp7ImA9Wx5WEks.&quot;"><id>tag:blogger.com,1999:blog-3607298864599224213.post-8203741952368569751</id><published>2010-09-23T14:05:00.000-05:00</published><updated>2010-09-23T14:05:09.667-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-09-23T14:05:09.667-05:00</app:edited><title>LabVIEW Development Tips and Tricks Webcast - Wednesday, October 6th at 11 AM</title><content type="html">It's that time of year again...time for me to give a LabVIEW Virtual User Group presentation.&amp;nbsp; Last year, I presented tips and tricks to help you write faster VIs.&amp;nbsp; This year, I'm presenting tips and tricks to help you write VIs faster:&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://sine.ni.com/nievents/app/overview/p/eventId/85205/site/nic/country/us/lang/en"&gt;&lt;span style="font-size: small;"&gt;NI LabVIEW Virtual User Group: Tips and Tricks to Speed LabVIEW Development&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-size: small;"&gt;Once again, my co-host will be &lt;a href="http://www.anengineeringmind.com/"&gt;Todd Sierer&lt;/a&gt;.&amp;nbsp;&amp;nbsp; And yes, this is the same presentation I gave at &lt;a href="http://www.ni.com/niweek"&gt;NI Week&lt;/a&gt; 2010.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: small;"&gt;And one more thing...I will be monitoring the twitter hash tag &lt;a href="http://twitter.com/#search?q=%23LabVIEWVUG"&gt;#LabVIEWVUG&lt;/a&gt; before and after the presentation.&amp;nbsp; So for those of you on twitter, that's one more way you can discuss the presentation and ask questions.&lt;/span&gt;</content><link rel="replies" type="application/atom+xml" href="http://labviewartisan.blogspot.com/feeds/8203741952368569751/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://labviewartisan.blogspot.com/2010/09/labview-development-tips-and-tricks.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/8203741952368569751?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/8203741952368569751?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/labviewartisan/~3/0Rc-vevY_kw/labview-development-tips-and-tricks.html" title="LabVIEW Development Tips and Tricks Webcast - Wednesday, October 6th at 11 AM" /><author><name>Darren Nattinger</name><uri>http://www.blogger.com/profile/02086721848867401467</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://2.bp.blogspot.com/_GmlqCX6Omow/Sa2cs4MLtbI/AAAAAAAAABk/4e4f-vRbwxM/S220/burger.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://labviewartisan.blogspot.com/2010/09/labview-development-tips-and-tricks.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C04GQHk7eCp7ImA9Wx5UEUo.&quot;"><id>tag:blogger.com,1999:blog-3607298864599224213.post-2056054849226959535</id><published>2010-09-21T16:32:00.004-05:00</published><updated>2010-10-15T14:45:21.700-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-10-15T14:45:21.700-05:00</app:edited><title>Hey Look, I'm Involved in an iPad Giveaway (Again)</title><content type="html">It seems like everybody is winning iPads these days, and I'm helping them do it.  First was the LabVIEW Coding Challenge at NI Week 2010.  I easily defended my title as the fastest LabVIEW programmer on the planet, and the guy I beat got an iPad.  (I wonder if they would have given me the iPad if I had taken a dive?  I'm guessing not...)&lt;br /&gt;
&lt;br /&gt;
And now, I'm helping judge the &lt;a href="http://www.ni.com/lvxcc10"&gt;LabVIEW Examples Contest&lt;/a&gt;.  To enter the contest, you must submit an example for one of the following categories:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Data Acquisition&lt;/li&gt;
&lt;li&gt;File I/O&lt;/li&gt;
&lt;li&gt;Math/Analysis&lt;/li&gt;
&lt;li&gt;User Interface Controls&lt;/li&gt;
&lt;li&gt;Games&lt;/li&gt;
&lt;li&gt;VI Server/Scripting &lt;/li&gt;
&lt;/ul&gt;You can submit your VIs from October 1st through October 25th.  Our judging committee will choose finalists in each category, the LabVIEW community will choose their favorites, then Jeff Kodosky himself will choose the overall winner.&lt;br /&gt;
&lt;br /&gt;
If you have any questions, please post them to the discussion forum on the contest community site &lt;a href="http://www.ni.com/lvxcc10"&gt;here&lt;/a&gt;.  Good luck!</content><link rel="replies" type="application/atom+xml" href="http://labviewartisan.blogspot.com/feeds/2056054849226959535/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://labviewartisan.blogspot.com/2010/09/hey-look-im-involved-in-ipad-giveaway.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/2056054849226959535?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/2056054849226959535?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/labviewartisan/~3/wK-_Q6lNx7g/hey-look-im-involved-in-ipad-giveaway.html" title="Hey Look, I'm Involved in an iPad Giveaway (Again)" /><author><name>Darren Nattinger</name><uri>http://www.blogger.com/profile/02086721848867401467</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://2.bp.blogspot.com/_GmlqCX6Omow/Sa2cs4MLtbI/AAAAAAAAABk/4e4f-vRbwxM/S220/burger.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://labviewartisan.blogspot.com/2010/09/hey-look-im-involved-in-ipad-giveaway.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DE8DRnw6cCp7ImA9Wx5SFUs.&quot;"><id>tag:blogger.com,1999:blog-3607298864599224213.post-107505090563839698</id><published>2010-08-11T17:16:00.007-05:00</published><updated>2010-08-11T17:47:57.218-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-08-11T17:47:57.218-05:00</app:edited><title>Improvements to Quick Drop Keyboard Shortcuts in LabVIEW 2010</title><content type="html">About a year ago,  I posted about how you can &lt;a href="http://labviewartisan.blogspot.com/2009/08/write-your-own-quick-drop-keyboard.html"&gt;write your own Quick Drop Keyboard Shortcuts&lt;/a&gt; in LabVIEW 2009.  Now we've got LabVIEW 2010, and along with it, some enhancements to the Quick Drop Keyboard Shortcut framework.  Those enhancements are as follows:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Backwards Compatibility&lt;/span&gt; - Any shortcuts you wrote in LabVIEW 2009 should port over to LabVIEW 2010 without any issues.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Improved Template&lt;/span&gt; - The QDKS template is in the same location (&lt;span style="font-style: italic;"&gt;resource\dialog\QuickDrop\QuickDrop Plugin Template.vi&lt;/span&gt;), but it has many enhancements over the 2009 version:&lt;/li&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;LOTS more documentation describing plugin functionality&lt;/li&gt;&lt;li&gt;Code that creates an Undo transaction for your shortcut, along with logic for determining if the transaction needs to be committed (i.e. you changed something) or discarded (you didn't change anything)&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Shared Shortcut Location&lt;/span&gt; - In addition to the LabVIEW-specific plugin folder where you can store your QDKS VIs (&lt;span style="font-style: italic;"&gt;resource\dialog\QuickDrop\plugins&lt;/span&gt;), there is also now a shared location.  If you put any QDKS plugin VIs in &lt;span style="font-style: italic;"&gt;[LabVIEW Data]\Quick Drop Plugins&lt;/span&gt;, they will be available in all versions of LabVIEW on your machine (2010 and later). &lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;More information from Quick Drop&lt;/span&gt; - The variant input to your QDKS VI will provide you with the following information:&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;A boolean indicating whether or not Quick Drop was launched from a VI panel or diagram&lt;/li&gt;&lt;li&gt;A string indicating the palette object name that was auto-completed in Quick Drop when you launched your shortcut&lt;/li&gt;&lt;li&gt;A path indicating the project item path that was auto-completed in Quick Drop when you launched your shortcut&lt;br /&gt;&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Configurable Shortcut Keys&lt;/span&gt; - QDKS VIs in LabVIEW 2009 were named for their shortcut keys...for example, the Remove and Rewire shortcut VI was named "r.vi", because its shortcut key was "r".  If you wanted to change the shortcut, you needed to rename the VI.  In LabVIEW 2010, things are a fair bit more elegant.  You can name the shortcut VI whatever you want (for example, I renamed "r.vi" to "Remove and Rewire.vi" in LabVIEW 2010).  In its VI description, you can provide a description of the shortcut, along with a default key.  This information will be displayed in the "Ctrl-Key Shortcuts" tab of the Quick Drop Shortcuts dialog:&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GmlqCX6Omow/TGMmETBHmGI/AAAAAAAAAG0/PJ_yVxk8kjQ/s1600/qds.png"&gt;&lt;img style="float: left; margin: 0pt 10px 10px 0pt; cursor: pointer; width: 368px; height: 400px;" src="http://2.bp.blogspot.com/_GmlqCX6Omow/TGMmETBHmGI/AAAAAAAAAG0/PJ_yVxk8kjQ/s400/qds.png" alt="" id="BLOGGER_PHOTO_ID_5504285024843176034" border="0" /&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I hope these improvements (along with the inclusion of scripting as a core feature in LabVIEW 2010), will encourage more users to write Quick Drop Keyboard Shortcuts to enhance their LabVIEW editing experience.  Don't forget that, in addition to the six shortcuts that ship with LabVIEW 2010, there is also a &lt;a href="http://decibel.ni.com/content/docs/DOC-9573"&gt;List of Community Quick Drop Keyboard Shortcuts&lt;/a&gt;.</content><link rel="replies" type="application/atom+xml" href="http://labviewartisan.blogspot.com/feeds/107505090563839698/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://labviewartisan.blogspot.com/2010/08/improvements-to-quick-drop-keyboard.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/107505090563839698?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/107505090563839698?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/labviewartisan/~3/D8p9fbgfxOg/improvements-to-quick-drop-keyboard.html" title="Improvements to Quick Drop Keyboard Shortcuts in LabVIEW 2010" /><author><name>Darren Nattinger</name><uri>http://www.blogger.com/profile/02086721848867401467</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://2.bp.blogspot.com/_GmlqCX6Omow/Sa2cs4MLtbI/AAAAAAAAABk/4e4f-vRbwxM/S220/burger.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_GmlqCX6Omow/TGMmETBHmGI/AAAAAAAAAG0/PJ_yVxk8kjQ/s72-c/qds.png" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://labviewartisan.blogspot.com/2010/08/improvements-to-quick-drop-keyboard.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0QHR3s-fyp7ImA9WxFaGU0.&quot;"><id>tag:blogger.com,1999:blog-3607298864599224213.post-2450879188464189553</id><published>2010-07-23T12:01:00.002-05:00</published><updated>2010-07-23T12:15:36.557-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-07-23T12:15:36.557-05:00</app:edited><title>Waiting Until the Last Minute to Decide on NI Week 2010?</title><content type="html">If you haven't registered for &lt;a href="http://www.ni.com/niweek"&gt;NI Week 2010&lt;/a&gt; yet, here's a few reasons why you should:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;There are three days full of great technical presentations.  &lt;a href="http://labviewartisan.blogspot.com/2010/07/my-ni-week-2010-plans.html"&gt;These&lt;/a&gt; are the ones I want to see (including some I'll be presenting).  Christina has a &lt;a href="http://blog.eyesonvis.com/2010/07/09/recommended-ni-week-2010-sessions/"&gt;list&lt;/a&gt;, too.&lt;/li&gt;&lt;li&gt;Lots of LabVIEW programmers will be gunning for me in the LabVIEW Coding Challenge.  Maybe *you* can beat my 2-year win streak?   ;)&lt;/li&gt;&lt;li&gt;The Tuesday night &lt;a href="http://lavag.org/topic/12621-2010-lavaopeng-ni-week-bar-b-q/"&gt;LAVA/OpenG BBQ&lt;/a&gt;!&lt;/li&gt;&lt;li&gt;The Wednesday night conference party!&lt;/li&gt;&lt;li&gt;The fact that, since you're reading this blog, you can use the social media discount code "social2010" when you register for NI Week 2010 to get a discount.&lt;/li&gt;&lt;/ol&gt;And if the written word isn't enough to convince you, check out my &lt;a href="http://decibel.ni.com/content/community/zone/blog/2010/07/21/niweek-blogger-spotlight-the-labview-artisan"&gt;blogger spotlight video&lt;/a&gt; on the NI Community page.</content><link rel="replies" type="application/atom+xml" href="http://labviewartisan.blogspot.com/feeds/2450879188464189553/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://labviewartisan.blogspot.com/2010/07/waiting-until-last-minute-to-decide-on.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/2450879188464189553?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/2450879188464189553?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/labviewartisan/~3/xupyF37PfcU/waiting-until-last-minute-to-decide-on.html" title="Waiting Until the Last Minute to Decide on NI Week 2010?" /><author><name>Darren Nattinger</name><uri>http://www.blogger.com/profile/02086721848867401467</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://2.bp.blogspot.com/_GmlqCX6Omow/Sa2cs4MLtbI/AAAAAAAAABk/4e4f-vRbwxM/S220/burger.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://labviewartisan.blogspot.com/2010/07/waiting-until-last-minute-to-decide-on.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0cDQ3c6fip7ImA9WxFaF08.&quot;"><id>tag:blogger.com,1999:blog-3607298864599224213.post-5028519808878379469</id><published>2010-07-20T23:53:00.003-05:00</published><updated>2010-07-21T10:11:12.916-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-07-21T10:11:12.916-05:00</app:edited><title>Changes to the CLA Exam</title><content type="html">The &lt;a href="http://labviewartisan.blogspot.com/2009/02/labview-certification-preparing-for-cla.html"&gt;Preparing for the CLA&lt;/a&gt; post is one of the most highly visited links on my blog, so I figured I should post some updates that I just learned about (thanks to &lt;a href="http://lavag.org/topic/12757-cla-exam-format-change/"&gt;JG's post on LAVA&lt;/a&gt;) to the way the CLA exam is now done.  Much of the advice I gave in the aforementioned post is no longer valid, so I'd like to highlight some of the new features of the CLA Exam as described on the &lt;a href="http://zone.ni.com/devzone/cda/tut/p/id/5892"&gt;NI CLA prep website&lt;/a&gt;:&lt;div&gt;&lt;div&gt;&lt;ul&gt;&lt;li&gt;&lt;b&gt;No more written portion&lt;/b&gt; - When I took the CLA exam, it contained a written portion that was 40% of my score.  This part of the exam has been removed, which now makes the CLA a 100% practical exam.&lt;/li&gt;&lt;li&gt;&lt;b&gt;Customize LabVIEW settings prior to exam start&lt;/b&gt; - When I took the exam, I had to spend the first few minutes after the clock started customizing LabVIEW (adding Quick Drop shortcuts, turning off auto wire routing, etc. etc.) before I even read the first question.  But now, it seems you can ask your proctor to allow you to customize LabVIEW *before* starting the exam.  The following is a direct quote from the new &lt;a href="ftp://ftp.ni.com/evaluation/certification/cla_exam_prep_guide.pdf"&gt;CLA Exam Preparation Guide&lt;/a&gt; (page 2) on ni.com:  "Please note that you will not receive extra exam time to compensate for non-familiarity with the LabVIEW environment. If you need time to customize the environment, please make arrangements with your proctor to hold off on giving you the exam packet until you are ready to start the exam."&lt;/li&gt;&lt;li&gt;&lt;b&gt;Sample Exam Available&lt;/b&gt; - There is now a &lt;a href="ftp://ftp.ni.com/evaluation/certification/cla_sample_exam_atm_machine.pdf"&gt;CLA Practice Exam&lt;/a&gt; available...this is a great asset in CLA preparation that I highly recommend taking very seriously.  There is also an &lt;a href="ftp://ftp.ni.com/evaluation/certification/cla_sample_atm_solution.zip"&gt;exam solution&lt;/a&gt; available.&lt;/li&gt;&lt;li&gt;&lt;b&gt;Requirements tracking&lt;/b&gt; - 30% of your CLA score is now determined by requirements tracking, the details of which are described in the practice exam and prep guide documents linked above. The exam graders will be using NI Requirements Gateway to verify requirement tracking in your VIs, so make sure you adhere to the &lt;i&gt;[Covers: ] &lt;/i&gt;syntax described in the prep guide and sample exam.  &lt;span style="font-style: italic;"&gt;Note that knowledge of NI Requirements Gateway is *not* a requirement for the CLA.&lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;Looking at the changes, I think they're probably for the best.  I personally found the written portion of the CLA when I took it to be relatively easy and straightforward.  But I know that written exams are notoriously hard to grade, and there might potentially be language barriers for some test takers.  It looks like the test writers are expecting the additional requirements tracking to take roughly the same amount of time as the written portion of the exam, since the sample exam is very similar to the actual exam I took for my CLA, with the addition of the requirements tracking information.&lt;/div&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://labviewartisan.blogspot.com/feeds/5028519808878379469/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://labviewartisan.blogspot.com/2010/07/changes-to-cla-exam.html#comment-form" title="7 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/5028519808878379469?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/5028519808878379469?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/labviewartisan/~3/N-DD6ZFcqho/changes-to-cla-exam.html" title="Changes to the CLA Exam" /><author><name>Darren Nattinger</name><uri>http://www.blogger.com/profile/02086721848867401467</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://2.bp.blogspot.com/_GmlqCX6Omow/Sa2cs4MLtbI/AAAAAAAAABk/4e4f-vRbwxM/S220/burger.gif" /></author><thr:total>7</thr:total><feedburner:origLink>http://labviewartisan.blogspot.com/2010/07/changes-to-cla-exam.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0YBSHo8fCp7ImA9WhBSGUU.&quot;"><id>tag:blogger.com,1999:blog-3607298864599224213.post-7484004029197356983</id><published>2010-07-16T14:53:00.002-05:00</published><updated>2013-02-27T10:05:59.474-06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-02-27T10:05:59.474-06:00</app:edited><title>Conclusions - The Diagram Cleanup Experiment</title><content type="html">It's been just about a year since I embarked on &lt;a href="http://labviewartisan.blogspot.com/2009/07/diagram-cleanup-experiment.html"&gt;The Diagram Cleanup Experiment&lt;/a&gt;.  I attempted to use block diagram cleanup on just about every VI I wrote in LabVIEW 2009 this year.  With such heavy use of the feature, I have come to the following conclusions:&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Use it on moderately-sized diagrams&lt;/span&gt; - The majority of the VIs I write fit on one screen, and have relatively low levels of nesting.  For these kinds of VIs, it is *way* faster to quickly write the VI, then press &lt;span style="font-style: italic;"&gt;Ctrl-U&lt;/span&gt; to clean it up.  The cleanup results in these cases, although not perfect, are acceptable.  The diagrams are readable enough to avoid maintenance headaches down the road.&lt;/li&gt;
&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Don't use it on large diagrams&lt;/span&gt; - Diagram cleanup still has trouble with large diagrams.  For top-level state machines, or similar architecture-level VIs, cleanup does not respect the arrangement of the diagram, which, for these VIs, is crucial to the understanding of the VI.  I have decided that it is still best for me to arrange these diagrams myself.&lt;/li&gt;
&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Don't use it on heavily-nested diagrams&lt;/span&gt; - As I mentioned in my &lt;a href="http://labviewartisan.blogspot.com/2009/10/progress-report-1-block-diagram-cleanup.html"&gt;progress report&lt;/a&gt;, diagram cleanup completely explodes the diagram if there is heavy structure nesting.  It simply can't figure out how to condense space in multiple frames simultaneously.  Until it does, I will continue to arrange heavily-nested diagrams myself.&lt;/li&gt;
&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Mixed results with Tools &amp;gt; Options settings&lt;/span&gt; - I tried several times to tweak the settings in &lt;span style="font-style: italic;"&gt;Tools &amp;gt; Options &amp;gt; Block Diagram &amp;gt; Block Diagram Cleanup&lt;/span&gt; to see if that would improve the cleanup arrangement, but I couldn't figure out a definitive collection of settings that always worked better.  If anyone has any specific suggestions for settings that seem to improve the cleanup layout, let me know.&lt;/li&gt;
&lt;/ul&gt;
So what's next? I just posted the following idea on the LabVIEW Idea Exchange:&lt;br /&gt;
&lt;br /&gt;&lt;a href="http://forums.ni.com/t5/LabVIEW-Idea-Exchange/Tell-Block-Diagram-Cleanup-What-quot-Clean-quot-VIs-Look-Like/idi-p/1185355"&gt;Tell Block Diagram Cleanup what "Clean" Looks Like&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I think the easiest way to get diagram cleanup to arrange VIs to my liking is to show it VIs that I like.  :)  Please kudo the idea if you agree.&lt;div&gt;
&lt;br /&gt;So that's pretty much it.  In short--I like the feature, I will continue to use it because it helps me program faster, but it definitely has room for improvement.&lt;/div&gt;
</content><link rel="replies" type="application/atom+xml" href="http://labviewartisan.blogspot.com/feeds/7484004029197356983/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://labviewartisan.blogspot.com/2010/07/conclusions-diagram-cleanup-experiment.html#comment-form" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/7484004029197356983?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/7484004029197356983?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/labviewartisan/~3/4ACo5nIdCIw/conclusions-diagram-cleanup-experiment.html" title="Conclusions - The Diagram Cleanup Experiment" /><author><name>Darren Nattinger</name><uri>http://www.blogger.com/profile/02086721848867401467</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://2.bp.blogspot.com/_GmlqCX6Omow/Sa2cs4MLtbI/AAAAAAAAABk/4e4f-vRbwxM/S220/burger.gif" /></author><thr:total>2</thr:total><feedburner:origLink>http://labviewartisan.blogspot.com/2010/07/conclusions-diagram-cleanup-experiment.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkQNQ30_fSp7ImA9Wx5TFUw.&quot;"><id>tag:blogger.com,1999:blog-3607298864599224213.post-269941622167111941</id><published>2010-07-12T23:01:00.007-05:00</published><updated>2010-07-30T13:26:32.345-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-07-30T13:26:32.345-05:00</app:edited><title>My NI Week 2010 Plans</title><content type="html">&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.ni.com/niweek/"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 84px; height: 44px;" src="http://www.ni.com/images/global/neutral/niweek2010_bug.png" alt="" border="0" /&gt;&lt;/a&gt;Once again, &lt;a href="http://blog.eyesonvis.com/"&gt;Christina&lt;/a&gt; beat me to the punch and already posted&lt;a href="http://blog.eyesonvis.com/2010/07/09/recommended-ni-week-2010-sessions/"&gt; her NI Week 2010  plans&lt;/a&gt;.  So after each morning's keynote, here's where you might expect &lt;span style="font-style: italic;"&gt;me&lt;/span&gt; to be.  The ones with "***" are the ones I will definitely be attending.  All the rest I'm planning to see, but standard NI Week allowable distractions may apply:&lt;br /&gt;&lt;br /&gt;&lt;u&gt;Tuesday&lt;/u&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;State Machine vs. State Machine&lt;/span&gt;: 10:30, Room 12B.&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;***LabVIEW Add-on Developer Lunch&lt;/span&gt;: 12:00, Ballroom C.&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;What's New in LabVIEW 2010&lt;/span&gt;: 1:00, Room 12B.&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;LabVIEW 2010 Idea Exchange Features&lt;/span&gt;: 2:15, Room 11A.&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;***Tips and Tricks to Speed LabVIEW Development&lt;/span&gt;: 3:30, Room 12B.  I am delivering this presentation.&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Team-based LV SCC Development&lt;/span&gt;: 4:45, Room 12A.&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Challenge the Champions&lt;/span&gt;: 6:00, Technology Theater.&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;***LAVA BBQ&lt;/span&gt;: 7:00, Scholz Garden.  Aww yeah!&lt;/li&gt;&lt;/ul&gt;&lt;u&gt;Wednesday&lt;/u&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-weight: bold;"&gt;***Blogosphere's Best&lt;/span&gt;&lt;/span&gt;: 10:30, Room 11A.  I was asked to show up to this, but I don't know what exactly I'll be doing, if anything.&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Powering a Smarter Planet&lt;/span&gt;: 1:00, Room 16B.  If I weren't a LabVIEW programmer, I'd probably be a solar power researcher.  So renewable energy presentations are always very interesting to me.&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Deployment of Large LabVIEW Apps&lt;/span&gt;: 2:15, Room 12A.&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;LabVIEW Web UI Builder&lt;/span&gt;: 3:30, Room 12B.&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;LabVIEW GUI Design: &lt;/span&gt;4:45, Room 12B.&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;***NI Week Conference Party&lt;/span&gt;: 7:00, somewhere cool.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;u&gt;Thursday&lt;br /&gt;&lt;/u&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;LabVIEW Classes - The State of the Art&lt;/span&gt;: 10:30, Room 12A.&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;***LabVIEW Coding Challenge&lt;/span&gt;: 12:00, Technology Theater.  I've won two years in a row.  This will be the third.&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;LabVIEW Class Design Patterns&lt;/span&gt;: 1:00, Room 12A.&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;LabVIEW WSN Under the Hood&lt;/span&gt;: 2:15, Room 15.  I studied wireless sensor networks a fair bit in grad school...I'm curious to learn about the LabVIEW WSN module.&lt;/li&gt;&lt;/ul&gt;And a few miscellaneous notes to round this out:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;I will be tweeting out the wazoo about all the cool stuff I see at NI Week 2010.  Make sure to follow me (&lt;a href="http://www.twitter.com/dnatt"&gt;@dnatt&lt;/a&gt;) if you don't already.&lt;/li&gt;&lt;li&gt;As is traditionally the case, things aren't quite right with my presentation in the NI Week 2010 schedule.  The title of my presentation (Tips and Tricks to Speed LabVIEW Development) is correct, but the abstract incorrectly talks about speeding up VI performance.  For those keeping track, my NI Week presentations the past few years have been:&lt;/li&gt;&lt;ul&gt;&lt;li&gt;2007 - Tips and Tricks to Speed LabVIEW Development&lt;/li&gt;&lt;li&gt;2008 - Tips and Tricks to Speed LabVIEW Performance&lt;/li&gt;&lt;li&gt;2009 - Tips and Tricks to Speed LabVIEW Performance (with all new tips!)&lt;/li&gt;&lt;li&gt;2010 - Tips and Tricks to Speed LabVIEW Development (with all new tips!)&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;So this year we're back to development tips and tricks.  Be warned: Quick Drop just *might* make an appearance... ;)&lt;br /&gt;&lt;/ul&gt;</content><link rel="replies" type="application/atom+xml" href="http://labviewartisan.blogspot.com/feeds/269941622167111941/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://labviewartisan.blogspot.com/2010/07/my-ni-week-2010-plans.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/269941622167111941?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/269941622167111941?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/labviewartisan/~3/pJfYYuFaLkI/my-ni-week-2010-plans.html" title="My NI Week 2010 Plans" /><author><name>Darren Nattinger</name><uri>http://www.blogger.com/profile/02086721848867401467</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://2.bp.blogspot.com/_GmlqCX6Omow/Sa2cs4MLtbI/AAAAAAAAABk/4e4f-vRbwxM/S220/burger.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://labviewartisan.blogspot.com/2010/07/my-ni-week-2010-plans.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUMNRX0yfSp7ImA9WxFUF0s.&quot;"><id>tag:blogger.com,1999:blog-3607298864599224213.post-5417549495699158499</id><published>2010-06-28T17:15:00.003-05:00</published><updated>2010-06-28T17:18:14.395-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-06-28T17:18:14.395-05:00</app:edited><title>Quick Drop in LabVIEW 8.5</title><content type="html">Even though Quick Drop was introduced in LabVIEW 8.6, there have been &lt;a href="http://www.youtube.com/watch?v=LKTH6f1JfX8"&gt;rumors on the internets&lt;/a&gt; that an 8.5 version existed.  Those rumors are certainly true, since I prototyped Quick Drop well before LabVIEW 8.6 released.&lt;br /&gt;&lt;br /&gt;I finally had some time to post my Quick Drop 8.5 prototype on the NI Community site.  If you want Quick Drop functionality in LabVIEW 8.5, then download the prototype here:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://decibel.ni.com/content/docs/DOC-12374"&gt;Quick Drop in LabVIEW 8.5&lt;/a&gt;</content><link rel="replies" type="application/atom+xml" href="http://labviewartisan.blogspot.com/feeds/5417549495699158499/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://labviewartisan.blogspot.com/2010/06/quick-drop-in-labview-85.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/5417549495699158499?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/5417549495699158499?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/labviewartisan/~3/qLsDvPEE97c/quick-drop-in-labview-85.html" title="Quick Drop in LabVIEW 8.5" /><author><name>Darren Nattinger</name><uri>http://www.blogger.com/profile/02086721848867401467</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://2.bp.blogspot.com/_GmlqCX6Omow/Sa2cs4MLtbI/AAAAAAAAABk/4e4f-vRbwxM/S220/burger.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://labviewartisan.blogspot.com/2010/06/quick-drop-in-labview-85.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkIGQn05eip7ImA9WxFVEEg.&quot;"><id>tag:blogger.com,1999:blog-3607298864599224213.post-69206126201098204</id><published>2010-06-08T22:34:00.005-05:00</published><updated>2010-06-08T23:42:03.322-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-06-08T23:42:03.322-05:00</app:edited><title>I Like Global Variables</title><content type="html">&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GmlqCX6Omow/TA8bi23ximI/AAAAAAAAAGU/uewnjN8gL4A/s1600/scared.PNG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 174px; height: 203px;" src="http://2.bp.blogspot.com/_GmlqCX6Omow/TA8bi23ximI/AAAAAAAAAGU/uewnjN8gL4A/s320/scared.PNG" alt="" id="BLOGGER_PHOTO_ID_5480629557192133218" border="0" /&gt;&lt;/a&gt;I think the title of this post alone will probably lose me some followers on this blog.   :)  Nevertheless, let's proceed...&lt;br /&gt;&lt;br /&gt;Here's the deal...global variables are not evil.  There are perfectly valid use cases in which a global variable is the best tool for the job, and doing something more complicated just to say, "I didn't use globals!" doesn't make sense.  Now sure, globals can be abused, and there are certainly scenarios where they are contraindicated.  But if you're aware of those situations, and you avoid them, you should feel free to use globals where needed.  So let's look at some use cases where, in my opinion, globals can come in handy:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Static Data&lt;/span&gt; - Whenever I create a UI in LabVIEW in which user-visible strings are programmatically changed, I always store those user-visible strings in a global variable.  Let's call this kind of global a &lt;span style="font-style: italic;"&gt;Write Never, Read Many&lt;/span&gt; (WNRM) global.  I am never writing new values into this global...I'm only reading from it in my code whenever I need to update a user-visible string.  Another use case for WNRM globals is in scripting apps.  When I'm doing code generation involving templates, I always store the identifying labels of panel/diagram objects within a global, and I always read those identifiers from a global in my scripting code.  That way, if I need to change the identifiers in the templates, I know that I'll only need to change the identifier in one place (my global) in my scripting code. (&lt;span style="font-style: italic;"&gt;Note: &lt;/span&gt;I believe Yair's &lt;a href="http://forums.ni.com/t5/LabVIEW-Idea-Exchange/Adding-CONSTs-to-LabVIEW/idi-p/942213"&gt;Adding CONSTs to LabVIEW&lt;/a&gt; idea on the Idea Exchange is intended to facilitate a cleaner implementation of this use case.)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Debug Flags&lt;/span&gt; - If I've got parts of my code that I want to run differently when I'm debugging, I use a WNRM global.  I'll open the global and change the debug flags before I run my code.  Someone once suggested that I should instead use Conditional Disable Structures with conditional symbols in my project, but after I looked into it, I decided that the added complexity and configuration associated with conditional symbols didn't add enough value over the simple global solution.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Configuration Data&lt;/span&gt; - In this scenario, we are initializing configuration data (from an INI file, for instance) at some point in our code, and reading that data at later points.  So here we have a &lt;span style="font-style: italic;"&gt;Write Once, Read Many&lt;/span&gt; (WORM) global.  (&lt;span style="font-style: italic;"&gt;Note&lt;/span&gt;:  The term &lt;a href="http://forums.ni.com/ni/board/message?board.id=BreakPoint&amp;amp;view=by_date_ascending&amp;amp;message.id=12215#M12215"&gt;WORM global&lt;/a&gt; was first coined by &lt;a href="http://forums.ni.com/ni/profile?user.id=28196"&gt;tbob&lt;/a&gt; on the &lt;a href="http://forums.ni.com/"&gt;NI Forums&lt;/a&gt; a few months back.)  As long as there is one, single place where the global is written, it is perfectly fine to have many other places in your code that read that global.&lt;/li&gt;&lt;/ul&gt;Now one of the biggest reasons given as to why globals should be avoided is that new users could easily find themselves in race conditions if they're not careful.  But with the use cases above, there should never be any worry about race conditions, as long as developers adhere to the WNRM/WORM constraints.  I don't think we should hamstring ourselves with a blanket refusal to use a feature when it really can be a performant time-saver when utilized correctly.</content><link rel="replies" type="application/atom+xml" href="http://labviewartisan.blogspot.com/feeds/69206126201098204/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://labviewartisan.blogspot.com/2010/06/i-like-global-variables.html#comment-form" title="13 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/69206126201098204?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/69206126201098204?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/labviewartisan/~3/BwZGBpVyiAs/i-like-global-variables.html" title="I Like Global Variables" /><author><name>Darren Nattinger</name><uri>http://www.blogger.com/profile/02086721848867401467</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://2.bp.blogspot.com/_GmlqCX6Omow/Sa2cs4MLtbI/AAAAAAAAABk/4e4f-vRbwxM/S220/burger.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_GmlqCX6Omow/TA8bi23ximI/AAAAAAAAAGU/uewnjN8gL4A/s72-c/scared.PNG" height="72" width="72" /><thr:total>13</thr:total><feedburner:origLink>http://labviewartisan.blogspot.com/2010/06/i-like-global-variables.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DE8ESHo9eip7ImA9WxBaEkU.&quot;"><id>tag:blogger.com,1999:blog-3607298864599224213.post-7309423690696008081</id><published>2010-03-22T14:04:00.002-05:00</published><updated>2010-03-22T14:40:09.462-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-22T14:40:09.462-05:00</app:edited><title>CLA Summit "Trip" Report</title><content type="html">(I say "trip" because it wasn't much of a trip for me...just a walk down two floors.  Contrast that with a few of the attendees who flew in from Europe...)&lt;br /&gt;&lt;br /&gt;I had a good time at the &lt;a href="http://decibel.ni.com/content/groups/certified-labview-architect-summit-2010"&gt;CLA Summit&lt;/a&gt; two weeks ago.  We had about 30 CLAs attend the two-day summit here in Austin.  Here's a chronological summary of the discussions and events:&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;LabVIEW Classes - data vs. reference&lt;/span&gt; - This was a discussion between &lt;a href="http://forums.ni.com/ni/profile?user.id=19544"&gt;Damien&lt;/a&gt; (of Dr. Damien fame on the NI Forums) and Stephen (&lt;a href="http://forums.ni.com/ni/profile?user.id=20831"&gt;Aristos Queue&lt;/a&gt; on the NI/LAVA forums) that boiled down to Damien's use of LV Class data wrapped within single-element queues in his &lt;a href="http://forums.ni.com/ni/board/message?board.id=BreakPoint&amp;amp;thread.id=7467"&gt;xylophone project&lt;/a&gt; that he discussed at length on the NI Forums.  Damien spent some time justifying his choice for this mechanism, and Stephen seemed like he was wondering why it was necessary.  My feelings on the matter generally lined up with Stephen's in this case...&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Error Handling&lt;/span&gt; - We listened to several CLAs present on different aspects of error handling.  These included current solutions (like an FPGA&lt;-&gt;Host error handling mechanism) and future ideas (like exception handling).  The best part of the whole discussion is that some concrete ideas and action items came about for improvements (see &lt;a href="http://decibel.ni.com/content/thread/6541?tstart=0"&gt;here&lt;/a&gt;).  Hopefully we can come up with another challenge topic as rich as this one for the CLA Summit 2011.&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;My tour of shipping VIs&lt;/span&gt; - I presented a tour of the architectures for several shipping G-based LabVIEW features.  Since the CLAs were all under NDA for the summit, I was able to show some of the password-protected VIs from App Builder, MathScript, Tools&gt;Options, and VI Analyzer.  One thing that some of the CLAs said stood out to them was how heavily we use LabVIEW Classes in some of our own features.&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;CLA Recertification Exam&lt;/span&gt; - The CLAs all took part in the new CLA-Recertification exam.  I didn't take the exam (since I wrote some of the questions for it), but the feedback I heard was generally positive.  I can't imagine anyone would turn down the opportunity to recertify with a 1-hour multiple choice exam instead of having to take the entire 4-hour written/coding exam again...&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;New Features for Large Application Development&lt;/span&gt; - Eli gave a long discussion on all of the LabVIEW features and addons that have to do with large application development.  One of his common questions to the audience was to find out why people were *not* using some of these products.  The discussion became very tangential several times, but overall, I think we got some valuable feedback.  For me personally, I got some good ideas during this discussion (and some of the social events) for improvements to the VI Analyzer if I get some significant project time to devote to it for the next release.&lt;br /&gt;&lt;span style="font-style: italic;"&gt;Note&lt;/span&gt;:  There was a parallel discussion going on at the same time as this presentation regarding RT/FPGA stuff, but I didn't attend that one.&lt;/li&gt;&lt;/ul&gt;And in addition to all this stuff, there was also a fun dinner at Brian's house Monday night, and I had the privilege of having dinner with several CLAs who were still in town Tuesday night as well.  Overall, I think it was a great event (and the CLAs &lt;a href="http://decibel.ni.com/content/thread/6534?tstart=0"&gt;seemed to like it too&lt;/a&gt;).  I enjoyed the rather unique position of simultaneously being a LabVIEW R&amp;amp;D developer looking for ways to improve the product, a CLA giving feedback on ways to improve the product, and getting ideas from other CLAs on how to be a better LabVIEW developer.  I'm already looking forward to the next CLA summit in 2011.</content><link rel="replies" type="application/atom+xml" href="http://labviewartisan.blogspot.com/feeds/7309423690696008081/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://labviewartisan.blogspot.com/2010/03/cla-summit-trip-report.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/7309423690696008081?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/7309423690696008081?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/labviewartisan/~3/2YH3y6z9bNk/cla-summit-trip-report.html" title="CLA Summit &quot;Trip&quot; Report" /><author><name>Darren Nattinger</name><uri>http://www.blogger.com/profile/02086721848867401467</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://2.bp.blogspot.com/_GmlqCX6Omow/Sa2cs4MLtbI/AAAAAAAAABk/4e4f-vRbwxM/S220/burger.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://labviewartisan.blogspot.com/2010/03/cla-summit-trip-report.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUUFRn49fSp7ImA9WxBQEk4.&quot;"><id>tag:blogger.com,1999:blog-3607298864599224213.post-8946868844902851150</id><published>2010-01-11T11:51:00.003-06:00</published><updated>2010-01-11T12:06:57.065-06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-01-11T12:06:57.065-06:00</app:edited><title>Ain't No Party Like a CLA Party...</title><content type="html">If you are a Certified LabVIEW Architect, make sure you are in Austin on March 8-9 for the first-ever CLA Summit.  In case you didn't get the memo, &lt;a href="http://app.en25.com/e/es.aspx?s=639&amp;amp;e=2614630&amp;amp;elq=9f17af676b844351aea6fbb38d09929b"&gt;here it is&lt;/a&gt;.  We also have an &lt;a href="http://decibel.ni.com/content/groups/certified-labview-architect-summit-2010"&gt;NI Community Group&lt;/a&gt; with more information and discussions about the event.  There will be presentations (one of which I'll be giving), coding challenges, hang time with LabVIEW R&amp;amp;D, and much more.  And even if your CLA certification is expired, you can still show up and recertify with the new one hour recertification exam.&lt;br /&gt;&lt;br /&gt;So if you are (or were) a CLA, come on down to Austin in March, and make sure to bring some warm weather with you!</content><link rel="replies" type="application/atom+xml" href="http://labviewartisan.blogspot.com/feeds/8946868844902851150/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://labviewartisan.blogspot.com/2010/01/aint-no-party-like-cla-party.html#comment-form" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/8946868844902851150?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/8946868844902851150?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/labviewartisan/~3/UobnJ58o_Ik/aint-no-party-like-cla-party.html" title="Ain't No Party Like a CLA Party..." /><author><name>Darren Nattinger</name><uri>http://www.blogger.com/profile/02086721848867401467</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://2.bp.blogspot.com/_GmlqCX6Omow/Sa2cs4MLtbI/AAAAAAAAABk/4e4f-vRbwxM/S220/burger.gif" /></author><thr:total>2</thr:total><feedburner:origLink>http://labviewartisan.blogspot.com/2010/01/aint-no-party-like-cla-party.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DE8HR3c5fyp7ImA9WxBREk4.&quot;"><id>tag:blogger.com,1999:blog-3607298864599224213.post-3385849659105032986</id><published>2009-12-30T23:02:00.002-06:00</published><updated>2009-12-30T23:20:36.927-06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-12-30T23:20:36.927-06:00</app:edited><title>Are you a Quick Drop Enthusiast?</title><content type="html">I think it goes without saying that I am... ;)  If you are also a fan, and you'd like to talk about ideas for the feature with like-minded Quick Droppers, then you should join the &lt;a href="http://decibel.ni.com/content/groups/quick-drop-enthusiasts"&gt;Quick Drop Enthusiasts&lt;/a&gt; group I created last month on the NI Community website.  So far, we've had some good discussions on Quick Drop feature ideas for LabVIEW 2010, some of which I have already implemented based on community feedback.  I'm also planning on posting a document soon that lists all the post-release Quick Drop Keyboard Shortcuts currently available on the NI Community.</content><link rel="replies" type="application/atom+xml" href="http://labviewartisan.blogspot.com/feeds/3385849659105032986/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://labviewartisan.blogspot.com/2009/12/are-you-quick-drop-enthusiast.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/3385849659105032986?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/3385849659105032986?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/labviewartisan/~3/3mr9PJVQeCg/are-you-quick-drop-enthusiast.html" title="Are you a Quick Drop Enthusiast?" /><author><name>Darren Nattinger</name><uri>http://www.blogger.com/profile/02086721848867401467</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://2.bp.blogspot.com/_GmlqCX6Omow/Sa2cs4MLtbI/AAAAAAAAABk/4e4f-vRbwxM/S220/burger.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://labviewartisan.blogspot.com/2009/12/are-you-quick-drop-enthusiast.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0QMSX0_fCp7ImA9WxNUEUQ.&quot;"><id>tag:blogger.com,1999:blog-3607298864599224213.post-4002525974558658518</id><published>2009-11-02T15:54:00.005-06:00</published><updated>2009-11-02T16:03:08.344-06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-11-02T16:03:08.344-06:00</app:edited><title>LabVIEW Performance Tips and Tricks Webcast - Wednesday, November 4th at 11 AM</title><content type="html">This week I am giving the following LabVIEW Virtual User Group presentation:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://sine.ni.com/nievents/app/overview/p/eventId/40562/site/nic/country/us/lang/en"&gt;NI LabVIEW Virtual User Groups: Tips and Tricks to Increase LabVIEW Performance and Speed&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;My co-host will be Todd Sierer (of &lt;a href="http://www.anengineeringmind.com/"&gt;An Engineering Mind&lt;/a&gt; fame), and I will be giving the same Performance Tips and Tricks presentation that I gave at &lt;a href="http://www.ni.com/niweek"&gt;NI Week&lt;/a&gt; 2009.  Hope to (virtually) see you there!</content><link rel="replies" type="application/atom+xml" href="http://labviewartisan.blogspot.com/feeds/4002525974558658518/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://labviewartisan.blogspot.com/2009/11/labview-performance-tips-and-tricks.html#comment-form" title="3 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/4002525974558658518?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/4002525974558658518?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/labviewartisan/~3/WPNOPw4gCPM/labview-performance-tips-and-tricks.html" title="LabVIEW Performance Tips and Tricks Webcast - Wednesday, November 4th at 11 AM" /><author><name>Darren Nattinger</name><uri>http://www.blogger.com/profile/02086721848867401467</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://2.bp.blogspot.com/_GmlqCX6Omow/Sa2cs4MLtbI/AAAAAAAAABk/4e4f-vRbwxM/S220/burger.gif" /></author><thr:total>3</thr:total><feedburner:origLink>http://labviewartisan.blogspot.com/2009/11/labview-performance-tips-and-tricks.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0AMSHc5fip7ImA9WxNVFk8.&quot;"><id>tag:blogger.com,1999:blog-3607298864599224213.post-286674986478655244</id><published>2009-10-27T00:11:00.002-05:00</published><updated>2009-10-27T00:36:29.926-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-10-27T00:36:29.926-05:00</app:edited><title>Progress Report #1 - The Block Diagram Cleanup Experiment</title><content type="html">As I mentioned &lt;a href="http://labviewartisan.blogspot.com/2009/07/diagram-cleanup-experiment.html"&gt;a few months ago&lt;/a&gt;, I am attempting to use Block Diagram Cleanup for 100% of my diagram arrangement needs in LabVIEW 2009.  I figured I might post updates every once in a while detailing my progress.  So here, in no particular order, are some of my observations and impressions after heavy use of block diagram cleanup for a few months:&lt;div&gt;&lt;ul&gt;&lt;li&gt;&lt;b&gt;It Creates Big Diagrams&lt;/b&gt; - When left to my own devices, I create tight diagrams with very little whitespace.  I have very quickly discovered that diagram cleanup is rather liberal with its allocation of whitespace.  :)  Typically this is because I've got a moderately nested diagram, and diagram cleanup doesn't quite know how to allocate space in each frame of a multiframe structure such that whitespace is minimized.  I imagine this would be a rather difficult problem to solve, since it would require the repositioning algorithm to simultaneously keep track of the spacing in each frame of a multiframe structure.&lt;/li&gt;&lt;li&gt;&lt;b&gt;It Doesn't Respect My Window Size&lt;/b&gt; - Along similar lines, the diagram gets resized and often goes past the height and/or width of the diagram window.  Sometimes I have diagram windows set to a particular size for a reason, and if I were arranging the diagram myself, I would fit the diagram within those window bounds.  I wish we could constrain diagram cleanup to the current diagram's window bounds.&lt;/li&gt;&lt;li&gt;&lt;b&gt;It Creates Bendy Wires&lt;/b&gt; - I've always been very careful to minimize the number of bends in my wires, maybe because my boss was always very picky about it.  In fact, he's the one who insisted "Wire Bends" be a test that shipped with &lt;a href="http://zone.ni.com/devzone/cda/tut/p/id/3588"&gt;VI Analyzer&lt;/a&gt; 1.0!  Anyway, diagram cleanup doesn't seem to be so concerned about wire bends.  From what little I know about the cleanup algorithm, this makes sense because the algorithm is very much concerned with node placement, and not so much wire placement (except for its strict insistence on keeping error wires straight, which I like).  But if you've got nodes that you've arranged just to keep non-error wires straight, diagram cleanup will not take this into account when rearranging.  Also, if you've got constants wired to things, and you've got the constants positioned to minimize wire bends, I frequently see the constant moved, and wires bent as a result.&lt;/li&gt;&lt;li&gt;&lt;b&gt;It Moves My Control Terminal Labels&lt;/b&gt; - I like my control terminals on the sides (left for controls, right for indicators)...in fact, I added the &lt;a href="http://labviewartisan.blogspot.com/2009/08/write-your-own-quick-drop-keyboard.html"&gt;Ctrl-Space-Ctrl-T&lt;/a&gt; shortcut in LabVIEW 2009 to make it easier to perform this operation in bulk for all top-level terminals on the diagram.  But I've noticed my terminal labels get moved by cleanup, and it doesn't look like something that's configurable.&lt;/li&gt;&lt;li&gt;&lt;b&gt;But...I Code Faster&lt;/b&gt; - Despite its shortcomings, block diagram cleanup allows me to code *much* faster than I do when arranging the diagram myself.  I don't have any specifics, but I'd estimate that I write VIs about twice as fast as normal when I spend zero time arranging diagram objects myself.&lt;/li&gt;&lt;/ul&gt;These are my first impressions of block diagram cleanup, with just a few months of LabVIEW 2009 development (on a mishmash of small projects).  But right now, I'm in the beginning stages of writing a LabVIEW Class-based prototype for a &lt;a href="http://decibel.ni.com/content/docs/DOC-4973"&gt;LabVIEW Scripting&lt;/a&gt; architecture for my current project.  I hope to post more detailed observations as I become more involved in this adventure.&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://labviewartisan.blogspot.com/feeds/286674986478655244/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://labviewartisan.blogspot.com/2009/10/progress-report-1-block-diagram-cleanup.html#comment-form" title="6 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/286674986478655244?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/286674986478655244?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/labviewartisan/~3/uCwmNaF9WHo/progress-report-1-block-diagram-cleanup.html" title="Progress Report #1 - The Block Diagram Cleanup Experiment" /><author><name>Darren Nattinger</name><uri>http://www.blogger.com/profile/02086721848867401467</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://2.bp.blogspot.com/_GmlqCX6Omow/Sa2cs4MLtbI/AAAAAAAAABk/4e4f-vRbwxM/S220/burger.gif" /></author><thr:total>6</thr:total><feedburner:origLink>http://labviewartisan.blogspot.com/2009/10/progress-report-1-block-diagram-cleanup.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0IGQXo6fSp7ImA9WxNWF0w.&quot;"><id>tag:blogger.com,1999:blog-3607298864599224213.post-8275461558986155962</id><published>2009-10-16T11:36:00.002-05:00</published><updated>2009-10-16T11:45:20.415-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-10-16T11:45:20.415-05:00</app:edited><title>Quick Drop Keyboard Shortcut - Commands for "Create" Menu Options</title><content type="html">My third post-release Quick Drop keyboard shortcut is now available on the &lt;a href="http://www.ni.com/community"&gt;NI Community&lt;/a&gt; website.  This shortcut allows you to perform all the options in the &lt;span style="font-style: italic;"&gt;right-click &gt; Create...&lt;/span&gt; menu with your keyboard.  You can perform these operations with one or more objects selected.  For example, you could select several control terminals on the diagram, press &lt;span style="font-style: italic;"&gt;Ctrl-Space&lt;/span&gt;, type &lt;span style="font-weight: bold;"&gt;reference&lt;/span&gt;, and press &lt;span style="font-style: italic;"&gt;Ctrl-A&lt;/span&gt;, and a control reference will be created for each one, just as if you had right-clicked them individually and selected &lt;span style="font-style: italic;"&gt;Create &gt; Reference&lt;/span&gt; on each one.  Check it out and let me know what you think:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://decibel.ni.com/content/docs/DOC-7445"&gt;Quick Drop Keyboard Shortcut - Commands for "Create" Menu Options&lt;/a&gt;</content><link rel="replies" type="application/atom+xml" href="http://labviewartisan.blogspot.com/feeds/8275461558986155962/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://labviewartisan.blogspot.com/2009/10/quick-drop-keyboard-shortcut-commands.html#comment-form" title="3 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/8275461558986155962?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/8275461558986155962?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/labviewartisan/~3/eXrt3tc06Zg/quick-drop-keyboard-shortcut-commands.html" title="Quick Drop Keyboard Shortcut - Commands for &quot;Create&quot; Menu Options" /><author><name>Darren Nattinger</name><uri>http://www.blogger.com/profile/02086721848867401467</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://2.bp.blogspot.com/_GmlqCX6Omow/Sa2cs4MLtbI/AAAAAAAAABk/4e4f-vRbwxM/S220/burger.gif" /></author><thr:total>3</thr:total><feedburner:origLink>http://labviewartisan.blogspot.com/2009/10/quick-drop-keyboard-shortcut-commands.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEUEQ344fCp7ImA9WxNWEU8.&quot;"><id>tag:blogger.com,1999:blog-3607298864599224213.post-408341371990978980</id><published>2009-10-09T17:00:00.005-05:00</published><updated>2009-10-09T17:10:02.034-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-10-09T17:10:02.034-05:00</app:edited><title>Quick Drop Keyboard Shortcut - Create Object from Terminal</title><content type="html">My second post-release Quick Drop keyboard shortcut is now available on the &lt;a href="http://www.ni.com/community"&gt;NI Community&lt;/a&gt; website.  This shortcut allows you to perform the Create Control/Indicator/Constant action on a terminal without having to navigate the right-click menus, simply by pressing the shortcut keys while hovering your mouse over the terminal.  You can also optionally use the Quick Drop combo box to type the value of a constant created in this manner.  Check it out and let me know what you think:&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a href="http://decibel.ni.com/content/docs/DOC-7249"&gt;Quick Drop Keyboard Shortcut - Create Object from Terminal&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a href="http://decibel.ni.com/content/docs/DOC-7249"&gt;&lt;/a&gt;Note:  This shortcut works on Windows and Linux, but not Mac.&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://labviewartisan.blogspot.com/feeds/408341371990978980/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://labviewartisan.blogspot.com/2009/10/quick-drop-keyboard-shortcut-create.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/408341371990978980?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3607298864599224213/posts/default/408341371990978980?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/labviewartisan/~3/ceoKE9_mctk/quick-drop-keyboard-shortcut-create.html" title="Quick Drop Keyboard Shortcut - Create Object from Terminal" /><author><name>Darren Nattinger</name><uri>http://www.blogger.com/profile/02086721848867401467</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://2.bp.blogspot.com/_GmlqCX6Omow/Sa2cs4MLtbI/AAAAAAAAABk/4e4f-vRbwxM/S220/burger.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://labviewartisan.blogspot.com/2009/10/quick-drop-keyboard-shortcut-create.html</feedburner:origLink></entry></feed>
