<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Using LabView to serial interface my microscope how I make a user interface to make the stage move by pressing buttons? in LabVIEW</title>
    <link>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1162799#M508317</link>
    <description>&lt;P&gt;None of that makes any sense. Your serial write/read will still only execute once, you did not create an event for the 'Left' button, and that conversion to an array, search array, to number code is just silly. The concantanate string in the top true case is also silly. What do you think that does?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Look again at the examples. You want an event for each button and inside each event, you want the indicator and the VISA Write of the command that corresponds to that movement.&lt;/P&gt;</description>
    <pubDate>Mon, 28 Jun 2010 19:45:19 GMT</pubDate>
    <dc:creator>Dennis_Knutson</dc:creator>
    <dc:date>2010-06-28T19:45:19Z</dc:date>
    <item>
      <title>Using LabView to serial interface my microscope how I make a user interface to make the stage move by pressing buttons?</title>
      <link>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1162403#M508209</link>
      <description>&lt;DIV class="lia-component-body lia-message-body"&gt;
&lt;DIV class="lia-message-body-content"&gt;
&lt;P&gt;I have used LabView very little and am trying to write a  program to control a microscope. I want to be able to give it commands such  as to get the stage to move left, right, forward, back, and return to zero. I'm having trouble implementing the code into my block diagram. I've been reading LabView 8.6 tutorials for a couple of weeks and I'm still learning. What I know that&amp;nbsp; is that I need a event structure inside a while-loop for the user interface but I've been stuck.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for any help! If you need me to try and provide more  information please say so.&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Mon, 28 Jun 2010 16:10:30 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1162403#M508209</guid>
      <dc:creator>HumanCondition</dc:creator>
      <dc:date>2010-06-28T16:10:30Z</dc:date>
    </item>
    <item>
      <title>Re: Using LabView to serial interface my microscope how I make a user interface to make the stage move by pressing buttons?</title>
      <link>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1162655#M508279</link>
      <description>&lt;P&gt;You've got two major problems right now.&amp;nbsp; Your serial port code is all outside of the while loop, so it will only execute once.&amp;nbsp; Also, you have a race condition with your VISA writes.&amp;nbsp; Will the command get written first to the serial port or the carriage return?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The rest of the code is just too incomplete and a mashup to even comment on.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you know you need an event structure in a while loop, then why not post your best attempt at that, then we can comment on how to make that better.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jun 2010 18:41:33 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1162655#M508279</guid>
      <dc:creator>RavensFan</dc:creator>
      <dc:date>2010-06-28T18:41:33Z</dc:date>
    </item>
    <item>
      <title>Re: Using LabView to serial interface my microscope how I make a user interface to make the stage move by pressing buttons?</title>
      <link>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1162763#M508306</link>
      <description>&lt;P&gt;Alright so my serial port code should be inside a while loop  unfortunately it doesn't work whenever I enter a command to move the  stage. It sits there maybe I'm missing something.&lt;/P&gt;
&lt;P&gt;So let me give  you an overview to what happens in my code, so the configure serial port  is very crucial. The VISA Write writes the bytes to the port. The first  VISA Write takes the string to write command. I connected the second  VISA write to make it easier whenever I enter a command, the \r will  iniate the command as a whole. Example &lt;STRONG&gt;L\r &lt;/STRONG&gt;will move the stage to  Left once, ending up at VISA Read then closing. All of this found in  separate case structures.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now the user interface to  control the the movement of the microscope is one of my issues, making  several attempts to make it work yielded no results. My best work not the best but a attempt is  attached, also one of the things with this I'm having trouble with is getting the button to talk to the stage. On previous buttons I worked on I could press the button and light up an LED on the front panel, I thought the same principle would relate to the movement of the stage, no such luck.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope I cleared up some  misconceptions on my part, I appreciate your patience.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jun 2010 19:28:25 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1162763#M508306</guid>
      <dc:creator>HumanCondition</dc:creator>
      <dc:date>2010-06-28T19:28:25Z</dc:date>
    </item>
    <item>
      <title>Re: Using LabView to serial interface my microscope how I make a user interface to make the stage move by pressing buttons?</title>
      <link>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1162781#M508313</link>
      <description>&lt;P&gt;In your Write case, you have two separate write funtions, one for the command and one for \r.&amp;nbsp; They both run in parallel.&amp;nbsp; Which one will run first?&amp;nbsp; Will it be cmd then \r, or will it be \r then cmd.&amp;nbsp; This is probably why it isn't working.&amp;nbsp; You don't need two write functions.&amp;nbsp; Use Concatenate String function to combine your command then \r into one string.&amp;nbsp; Use one write function.&amp;nbsp; This will send the proper sequence of cmd\r.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What is your bottom loop supposed to do?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jun 2010 19:36:19 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1162781#M508313</guid>
      <dc:creator>tbob</dc:creator>
      <dc:date>2010-06-28T19:36:19Z</dc:date>
    </item>
    <item>
      <title>Re: Using LabView to serial interface my microscope how I make a user interface to make the stage move by pressing buttons?</title>
      <link>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1162799#M508317</link>
      <description>&lt;P&gt;None of that makes any sense. Your serial write/read will still only execute once, you did not create an event for the 'Left' button, and that conversion to an array, search array, to number code is just silly. The concantanate string in the top true case is also silly. What do you think that does?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Look again at the examples. You want an event for each button and inside each event, you want the indicator and the VISA Write of the command that corresponds to that movement.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jun 2010 19:45:19 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1162799#M508317</guid>
      <dc:creator>Dennis_Knutson</dc:creator>
      <dc:date>2010-06-28T19:45:19Z</dc:date>
    </item>
    <item>
      <title>Re: Using LabView to serial interface my microscope how I make a user interface to make the stage move by pressing buttons?</title>
      <link>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1162801#M508318</link>
      <description>&lt;P&gt;In the Write case I have them both running parallel you would enter the cmd and then \r would be attached to it. Alright I understand I fixed that it less clutter now.&lt;/P&gt;
&lt;P&gt;The bottom loop I'm attempting to interface that so I can press a button such as left to move the stage left. Yet I have not yet figured out how to incorporate that into the program. I need some help on that part, I get the basics on it but I'm at a loss.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jun 2010 19:46:16 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1162801#M508318</guid>
      <dc:creator>HumanCondition</dc:creator>
      <dc:date>2010-06-28T19:46:16Z</dc:date>
    </item>
    <item>
      <title>Re: Using LabView to serial interface my microscope how I make a user interface to make the stage move by pressing buttons?</title>
      <link>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1162813#M508322</link>
      <description>&lt;P&gt;Now you have NO event structure. Try to do what I suggested with the VISA Write inside an event. Do NOT place any code outside the event structure like you had before.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jun 2010 19:54:51 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1162813#M508322</guid>
      <dc:creator>Dennis_Knutson</dc:creator>
      <dc:date>2010-06-28T19:54:51Z</dc:date>
    </item>
    <item>
      <title>Re: Using LabView to serial interface my microscope how I make a user interface to make the stage move by pressing buttons?</title>
      <link>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1162815#M508323</link>
      <description>&lt;P&gt;You need an event structure.&amp;nbsp; Put a button on the front panel to allow the user to first enter a command, like L to move left, then the user would press the button (OK button) and the event would fire.&amp;nbsp; Put your serial write code inside the OK Button Value Change event.&amp;nbsp; So after entering a command, the user presses OK and the command is written.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I will create a small example for you.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jun 2010 19:55:41 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1162815#M508323</guid>
      <dc:creator>tbob</dc:creator>
      <dc:date>2010-06-28T19:55:41Z</dc:date>
    </item>
    <item>
      <title>Re: Using LabView to serial interface my microscope how I make a user interface to make the stage move by pressing buttons?</title>
      <link>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1162821#M508325</link>
      <description>&lt;P&gt;Alright so now I need to improve it previous suggestion was to put the all the code into a while loop. Previously I was doing work, the stage was moving and the commands were being taken. The concantanate string has been fixed. Building off this LV example is what I've been working on, yielding good results but no luck on needing the stage to move by pressing a button is part of my problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ok that advice is sound I'll take that and let you guys know. I appreciate the help.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jun 2010 20:03:06 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1162821#M508325</guid>
      <dc:creator>HumanCondition</dc:creator>
      <dc:date>2010-06-28T20:03:06Z</dc:date>
    </item>
    <item>
      <title>Re: Using LabView to serial interface my microscope how I make a user interface to make the stage move by pressing buttons?</title>
      <link>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1162845#M508331</link>
      <description>&lt;P&gt;Look at the attached vi.&amp;nbsp; It uses an Event Structure.&amp;nbsp; Study it.&amp;nbsp; When the user presses the OK button, the OK Value Change event runs and the command is sent to the serial port, followed by a serial read.&amp;nbsp; Then the loop iterates again, and since no event is happening, the Timeout event runs.&amp;nbsp; No code here so nothing happens over and over again until the user presses a button.&amp;nbsp; The user can enter a new command then press OK.&amp;nbsp; Or the user can press the Stop button and the Stop Value Change event will run.&amp;nbsp; This will stop the loop.&amp;nbsp; After the loop stops, the VISA session is closed.&amp;nbsp; The shift registers for error and session handle are highly desired to transfer the data from each loop iteration to the next.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jun 2010 20:12:39 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1162845#M508331</guid>
      <dc:creator>tbob</dc:creator>
      <dc:date>2010-06-28T20:12:39Z</dc:date>
    </item>
    <item>
      <title>Re: Using LabView to serial interface my microscope how I make a user interface to make the stage move by pressing buttons?</title>
      <link>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1162859#M508336</link>
      <description>&lt;P&gt;I'm sorry to trouble you but I have LV 8.6 is there a way you could create a backwards compatible Vi? Please and Thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jun 2010 20:22:54 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1162859#M508336</guid>
      <dc:creator>HumanCondition</dc:creator>
      <dc:date>2010-06-28T20:22:54Z</dc:date>
    </item>
    <item>
      <title>Re: Using LabView to serial interface my microscope how I make a user interface to make the stage move by pressing buttons?</title>
      <link>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1162865#M508338</link>
      <description>&lt;P&gt;I can do that:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jun 2010 20:25:26 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1162865#M508338</guid>
      <dc:creator>tbob</dc:creator>
      <dc:date>2010-06-28T20:25:26Z</dc:date>
    </item>
    <item>
      <title>Re: Using LabView to serial interface my microscope how I make a user interface to make the stage move by pressing buttons?</title>
      <link>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1168043#M509455</link>
      <description>&lt;P&gt;Sweetness worked out flawlessly. Thank you tbob.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Alright now, I had a question on how on the same project, but now I'm attempting to have an indicator to report the position of the stage on my microscope in the x,y,and z axis. I want it to automatically show up instead of pressing a button. Just whenever I have the program on it should report the position, when I move the stage by command, or by button, or by joystick. Basically attempting to set it it up where its on&amp;nbsp; at the same time the microscope is.&lt;/P&gt;
&lt;P&gt;The while statement is the best I came up with. If you have any hints you can give me that would help. Please and Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jul 2010 20:42:18 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1168043#M509455</guid>
      <dc:creator>HumanCondition</dc:creator>
      <dc:date>2010-07-01T20:42:18Z</dc:date>
    </item>
    <item>
      <title>Re: Using LabView to serial interface my microscope how I make a user interface to make the stage move by pressing buttons?</title>
      <link>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1168103#M509467</link>
      <description>&lt;P&gt;Ok, I'm close to figuring this out I think I have it now where I'm able to get numbers x,y,z everytime I move the stage but now I need to convert the string to numeric. To be shown on the numeric indicators. How can I do this?&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jul 2010 21:33:44 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1168103#M509467</guid>
      <dc:creator>HumanCondition</dc:creator>
      <dc:date>2010-07-01T21:33:44Z</dc:date>
    </item>
    <item>
      <title>Re: Using LabView to serial interface my microscope how I make a user interface to make the stage move by pressing buttons?</title>
      <link>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1168109#M509468</link>
      <description>&lt;P&gt;How is the value of X, Y, and Z changed?&amp;nbsp; Maybe by the buttons labelled Back Left, Backward, etc..?&amp;nbsp; How much does it change by?&amp;nbsp; You will have to have 3 shift registers, one for X, one for Y, and one for Z to hold their current value.&amp;nbsp; When the axis is changed, update the value and pass the new value to the shift register.&amp;nbsp; The best place to do this is in the event structure.&amp;nbsp; This is where the movements are captured.&amp;nbsp; As an alternative to 3 shift registers, you could bundle the 3 axes into one cluster and use one shift register for the cluster.&amp;nbsp; Then when one axis changes, unbundle that one element, change it, then rebundle.\&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;On your event, X-AXIS, Y_AXIS, Z_AXIS Value Change, since the values will be changed programatically (not by a user pressing an x-axis button) you will have to change the event to value(signaling).&amp;nbsp; Use value(signaling) whenever the program changes the value rather than a user changing a control value by clicking on a control or button.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jul 2010 21:35:43 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1168109#M509468</guid>
      <dc:creator>tbob</dc:creator>
      <dc:date>2010-07-01T21:35:43Z</dc:date>
    </item>
    <item>
      <title>Re: Using LabView to serial interface my microscope how I make a user interface to make the stage move by pressing buttons?</title>
      <link>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1168131#M509473</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;HR /&gt;&lt;a href="https://forums.ni.com/t5/user/viewprofilepage/user-id/154455"&gt;@HumanCondition&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Ok, I'm close to figuring this out I think I have it now where I'm able to get numbers x,y,z everytime I move the stage but now I need to convert the string to numeric. To be shown on the numeric indicators. How can I do this?&lt;/P&gt;
&lt;HR /&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Look in the palette called String - String/Number Conversion.&amp;nbsp; There are lots of conversion functions there.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jul 2010 21:45:54 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1168131#M509473</guid>
      <dc:creator>tbob</dc:creator>
      <dc:date>2010-07-01T21:45:54Z</dc:date>
    </item>
    <item>
      <title>Re: Using LabView to serial interface my microscope how I make a user interface to make the stage move by pressing buttons?</title>
      <link>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1168957#M509621</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;
&lt;P&gt;tbob wrote:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;On your event, X-AXIS, Y_AXIS, Z_AXIS Value Change, since the values  will be changed programatically (not by a user pressing an x-axis  button) you will have to change the event to value(signaling).&amp;nbsp; Use  value(signaling) whenever the program changes the value rather than a  user changing a control value by clicking on a control or button.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;
&lt;P&gt;On my event structure value(signaling) isn't an option it might be because I'm on LV 8.6. The problem is solved now, but not the way it should be I'm interested in the value(signaling) but it isn't an option should I just stay on what I have or find a better way?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jul 2010 16:09:47 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1168957#M509621</guid>
      <dc:creator>HumanCondition</dc:creator>
      <dc:date>2010-07-02T16:09:47Z</dc:date>
    </item>
    <item>
      <title>Re: Using LabView to serial interface my microscope how I make a user interface to make the stage move by pressing buttons?</title>
      <link>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1168979#M509628</link>
      <description>&lt;P&gt;No.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Value(Signalling) is the property node you write to of a control or indicator (as opposed to just Value, or writing to the control's local variable) in order to have the Value Change Event of that control get fired.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jul 2010 16:20:18 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1168979#M509628</guid>
      <dc:creator>RavensFan</dc:creator>
      <dc:date>2010-07-02T16:20:18Z</dc:date>
    </item>
    <item>
      <title>Re: Using LabView to serial interface my microscope how I make a user interface to make the stage move by pressing buttons?</title>
      <link>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1169119#M509664</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;HR /&gt;@Ravens Fan wrote:&lt;BR /&gt;
&lt;P&gt;No.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Value(Signalling) is the property node you write to of a control or indicator (as opposed to just Value, or writing to the control's local variable) in order to have the Value Change Event of that control get fired.&lt;/P&gt;
&lt;HR /&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I didn't explain it very well.&amp;nbsp; Brain fart moment.&amp;nbsp; Thanx for clearing it up RF.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jul 2010 18:01:08 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Using-LabView-to-serial-interface-my-microscope-how-I-make-a/m-p/1169119#M509664</guid>
      <dc:creator>tbob</dc:creator>
      <dc:date>2010-07-02T18:01:08Z</dc:date>
    </item>
  </channel>
</rss>

