LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

text window

I am new Labview, although I have used Labwindows/CVI
in the past. This will probably seem like a silly question
but .. here goes.

How can I create a text window that will accept strings and
display them at the end of window, complete with CRs and LFs.
All I want to do is make a simple terminal that will disply
ASCII data sent to and received from an RS232 port.

I tried making a string control, but data always gets
overwritten whenever I enter a new string.

Thanks.

Ken
0 Kudos
Message 1 of 4
(2,312 Views)
Hi Ken,
You should take the present contents of the String Control and add the
new string to it using 'Concatonate Strings'. Write the result back to a
local variable of the String Control.
Regards,
Dave.
0 Kudos
Message 2 of 4
(2,312 Views)
I not too sure what is happening when your data gets overwritten. You should use the serial port example file(example file folder) and enter your data in the approriate string control.

http://labviewtraining.netfirms.com/
0 Kudos
Message 3 of 4
(2,312 Views)
This can be a bit tricky, probably the best way is to keep a seperate string control with key focus that the user types data in and then display it in a seperate indicator. The input string control can even be hidden off screen so that it appears as though you are typing directly into the indicator. This will take a little bit of coding to get it to act exactly how you want.

I've atached a very basic example that should at least get you started. It generates a random string every 30 seconds to simulate data coming back from the com port.

Good luck!
Brian
0 Kudos
Message 4 of 4
(2,312 Views)