<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://labviewwiki.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=JLMommy</id>
	<title>LabVIEW Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://labviewwiki.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=JLMommy"/>
	<link rel="alternate" type="text/html" href="https://labviewwiki.org/wiki/Special:Contributions/JLMommy"/>
	<updated>2026-05-09T17:31:57Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=QControl&amp;diff=30492</id>
		<title>QControl</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=QControl&amp;diff=30492"/>
		<updated>2020-11-14T19:41:02Z</updated>

		<summary type="html">&lt;p&gt;JLMommy: Fixed NI link (they changed from learn.ni to education.ni)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:QControl Class Green.png|258x258px|frameless|right]]&lt;br /&gt;
A &#039;&#039;&#039;QControl&#039;&#039;&#039; is an object-oriented alternative to using an [[XControl]] created by [https://www.linkedin.com/in/quentin-q-alldredge/ Quentin &amp;quot;Q&amp;quot; Alldredge] from [http://www.qsoftwareinnovations.com/ Q Software Innovations, LLC].  It allows a developer to create useful, highly customized User Interface (UI) components in LabVIEW of which the behavior is extensible and reusable.&lt;br /&gt;
&lt;br /&gt;
It is:&lt;br /&gt;
* A LabVIEW Object-Oriented Class with a Control Reference as part of its Private Data where all manipulation of the Control should be done through Properties and Methods of its Class&lt;br /&gt;
* A class that can be reused to recreate the UI Logic wherever required&lt;br /&gt;
* Could have an asynchronously called Event Hander that handles UI Logic&lt;br /&gt;
* Part of the QControl Class Hierarchy which mimics the [[VI Server]] Class Hierarchy&lt;br /&gt;
__TOC__&lt;br /&gt;
== Tradeoffs of a QControl vs an XControl ==&lt;br /&gt;
There are tradeoffs to using a QControl versus using a regular [[XControl]].&lt;br /&gt;
&lt;br /&gt;
A QControl has the same benefits of an [[XControl]] by:&lt;br /&gt;
* Encapsulating UI Logic Code&lt;br /&gt;
* Maintaining the same functionality when used in multiple instances&lt;br /&gt;
* Allowing for complicated UI code to be abstracted from other developers&lt;br /&gt;
* Allowing for custom properties accessible through Property Nodes&lt;br /&gt;
It is better than an [[XControl]] by:&lt;br /&gt;
* Not requiring separate Edit Time behavior to be developed&lt;br /&gt;
* Decoupling the UI Look (Skin) from the UI Logic&lt;br /&gt;
* Being easier to use with [[Object oriented software|Object Oriented Programming]]&lt;br /&gt;
* Being easier to use with [[LabVIEW Project Library|LabVIEW Project Libraries]] and [[Packed Project Library|Packed Project Libraries (PPLs)]]&lt;br /&gt;
* Inheriting from current LabVIEW controls to give access to their properties which allows the LabVIEW controls to be extensible&lt;br /&gt;
* Being more stable&lt;br /&gt;
However, it does have the drawbacks of:&lt;br /&gt;
* Not having customizable Edit Time behavior&lt;br /&gt;
* Not being able to define Data Type&lt;br /&gt;
* Not being able to enforce the use of the defined façade&lt;br /&gt;
* Slightly more complicated programming in usage (does not exist as just a terminal on the block diagram)&lt;br /&gt;
* Slightly more complicated when programming a custom control with more than one control in it&lt;br /&gt;
&lt;br /&gt;
== Why use a QControl instead of an XControl? ==&lt;br /&gt;
If the Tradeoffs above didn’t help here is a more detailed explanation.  [[XControl]]s have two main problems with their implementation that boil down to when an [[XControl]] is running.&lt;br /&gt;
&lt;br /&gt;
First, the nature of an [[XControl]] is that it is always running when it’s owning VI is in memory but only reacts during the user’s interaction with it.  An [[XControl]] starts and its [[XControl:Abilities:Init_Ability_VI|Init Ability]] executes when the [[XControl]] is placed on the Front Panel of a VI that is not in a Library or Class or when said VI opens and is loaded into memory.  The [[XControl]] then closes and its [[XControl:Abilities:Uninit_Ability_VI|Uninit Ability]] (if it has one) executes when that VI leaves memory or when the [[XControl]] is deleted from the VI.&lt;br /&gt;
&lt;br /&gt;
This becomes more complicated if the owning VI is in a Library or Class.  All VIs in a Libraries or Classes are loaded into memory when the Library or Class is loaded into memory.  This means that the [[XControl:Abilities:Init_Ability_VI|Init]] and [[XControl:Abilities:Uninit_Ability_VI|Uninit]] Abilities run at the load and unload of the Library or Class and not during the load and close of the owning VI.  Loading of Libraries and Classes, unless called dynamically, are when the Project loads and closes.  XControls become even more unstable if it is compiled and used from Packed Project Libraries (PPLs) and/or is used when a LabVIEW Class Object is its data type.  As such XControls are also not recommended for use with the Actor Framework.&lt;br /&gt;
&lt;br /&gt;
Second, [[XControl|XControls]] are difficult to handle during the edit time of the owning VI.  Because they are always running, interaction during edit time has to be programmed into the [[XControl]] (an [[XControl]] has a flag that tells it if the owning VI is in Run Mode or Edit Mode).  This causes a lot more coding necessary just for the ease of the developer that will never be seen by the end user.  Also any properties and method to the control(s) on the Façade have to be recreated as Property and Method Abilities of the [[XControl]].&lt;br /&gt;
&lt;br /&gt;
QControls on the other hand do not execute until the owning VI executes.  All edit time behavior is conserved.  There is no limitations for use in VIs that are part of other Libraries or Classes including PPLs and the Actor Framework.&lt;br /&gt;
&lt;br /&gt;
Also, while using the QControl Toolkit, all properties of the control it is based on, when consisting of single controls, are passed through by nature of inheritance in the QControl Class Hierarchy.  (QControls that have more than one control in a cluster can still have the properties and methods pass through but they would have to be created just as they would have to be created in an [[XControl]].)&lt;br /&gt;
&lt;br /&gt;
== Extended QControls ==&lt;br /&gt;
&#039;&#039;&#039;Extended QControls&#039;&#039;&#039; refers to QControls that have been created and shared to the community.  These are available to download from the links on their respective pages.&lt;br /&gt;
&lt;br /&gt;
=== [[AnimationRing QControl]] ===&lt;br /&gt;
The &#039;&#039;&#039;AnimationRing QControl&#039;&#039;&#039; s a QControl that inherits from and extends the Ring control, specifically a Picture Ring.  It cycles the value of the ring which contains a frame of the animation.  The frame rate is settable by property.&lt;br /&gt;
&lt;br /&gt;
=== [[BreadcrumbNavigator QControl]] ===&lt;br /&gt;
The &#039;&#039;&#039;BreadcrumbNavigator QControl&#039;&#039;&#039; is a QControl that inherits from and extends the String control. It acts like a list of HTML-Like links to help provide navigation in an application.  Add items through an included property. Clear all items through an included method.  When an item is clicked on, any thing after it is removed from the list and the clicked item is returned.&lt;br /&gt;
&lt;br /&gt;
=== [[Calendar QControl]] ===&lt;br /&gt;
The &#039;&#039;&#039;Calendar QControl&#039;&#039;&#039; is a QControl that inherits from and extends the Cluster control.  It implements multiple buttons, lists, etc. to implement a Calandar.&lt;br /&gt;
&lt;br /&gt;
=== [[DataGrid QControl]] ===&lt;br /&gt;
The &#039;&#039;&#039;DataGrid QControl&#039;&#039;&#039; is a QControl that inherits and extends the Multicolumn Listbox control. It functions as a completely LabVIEW implemented Data Grid where the column data type is defined at edit time by the developer.  The user is then constrained by that data type when inputting data into the Multicolumn Listbox.&lt;br /&gt;
&lt;br /&gt;
=== [[RichTextBox QControl]] ===&lt;br /&gt;
The &#039;&#039;&#039;RichTextBox QControl&#039;&#039;&#039; is a QControl that inherits and extends the String control.  It functions as a completely LabVIEW implemented Rich Text Box.  Under the hood it uses an HTML-like tagged string to define the formatting.  Then there are two main methods: one that converts the tagged string to the formatted string and one that converts the formatted string to the tagged string.&lt;br /&gt;
&lt;br /&gt;
=== [[SpellcheckString QControl]] ===&lt;br /&gt;
The &#039;&#039;&#039;SpellcheckString&#039;&#039;&#039; is a QControl that inherits from and extends the String control. It implements run-time spell checking inside of a String control.  It highlights misspelled words by underlining and changing the color to red. Right-clicking on a misspelled word opens a menu with the suggestions and an option to add word to dictionary.&lt;br /&gt;
&lt;br /&gt;
== External Links ==&lt;br /&gt;
*[https://education.ni.com/center-of-excellence/resources/1185/ui-extensible-mod-uis-extend-the-vi-server-with-object-oriented-techniques UI: Extensible &amp;amp; Mod UIs: Extend the VI Server With Object-Oriented Techniques] - by Quentin Alldredge, Q Software Innovations, LLC&lt;br /&gt;
*[http://sine.ni.com/nips/cds/view/p/lang/en/nid/214228 QControl Toolkit on the LabVIEW Tools Network]&lt;br /&gt;
&lt;br /&gt;
[[Category:QControl]]&lt;br /&gt;
[[Category:XControl]]&lt;br /&gt;
[[Category:User interface]]&lt;/div&gt;</summary>
		<author><name>JLMommy</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=NIWeek_2019&amp;diff=7976</id>
		<title>NIWeek 2019</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=NIWeek_2019&amp;diff=7976"/>
		<updated>2019-05-29T19:04:44Z</updated>

		<summary type="html">&lt;p&gt;JLMommy: Added links to keynote videos&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:NIWeek2019Banner.png|800px|frameless|center|link=http://niweek.ni.com]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
__TOC__&lt;br /&gt;
==NIWeek Website==&lt;br /&gt;
&#039;&#039;&#039;[http://niweek.ni.com Visit NIWeek Website for Registration and Event Summary]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Get the App==&lt;br /&gt;
The App is available on multiple plateforms and is a great way to customize your own schedule with all of the events going on:&lt;br /&gt;
*[https://play.google.com/store/apps/details?id=mobile.appzRUB0G3TIO&amp;amp;hl=en_US App on Google Play]&lt;br /&gt;
*[https://apkpure.com/niweek-2019/mobile.appzRUB0G3TIO App on APKPure]&lt;br /&gt;
*[https://itunes.apple.com/us/app/niweek-2019/id1226714099?mt=8 App on Apple App Store]&lt;br /&gt;
*[https://event.crowdcompass.com/niweek2019 Access through web browser]&lt;br /&gt;
&lt;br /&gt;
==Keynote Sessions==&lt;br /&gt;
===Tuesday Morning Keynote: Full Force Ahead (Tuesday, May 21&amp;lt;sup&amp;gt;st&amp;lt;/sup&amp;gt;, 2019)===&lt;br /&gt;
*[https://livestream.com/accounts/4609552/events/8602589/videos/191534166?espuid=CNATL000003411765&amp;amp;cid=Direct_Marketing-128965-Corporate-em127023 Full Force Ahead]&lt;br /&gt;
===Tuesday Afternoon Keynote: The Full Force of the NI Platform (Tuesday, May 21&amp;lt;sup&amp;gt;st&amp;lt;/sup&amp;gt;, 2019)===&lt;br /&gt;
*[https://livestream.com/accounts/4609552/events/8602589/videos/191542336?espuid=CNATL000003411765&amp;amp;cid=Direct_Marketing-128965-Corporate-em127023 The Full Force of the NI Platform ]&lt;br /&gt;
===Wednesday Morning Keynote: Full Force Ahead Toward Disruptive Change (Wednesday, May 22&amp;lt;sup&amp;gt;nd&amp;lt;/sup&amp;gt;, 2019)===&lt;br /&gt;
*[https://livestream.com/accounts/4609552/events/8602589/videos/191568250?espuid=CNATL000003411765&amp;amp;cid=Direct_Marketing-128965-Corporate-em127023 Full Force: Driving Innovative Change]&lt;br /&gt;
===Wednesday Afternoon Keynote: An Enduring Force-Defying Boundaries (Wednesday, May 22&amp;lt;sup&amp;gt;nd&amp;lt;/sup&amp;gt;, 2019)===&lt;br /&gt;
*Note: Due to the proprietary content included in Captain Scott Kelly’s keynote, NI was unable to record his session.&lt;br /&gt;
===Wednesday Afternoon Engineering Impact Awards (Wednesday, May 22&amp;lt;sup&amp;gt;nd&amp;lt;/sup&amp;gt;, 2019)===&lt;br /&gt;
*[https://livestream.com/accounts/4609552/events/8602589/videos/191587275?espuid=CNATL000003411765&amp;amp;cid=Direct_Marketing-128965-Corporate-em127023 Engineering Impact Awards]&lt;br /&gt;
&lt;br /&gt;
==Technical Sessions==&lt;br /&gt;
===Software Engineering Processes, Architectures, and Design (SEPAD) Track===&lt;br /&gt;
*&#039;&#039;&#039;Monday, May 20&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/fT5dJHa8ST How to Be Ultra Productive With OOP in LabVIEW NXG Using UML]&#039;&#039;&#039; by Jeffrey Habets, Founder/CEO, VI Technologies (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/HynuUd33wa I Find Your Lack of LabVIEW Programming Speed Disturbing]&#039;&#039;&#039; by Darren Nattinger, Principal Engineer, National Instruments (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/9uBV7pE3BB The Importance of Abstraction and Standardization in Automated Test]&#039;&#039;&#039; by Jonathan Hobson, Systems Engineering Group Lead, TBG Solutions (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/mJrPZufxyN These Innovative Tricks for #ProjectRequirements Will Change Your Life]&#039;&#039;&#039; by Quentin Alldredge, Software Engineer, Q Software Innovations; Chris Beuschel, Senior Systems Engineer, Konrad Technologies; and Becky Linton, Senior Systems Engineer, Konrad Technologies (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/GfTB2J8u1W Get Team Buy-In: Running Process Improvement Workshops]&#039;&#039;&#039; by Peter Horn, AES, National Instruments (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/RxmoZLVsHR Malleable VIs: More Flexible Code]&#039;&#039;&#039; by Stephen Loftus-Mercer, Principal Software Architect, National Instruments (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/4dkqYJA6ry No NI Summit in Your City? Build Your Own!]&#039;&#039;&#039; by Darren Mather, LabVIEW Architect, iNU Solutions (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/r7qI4PsbJr TestStand Customization: Architecting TestStand Framework for Noncoders]&#039;&#039;&#039; by Sreejith Sreenivasan, Systems Architect, Multics Ltd (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/iW9lMvEpHP Traits: A New Approach to Designing Reusable Code]&#039;&#039;&#039; by Dmitry Sagatelyan, CEO, Arktur Technologies LLC (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/9sDu1CoNRH Customizing Your WebVIs]&#039;&#039;&#039; by Darin Gillis, R&amp;amp;D Product Owner - LabVIEW NXG Web Module, National Instruments and Milan Raj, Senior Software Engineer, National Instruments (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/cUMi1WPa6I Decoupling LabVIEW Object-Oriented Programming Classes via Abstraction]&#039;&#039;&#039; by John Lokanis, Architect, F5 Networks (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/nDTEkEY5mE Designing Software Like LEGO® Sets]&#039;&#039;&#039; by Stephen Moore, Systems Engineer, Moore Good Ideas (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/zmn7HCHqqw Using and Abusing Channel Wires: An Exercise in Flexibility]&#039;&#039;&#039; by Robert Schor, Scientist, NIH (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/Rp88JfCkoC Using DQMH in TestStand]&#039;&#039;&#039; by Sam Roundy, Partner, Testeract (Links Coming Soon)&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Tuesday, May 21&amp;lt;sup&amp;gt;st&amp;lt;/sup&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/78dwKwNDCc Automating Repetitive Development Tasks in TestStand]&#039;&#039;&#039; by Chris Fazekas, Test Engineer, Lockheed Martin (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/6Peg2W9IRq Creating Powerful Web Apps With the LabVIEW NXG Web Module]&#039;&#039;&#039; by Matthias Baudot, Software Architect, STUDIO BODs (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/tVOCHNQxuF Lean LabVIEW]&#039;&#039;&#039; by Steve Watts, Designer, SSDC Ltd (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/I15zuXALze Who Are You Developing Your HAL/MAL For? You Or The Test Engineer]&#039;&#039;&#039; by Grant Gothing, Chief Technology Officer, Bloomy (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/BMcINVutHL Designing Advanced LabVIEW-Based HALs and Frameworks for Mindful Extension]&#039;&#039;&#039; by Ryan Friedman, Principal Software Architect, National Instruments and Phil Joffrain, Chief Software Engineer, National Instruments (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/2Ex9SoMIqQ Effectively Using Packed Project Libraries]&#039;&#039;&#039; by Mark Yedinak, Advanced Engineer, Zebra Technologies Corporation and Yinhui Chen, Software Test Engineer, Zebra Technologies (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/nfOdapHzkO Efficient User Interface Development in Post-Silicon Validation]&#039;&#039;&#039; by Wolfgang Rominger, Verification &amp;amp; Validation Engineer, NXP Semiconductor Austria and Denis Grgic, Student, FH Joanneum (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/UYt35fV9Fv From Variant Attributes to Sets and Maps (New in 2019)]&#039;&#039;&#039; by Christian Altenbach, Research Ophthalmologist, UCLA (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/ppwk9qs30F Good Component Design for LabVIEW NXG]&#039;&#039;&#039; by Taylor Riche, Principal Product Owner, National Instruments (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/QSCNSbbeoc Code Trafficking: Smuggling Your Best Software]&#039;&#039;&#039; by Christian Butcher, Technician, Okinawa Institute of Science and Technology; Tim McClung, Systems Engineer, Fike; and Sam Roundy, Partner, Testeract (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/T9BPsxVa3z If It Bleeds We Can Kill It: Ninja Skills for Test Time Reduction]&#039;&#039;&#039; by Norman Kirchner, Principal RF &amp;amp; Communications Applications Engineer, National Instruments (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/UqRf5XLkRo Simplifying your HAL with LVOOP and DQMH®]&#039;&#039;&#039; by Fabiola De la Cueva, Certified LabVIEW Architect, Founder, Delacor and Michael Howard, Principal Automation Test Engineer, Advanced Bionics (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/FBoSNsEL3K VeriStand Custom Device Design for Usability and Maintainability]&#039;&#039;&#039; by Tristan Cowan, Chief Engineer, Real-Time Test, Bloomy Controls (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/DlTi3W9vX2 VI Analyzer: The Unsung Hero of Software Quality Control]&#039;&#039;&#039; by Chris Roebuck, LabVIEW Architect, Konrad Technologies (Links Coming Soon)&lt;br /&gt;
*&#039;&#039;&#039;Wednesday, May 22&amp;lt;sup&amp;gt;nd&amp;lt;/sup&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/Kopep011Td 10 Steps to Unleash Engineering Productivity With Automated Evaluation]&#039;&#039;&#039; by Josef Eiswirt, Sales Manager, measX GmbH &amp;amp; Co. (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/gwhLZcFpXu LabVIEW NXG: Advisory Lightning Rounds]&#039;&#039;&#039; by Sumedha Ganjoo, Project Manager, National Instruments; Nicole Richard, National Instruments; Taylor Riche, Principal Product Owner, National Instruments; and Jon Soneson, Group Manager, Software User Experience, National Instruments (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/0S3F53muIm LabVIEW Unit Testing: Outlook &amp;amp; Tutorial]&#039;&#039;&#039; by Peter Bokor, Dr, IncQuery Labs and Barnabs Reischl, Engineer, IncQuery Labs Ltd. (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/ybgQRHwSXI Sharing LabVIEW Code: What Tools Are Good For What?]&#039;&#039;&#039; by Andrew Heim, Staff Systems Engineer, Endigit and Tanner Blair, Systems Engineer - Embedded, National Instruments (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/rrrad1Ej0T Automating Test Procedure to Test Sequence With the TestStand API]&#039;&#039;&#039; by James Besancon, Project Engineer, Bloomy Controls (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/yel7OnKSW8 By-Reference Architectures for More Flexible Software Design]&#039;&#039;&#039; by Derrick Bommarito, LabVIEW System Architect, Contractor and Shawn Walpole, Senior Systems Engineer, Endigit (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/KAvTsshEYO LabVIEW Reuse and Package Management]&#039;&#039;&#039; by Brian Hoover, Test Software Architect, Samsung (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/XfYGmyKumb Software Engineering in LabVIEW: A Look at Tools and Processes]&#039;&#039;&#039; by Paul Morris, Dr, Precision Acoustics Ltd and Cesar Teixeira, Chief Executive Officer, Blue Eyes Systems (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/C3GvjfVYy4 Achieve Success With an Intermodular Communications Framework]&#039;&#039;&#039; by Carlton Heard, Software Architect, Johnson Controls and Rob Humfeld, Chief Software Architect, JET Engineering (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/bX0ROBvxm9 Best Practices for Building and Distributing Componentized LabVIEW Applications]&#039;&#039;&#039; (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/i8L17YtDS7 Introducing JIVE: JIRA Integration for LabVIEW]&#039;&#039;&#039; by Chris Roebuck, LabVIEW Architect, Konrad Technologies (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/CuOAfHHfWd Mapping Product Requirements to Test System Requirements and Creating Test Limits]&#039;&#039;&#039; by Jomar Ochoco, Principal Test System Engineer, Abbott Laboratories (Links Coming Soon)&lt;br /&gt;
*&#039;&#039;&#039;Thursday, May 23&amp;lt;sup&amp;gt;rd&amp;lt;/sup&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/Z2HbTCJEVL Continuous Integration Using GitLab and VMware: Dynamically Launching and Assigning Virtual Machines]&#039;&#039;&#039; by Samuel Taggart, Owner, System Automation Solutions LLC (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/qi4kb6dNCb Design Patterns for Decoupled UIs in LabVIEW: Theory and Practice]&#039;&#039;&#039; (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/1J3C70M1iV SystemLink™ Software: Deriving Automated Test Insights]&#039;&#039;&#039; by Matthew Friedman, Principal Product Marketing Manager, National Instruments; Joshua Prewitt, Section Manager, National Instruments; and Matthew Vaterlaus, Senior Group Manager, National Instruments (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/okIKmvNgq9 Achieve Better UIs With a Dynamic Sizing Library and Object-Oriented UI Panels]&#039;&#039;&#039; by Derrick Bommarito, LabVIEW System Architect, Contractor and Wiebe Walstra, Ing., Carya (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/1ZT8C9TyHZ Automating App Distribution and Installation Using SystemLink™ Server and NI Package Manager]&#039;&#039;&#039; by Steven Dusing, Project Engineer, DMC Inc. and Beth Reinert, Systems Engineer, DMC Inc. (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/yK15T3lT2V Everything a Software Engineer Needs to Know Outside Software Engineering]&#039;&#039;&#039; by Chris Cilino, LabVIEW Framework Architect, Cirrus Logic (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/XcvXYvG610 Message Exchange Patterns and Tools for Distributed Systems]&#039;&#039;&#039; by Francois Normandin, LabVIEW System Architect, National Research Council Canada and Sarah Zalusky, Senior Project Engineer, JKI (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/RBoDcGEnD6 Stop Breaking the Trunk! A Step-by-Step CI Tutorial for Test Programs]&#039;&#039;&#039; by Jonathan Newkirk, Senior Hardware Test Engineer, Impinj Inc and Chris Roebuck, LabVIEW Architect, Konrad Technologies (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/57YW3pM8Yz An Effective Test Strategy is More Than a Killer HAL/MAL]&#039;&#039;&#039; (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/iilRkpQT9s Better, Faster, Stronger: It&#039;s Not All Technical]&#039;&#039;&#039; by Andy Fenley, Senior Test Engineer, Qorvo; Chris Roebuck, LabVIEW Architect, Konrad Technologies; and Will Schoettler, Managing Director, Choose Movement Consulting LLC (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/mXryAd13wF Case Study: Software Standardization in Large Teams]&#039;&#039;&#039; by Kabul Maharjan, Renishaw PLC (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/X32dtPXm6y On Refactoring: Real-World Approaches for Improving Code]&#039;&#039;&#039; by Christopher Field, President, Principal Developer, Field R&amp;amp;D Services; Cesar Teixeira, Chief Executive Officer, Blue Eyes Systems; and Oliver Wachno, Dipl.-Ing.(FH), Ingenieurbro Oliver Wachno (Links Coming Soon)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/f9tCBWjvWn Prof Watts&#039; Theory on Why Programming in LabVIEW is Fun!]&#039;&#039;&#039; by Steve Watts, Designer, SSDC Ltd (Links Coming Soon)&lt;br /&gt;
===Hardware and Technologies Track===&lt;br /&gt;
*&#039;&#039;&#039;Monday, May 20&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/egXVomsHLj Behind the Design: Turning Large Scale Metal Additive Technology into Smart Manufacturing]&#039;&#039;&#039; by William Carter, Technical Professional, Oak Ridge National Laboratory (ORNL); Christopher Masuo, Post-Bachelor Research Associate, ORNL; and Dr. Andrzej Nycz, ORNL&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/514tPIFYI0 Developing an ATE Standardization Roadmap With PXI at the Core]&#039;&#039;&#039; by Jerry Hopp, Business Development Manager, Virginia Panel Corporation and Quentin Smith, Product Manager, NI&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/ScY9vesZQq Tips and Tricks for Using TSN With NI Hardware]&#039;&#039;&#039; by Austin Elledge, Product Support Engineer, National Instruments and Erik Hons, Chief Software Engineer, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/Sacm2tKe7w Accuracy I: Understanding Data Acquisition System Accuracy]&#039;&#039;&#039; by David Funkhouser, Senior Group Manager, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/iLJqsNruiH How to Optimize Signal Integrity: Oscilloscopes]&#039;&#039;&#039; by Jesse Ormston, Principal Hardware Engineer, NI and Mark Whittington, Chief Architect, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/yz5dpix00t DC Measurement Best Practices: Optimizing for Parasitics, Noise, and Drift]&#039;&#039;&#039; by Kevin Cawley, Chief Engineer, NI; Eric Hartner, Engineer, NI; Blake Lindell, Engineer, NI; and Quentin Smith, Product Manager, NI&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/XyiOKbrc4v ITA Design Considerations]&#039;&#039;&#039; by Sean Casey, Test System Engineering Manager, Circuit Check Inc.&lt;br /&gt;
*&#039;&#039;&#039;Tuesday, May 21&amp;lt;sup&amp;gt;st&amp;lt;/sup&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/4Ei84zMIZa Building Smarter Rack-Based Test Systems]&#039;&#039;&#039; by Austin Hill, Product Planner, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/vIYIVVWp5T C Series and DAQ Product Roadmap]&#039;&#039;&#039; by Sam Burhans, Product Manager, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/98qGy5pIv8 How to Design a Multi-FPGA System]&#039;&#039;&#039; by Cheryl Texin, Systems R&amp;amp;D Engineer, National Instruments and Brad Sherman, Staff Applications Engineer, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/4DHEkLBqpT FPGA Image Processing: When, Why, How?]&#039;&#039;&#039; by Christophe Caltagirone, Principal Software Engineer, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/OFe5zTQvFZ Introducing NIs First Wireless Sensor]&#039;&#039;&#039; by Madison Terzo, Product Manager, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/WyJHw1Bl95 PTP for Data Synchronization: Time-Critical Acquisition Across Multiple Devices]&#039;&#039;&#039; by Ashley Enderlin, Project Engineer, DMC Inc and Tom Nilsson, Systems Engineer, DMC&lt;br /&gt;
*&#039;&#039;&#039;Wednesday, May 22&amp;lt;sup&amp;gt;nd&amp;lt;/sup&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/645LWHMuhw Prototyping With CompactRIO and HIL Testing With PXI for the Race Track]&#039;&#039;&#039; by Marco Schmid, Owner/Lead, Schmid Elektronik&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/LzB1TtQAQp Streamline Your LabVIEW Real-Time Development]&#039;&#039;&#039; by Taylor Donahue, Project Engineer, Bloomy Controls&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/cgWa5L1aV3 What&#039;s New in the NI PXI Platform]&#039;&#039;&#039; by Austin Hill, Product Planner, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/0OwaBfiovC Accuracy II: SAR Versus Delta-Sigma ADCs]&#039;&#039;&#039; by Albert Block, Staff Analog Engineer, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/kfe1uViHtB Hack Your Car With NI CAN Interfaces and LabVIEW]&#039;&#039;&#039; by James Fan, Product Manager, Automotive Networks, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/S9oJE6Y3ZA Designing for High-Throughput Data Movement on the PXI Platform]&#039;&#039;&#039; by Rick Clark, Product Manager - Automated Test, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/2TBfLvSgcf Dodging Distributed DAQ Disaster: 5 Do&#039;s and Don&#039;ts]&#039;&#039;&#039; by Derek Burrows, Product Marketing Engineer, National Instruments&lt;br /&gt;
*&#039;&#039;&#039;Thursday, May 23&amp;lt;sup&amp;gt;rd&amp;lt;/sup&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/PMsL2xNCyP Accuracy III: Advanced Techniques for Removing Noise]&#039;&#039;&#039; by Michael Denton, Senior Product Manager, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/N0roYYlqX6 Advances in Ethernet to Test Connected Electronic Devices]&#039;&#039;&#039; by Matthew Griffin, Product Manager, National Instruments and Aimee Xia, Product Marketing Manager, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/2obTd3eRQd Getting the most out of the New CompactRIO and sbRIO Controllers with NI-DAQmx and TSN]&#039;&#039;&#039; by Tucker Davis, Product Manager - Platform &amp;amp; Precision I/O, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/9GTMxsPjuZ A Deep Dive on Synchronization in PXI]&#039;&#039;&#039; by Brad Sherman, Staff Applications Engineer, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/WZ0gfIzMvb Linux and NI: How This Combination Benefits You]&#039;&#039;&#039; by Michael Denton, Senior Product Manager, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/lP0v53Qokp Using CompactRIO With NI-DAQmx in the Real World]&#039;&#039;&#039; by Rhys Bowley, Platform Lead - DAQ and RIO, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/iHSaaF6tG8 Condition Based Maintenance in the IIoT]&#039;&#039;&#039; by Preston Johnson, Principal, Allied Reliability Group&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/7KbKRpoJ8y Securing Your cRIO Deployment]&#039;&#039;&#039; by Haris Okanovic, Principal Software Engineer, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/1FuGuLRV6V Using Machine Learning and Deep Learning in NI Vision]&#039;&#039;&#039; by Nicolas Vazquez, National Instruments&lt;br /&gt;
&lt;br /&gt;
===Software Fundamentals Track===&lt;br /&gt;
*&#039;&#039;&#039;Monday, May 20&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/vdw1F8hiYx Hands-On: Web Module]&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/wYAWks89JC Introduction to Vision Software]&#039;&#039;&#039; by Matthew Griffin, Product Manager, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/5TKjJHIGiH What&#039;s New in LabVIEW 2019 and LabVIEW NXG]&#039;&#039;&#039; by Kelli Kravetz, Software Product Marketing Manager, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/8YlZp0YN37 LabVIEW Authentication with Microsoft Azure]&#039;&#039;&#039; by Brent Jacobs, Principal Automation Manager, Microsoft&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/uEPpW9QqLo LabVIEW NXG Web Module: Developing Web-Based User Interfaces]&#039;&#039;&#039; by Rita Prather, Software Product Manager, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/dBRQ8Mt9Zr Prophecy of the SMoRES: Coding Principles for All]&#039;&#039;&#039; by Norman Kirchner, Principal RF &amp;amp; Communications Applications Engineer, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/PIkgTiubec Clean Code: FUNdamental Principles]&#039;&#039;&#039; by Christopher Stryker, Staff Software Engineer, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/ewVOS2RqGY DCAF: A Framework for Efficiently Developing Robust Control Applications]&#039;&#039;&#039; by Benjamin Celis, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/HLCtqjiQd9 Hands-On: Data Logging with FlexLogger]&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/jPnzEDhvz6 SystemLink™ Software: Connected Intelligence for Test and Measurement Systems]&#039;&#039;&#039; by Matthew Friedman, Principal Product Marketing Manager, National Instruments and Jason Lanier, Principal Product Manager, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/z0VcBeJtsW What&#039;s New in LabWindows/CVI 2019]&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Tuesday, May 21&amp;lt;sup&amp;gt;st&amp;lt;/sup&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/2RC5yaQAPQ Code Smells Part 2: Smelly Objects]&#039;&#039;&#039; by Mark Ridgley, Owner, Radius Teknologies LLC&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/5SYNfDhx0z Introduction to LabVIEW Real-Time and LabVIEW FPGA]&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/ce9jbPREyi FlexLogger: Fast, Flexible Data Logging without Programming]&#039;&#039;&#039; by Anjelica Warren, Product Marketing Manager, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/KEU8PyzSto Integrating Python and LabVIEW]&#039;&#039;&#039; by Allen Hsu, Software Product Manager, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/lqpcA9HXbw SystemLink™ Software: Better Operational Efficiency With Systems Management]&#039;&#039;&#039; by Cosmin Neagu, Sr. Group Mgr., National Instruments and Joshua Prewitt, Section Manager, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/pzhHGPMtXK Access, Visualize, and Interact With Your DAQ Applications From Anywhere Using SystemLink™ Cloud]&#039;&#039;&#039; by Mark Black, Principal Product Owner, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/e4flDAgiPh Automated Measurement Analysis Leveraging MathWorks &amp;amp; NI Tools]&#039;&#039;&#039; by Kelli Kravetz, Software Product Marketing Manager, National Instruments and Rob Purser, Senior Development Manager, MathWorks&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/4bUhDKORFz Save Time by Continuously Testing Reused Libraries: For Beginners]&#039;&#039;&#039; by Wolfgang Rominger, Verification &amp;amp; Validation Engineer, NXP Semiconductor Austria&lt;br /&gt;
*&#039;&#039;&#039;Wednesday, May 22&amp;lt;sup&amp;gt;nd&amp;lt;/sup&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/dH5TNvfw9P Embedded Software Validation With VeriStand]&#039;&#039;&#039; by Ajay Jashnani, Product Owner, VeriStand Ecosystem, National Instruments and Mike Trimborn, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/MVrlIuURcU Hands-On: Integrate LabVIEW With Python]&#039;&#039;&#039; by Danielle Jobe, Project Engineer, VI Technologies&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/NCiuXm1ycS SystemLink™ Software: Maximize Utilization With Asset Management]&#039;&#039;&#039; by Vlad Deac, Senior Software Engineer, National Instruments and Joshua Prewitt, Section Manager, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/DAWfm6gcV2 Using Templates and LabVIEW OOP for Flexible Projects]&#039;&#039;&#039; by David Fanelli, Engineer, Jacobs Technology&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/ffYAr6oA2f How to Blow Your LabVIEW Project in Surprisingly Few Steps]&#039;&#039;&#039; by Joerg Hampel, Founder/Owner, HAMPEL SOFTWARE ENGINEERING&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/Oc7HlsoXzP Tips and Tricks With Vision Builder for Faster and Easier Applications]&#039;&#039;&#039; by Steve Varga, Principal Scientist, Procter &amp;amp; Gamble&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/IQqn1iXb2c What Is the LabVIEW NXG FPGA Module?]&#039;&#039;&#039; by Adam Arnesen, Principal Software Engineer, National Instruments and TJ Giere, Group Manager, LabVIEW, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/jhZsLDYDlY Why I Cringe When Everyone Wants Data in Excel]&#039;&#039;&#039; by James McNally, Principle Engineer, Wiresmith Technology&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/PtEzbL44Pn Customizing FlexLogger to Communicate With the World Around You]&#039;&#039;&#039; by Cameron Frisby, Engineering Manager, National Instruments and Daniel Domene, Chief Product Owner, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/q4EMjLg9GN Leverage SystemLink for Machine Learning]&#039;&#039;&#039; by Anish Mathews, BU Manager, Soliton Technologies and Vishnu Prasad N, Manager, Soliton Technologies&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/c2iOdwc9Pi Novel Approaches to Pass Data Between TestStand and LabVIEW]&#039;&#039;&#039; by Scott Walkington, Team Lead Computer Engineer, Sandia National Laboratories&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/UbP0AqRXIe Wireless Design and Test using MATLAB® and NI Tools]&#039;&#039;&#039; by Chen Chang, Strategic Business Development Director, National Instruments and Ken Karnofsky, Senior Strategist, MathWorks&lt;br /&gt;
*&#039;&#039;&#039;Thursday, May 23&amp;lt;sup&amp;gt;rd&amp;lt;/sup&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/bc0Uf4Wq4O Architecting a TestStand Automation]&#039;&#039;&#039; by Sam Roundy, Partner, Testeract&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/Y27lmAxIuA Data Workflow Management]&#039;&#039;&#039; by Andreas Haub, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/0p5rIxl9dN Introduction to Migrating LabVIEW Code to LabVIEW NXG]&#039;&#039;&#039; by Jeff Peacock, Senior Product Owner, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/EvJ44zIGuC Learning to Love Text Again With Measurement Studio]&#039;&#039;&#039; by Mark Locascio, Project Engineer, DMC Inc&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/hRNa2hgKWm Writing Data-Management-Ready Measurement Files]&#039;&#039;&#039; by Brad Turpin, Senior Product Support Engineer, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/Zz7KepG9XF Zero to Application in ~90 days using LabVIEW with DQMH]&#039;&#039;&#039; by Jeff DeBuhr, Sr. Automation Engineer, Chamberlain&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/Fy9Gm32lh7 Redefining Test Procedures With TestStand Automation]&#039;&#039;&#039; by Nathan Cline, Systems Engineer, Northrop Grumman&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/r3ALNRBJB4 SystemLink: Accelerate Software Deployment and System Diagnostics]&#039;&#039;&#039; by Chase Fearing, Test Engineer, Sub-Zero Group INC.&lt;br /&gt;
&lt;br /&gt;
===Academic Track===&lt;br /&gt;
*&#039;&#039;&#039;Tuesday, May 21&amp;lt;sup&amp;gt;st&amp;lt;/sup&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/2nYP1GpvzI Microwave Lab Course at the University of Colorado Boulder]&#039;&#039;&#039; by Taylor Barton, Professor, University of Colorado Boulder&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/wcSYsB91De Rock On! Using Record Players and LabVIEW to Teach PID Control]&#039;&#039;&#039; by Eric Stach, Research and Development Engineer, Duke University&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/y5MlIRCtqp Keynote: Endeavor to Transform Traditional Engineering Education]&#039;&#039;&#039; by Brad Rowland, ENDEAVOR, Oklahoma State University and Travis Escoffery, Mechatronics Product Marketing, National Instruments&lt;br /&gt;
*&#039;&#039;&#039;Wednesday, May 22&amp;lt;sup&amp;gt;nd&amp;lt;/sup&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/n6qMmuNp8r The Reconfigurable Radio Network Platform]&#039;&#039;&#039; by Torbjrn Ekman, Professor, Norwegian University of Science and Technology&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/Z2XrnWRrlA From Research to Industry: High-Speed Synchrophasors for Smart Grids]&#039;&#039;&#039; by Paolo Romano, CEO, Zaphiro Technologies&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/4l22bQQ9Gr Save Onboarding Costs Through an Industry-University Partnership]&#039;&#039;&#039; by Wolfgang Rominger, Verification &amp;amp; Validation Engineer, NXP Semiconductor Austria and Thomas Messner, Lecturer, Researcher, FH JOANNEUM&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/EBrGRParTe LabVIEW-Based Internal Combustion Engine Control Using CompactRIO]&#039;&#039;&#039; by Matt Hall, Professor, UT&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/9NYUBTVhhQ Remote Labs for the Development of Engineering Skills]&#039;&#039;&#039; by Manuel E. Macias, Dr., Tecnologico de Monterrey&lt;br /&gt;
*&#039;&#039;&#039;Thursday, May 23&amp;lt;sup&amp;gt;rd&amp;lt;/sup&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/gXQAR9sFob Multi-User MIMO Sounding Platform for High-Dynamic V2X Channels]&#039;&#039;&#039; by Daniel Stanko, Fraunhofer Institute for Integrated Circuits IIS and Carsten Andrich, M.Sc., Fraunhofer Institute for Integrated Circuits IIS&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/mFeCXHpW93 How NI Technology supports Remote Labs in Engineering Education]&#039;&#039;&#039; by Thomas Klinger, Professor, Carinthia University of Applied Sciences&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/Qw5GPRxFVB Developing an Energy Manager for Microgrids Based on LabVIEW]&#039;&#039;&#039; by Anton Petrochenkov, Head of Microprocessor Automation Units Depatment, Perm National Research Polytechnic University and Ilya Kiselev, Head of Education Projects, STEM INSTRUMENTS&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/dxyBqG9hX5 USRP-Based Vehicular Visible Light Communications (V-VLC)]&#039;&#039;&#039; by Bugra Turan, PhD Researcher, Koc University&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/KwxiOOQYYp Iteration on Student Projects: Beating Humans at Foosball]&#039;&#039;&#039; by Christophe Salzmann, Lecturer, Research Associate, Ecole polytechnique federale de Lausanne (EPFL)&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/kxafUmBElr The Internet of Production Cluster of Excellence]&#039;&#039;&#039; by Matthias Brockmann, Dr.-Ing., RWTH Aachen&lt;br /&gt;
===Aerospace and Defense Track===&lt;br /&gt;
*&#039;&#039;&#039;Tuesday, May 21&amp;lt;sup&amp;gt;st&amp;lt;/sup&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/YDu8VhWqe5 The Big Daddy of Big Data: A Whirlwind of Data in Wind Tunnels]&#039;&#039;&#039; by Darren Schmidt, Chief Technology Officer, Viviota&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/FmNphnPlao Aerospace and Defense Keynote: Key Trends Driving the Industry]&#039;&#039;&#039; by Luke Schreier, Director of Automated Test Product Marketing in Test Systems, NI&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/PkyS4KUSUl Building a Real-Time Radar Target Simulator With PXI and LabVIEW in 3 Months]&#039;&#039;&#039; by Satya Gopal, Constelli; Avinash Chenreddy, Constelli; and Ravi Teja, Constelli&lt;br /&gt;
*&#039;&#039;&#039;Wednesday, May 22&amp;lt;sup&amp;gt;nd&amp;lt;/sup&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/xuNrmTz5sX Designing and Deploying SIGINT and Electronic Warfare Systems]&#039;&#039;&#039; by Lars Hedlund, Sales Manager, Novator Solutions and Henrik Ulfhielm, CEO, Novator Solutions AB&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/td2xJrnE23 The Ups and Downs of Moving a VNA From the Frequency Domain to the Time Domain]&#039;&#039;&#039; by Tom Sanders, Sr. Systems Engineering Manager, Hiller Measurements and Abhay Samant, Vice President of Engineering, Hiller Measurements&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/n8iPRPh07F VPX Technology Update and Test Challenges]&#039;&#039;&#039; by Ben Robinson, Aerospace, Defense, and Government Solutions Marketer, National Instruments&lt;br /&gt;
*&#039;&#039;&#039;Thursday, May 23&amp;lt;sup&amp;gt;rd&amp;lt;/sup&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/cp6zkXym3b Focus on the Mission With Open-Source Test Architectures]&#039;&#039;&#039; by Chris Bakker, CEO, SET Americas&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/1aJUhRbGos Rebuilding an Iron Bird With PXI and SLSC]&#039;&#039;&#039; by Andrew Heim, Staff Systems Engineer, Endigit and Shawn Walpole, Senior Systems Engineer, Endigit&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/57YW3pM8Yz An Effective Test Strategy is More Than a Killer HAL/MAL]&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/OCWhTpMImd Benefits of Model-Based Control and Real-Sim Switching in Electromechanical Test Rigs]&#039;&#039;&#039; by Matthew Eurich, President, Wineman Technology Inc. and Todd VanGilder, VP of Sales, Wineman Technology&lt;br /&gt;
&lt;br /&gt;
===Automotive Track===&lt;br /&gt;
*&#039;&#039;&#039;Tuesday, May 21&amp;lt;sup&amp;gt;st&amp;lt;/sup&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/JZVCrbCllq ADAS/AD Session Series Part 1: Test System Architecture for Massive Data and Sensor Emulation]&#039;&#039;&#039;&lt;br /&gt;
***&#039;&#039;&#039;Techniques for Performing High-Bandwidth In-Vehicle Data Logging in Autonomous Vehicles&#039;&#039;&#039; by Jeff Buterbaugh, Ph.D.&lt;br /&gt;
***&#039;&#039;&#039;One-Stop Test Solution for Autonomous Driving&#039;&#039;&#039; by Frank Heidemann and Michael Konrad&lt;br /&gt;
***&#039;&#039;&#039;Using Driving Scene Data to Meet Automatic Driving Simulation Test Challenges&#039;&#039;&#039; by Zhao Shuai&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/zq4P17nTlS Automotive Track Keynote: Test the Vehicles of Tomorrow]&#039;&#039;&#039; by Chad Chesney, Vice President and General Manager of Transportation Business, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/aZB2JsLqNL ADAS/AD Session Series Part 2: Virtual Test]&#039;&#039;&#039;&lt;br /&gt;
***&#039;&#039;&#039;Virtual Validation ADAS&#039;&#039;&#039; by Paul Borbely&lt;br /&gt;
***&#039;&#039;&#039;Driving Millions of Virtual Miles Overnight: Testing Autonomous Vehicle Software With Pure Simulation&#039;&#039;&#039; by Celite Milbrandt&lt;br /&gt;
*&#039;&#039;&#039;Wednesday, May 22&amp;lt;sup&amp;gt;nd&amp;lt;/sup&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/IBa1sNbMkr V2X Session Series: Research Testbed and Topics]&#039;&#039;&#039;&lt;br /&gt;
***&#039;&#039;&#039;Design and Testbed Evaluation of a Converged Sensing and Communication System for Autonomous Vehicles&#039;&#039;&#039; by Qixun Zhang&lt;br /&gt;
***&#039;&#039;&#039;V2X Emulator: A Smart Way to Test V2X&#039;&#039;&#039; by Karthikeyan Padmanaban&lt;br /&gt;
***&#039;&#039;&#039;Vehicle-to-X Test for Global Standards With the NI Platform&#039;&#039;&#039; by Gerd Schmitz&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/1EJMc8ZcRE EV Session Series Part 1: Battery Validation]&#039;&#039;&#039;&lt;br /&gt;
***&#039;&#039;&#039;Battery Validation Test&#039;&#039;&#039; by Ty Prather and Todd Walter&lt;br /&gt;
***&#039;&#039;&#039;A Platform-Oriented Approach to Electric Vehicle Test&#039;&#039;&#039; by Ty Prather and Chris Garratt&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/Shl0nV3h7Q EV Session Series Part 2: Embedded Software Test]&#039;&#039;&#039;&lt;br /&gt;
***&#039;&#039;&#039;Emulating EV Powertrains for HIL and System Integration&#039;&#039;&#039; by Ben Black&lt;br /&gt;
***&#039;&#039;&#039;Creating a High-Fidelity E-Motor Model for XiLS Using JMAG-RT&#039;&#039;&#039; by David Farnia&lt;br /&gt;
*&#039;&#039;&#039;Thursday, May 23&amp;lt;sup&amp;gt;rd&amp;lt;/sup&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/vSVpayzekI Hardware-in-the-Loop Test Session Series: SLSC and MathWorks Tools]&#039;&#039;&#039;&lt;br /&gt;
***&#039;&#039;&#039;Flexible HIL Design Using NI SLSC&#039;&#039;&#039; by Mikael Bedemo and Roger Johansson&lt;br /&gt;
***&#039;&#039;&#039;HIL and RCP Using MathWorks and NI Tools&#039;&#039;&#039; by Paul Barnard and Jeannie Falcon&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/I9KdtFB22F Automotive Communication Bus Session Series: AUTOSAR and Automotive Ethernet]&#039;&#039;&#039;&lt;br /&gt;
***&#039;&#039;&#039;Introducing the New Automotive Ethernet Interface&#039;&#039;&#039; by Aimee Xia&lt;br /&gt;
***&#039;&#039;&#039;AUTOSAR Restbus Simulation&#039;&#039;&#039; by Martin Widder and Andreas Stark&lt;br /&gt;
***&#039;&#039;&#039;AUTOSAR 4.3: Using LabVIEW for a Multiplatform Car Communication Network Framework&#039;&#039;&#039; by Thomas Irmen&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/9UtPbRIILo Best Practices for Data Management and Production Test]&#039;&#039;&#039;&lt;br /&gt;
***&#039;&#039;&#039;How Companies Save Millions by Managing Sensor Data&#039;&#039;&#039;by Barry Hutt&lt;br /&gt;
***&#039;&#039;&#039;2 Ways to Make the Most Out of Your Production Test Systems&#039;&#039;&#039; by Arturo Vargas and Salman Gopalani&lt;br /&gt;
&lt;br /&gt;
===Semiconductor Track===&lt;br /&gt;
*&#039;&#039;&#039;Tuesday, May 21&amp;lt;sup&amp;gt;st&amp;lt;/sup&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/F8U5dPIyte Improving the Semiconductor Design to Test Workflow]&#039;&#039;&#039; by George Zafiropoulos, VP Solutions Marketing, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/OQQoVnmDlA ON Semiconductor Takes a New Approach to Production Test]&#039;&#039;&#039; by Warren Latter, Staff Test Engineer, On Semi&lt;br /&gt;
*&#039;&#039;&#039;Wednesday, May 22&amp;lt;sup&amp;gt;nd&amp;lt;/sup&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/3paW3GWgRy Semiconductor Wafer Probe Test Solutions for mmWave Production]&#039;&#039;&#039; by Tim Cleary, Sr. Director of Marketing, FormFactor&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/O6YMxWakWU Challenges and Solutions for mmWave OTA Test]&#039;&#039;&#039; by Alejandro Buritica, Senior Product Marketing Manager, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/nRwrhPYrCo Key Considerations When Selecting Contactors for 5G and mmWave Semiconductor Devices]&#039;&#039;&#039; by John Chung, Manager, Johnstech&lt;br /&gt;
*&#039;&#039;&#039;Thursday, May 23&amp;lt;sup&amp;gt;rd&amp;lt;/sup&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/O87xAVgVAW Implementing the Latest DPD Models From Theory to Reality]&#039;&#039;&#039; by Andy Fenley, Senior Test Engineer, Qorvo&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/BlmAn16QN2 How to Succeed (and Fail) at Bridging Validation and Production Test]&#039;&#039;&#039; by John Bongaarts, Offering Manager - Semiconductor, National Instruments&lt;br /&gt;
**&#039;&#039;&#039;[https://event.crowdcompass.com/niweek2019/activity/vnpgHb1WtC 400 G Transceiver Test: High-Volume Manufacturing-Ready Solutions]&#039;&#039;&#039; by Bill Driver, Senior Product Manager, National Instruments; Ignazio Piacentini, Engineer, Ficontec; Kees Propstra, Sr Director of Product Marketing, multiLane Inc; and Andy Stevens, CEO, Coherent Solutions Ltd&lt;/div&gt;</summary>
		<author><name>JLMommy</name></author>
	</entry>
</feed>