JTextField data reading problem

Hello,
I am attempting to construct a gui in which I parse data from a file into 3 different arrays, one is pure numbers the other two are strings of variables describing the data for a specific index of the data in the first array.
I pass the raw data (all the numbers) to a plotting function, which plots 3 graphs at a time and is placed in a JLayeredPane. Over the plot I have a bar (place marker) with an associated mouselistener which calculates which index of the raw data array the bar is over as the bar is dragged over the plot.
Beside the plots are two Jpanels that contain the data of the other two arrays. I only want to show the variable name and the data associated with index that is calculated from the bar/mouselistener described above.
I designed this using JTextFields. I did not want to use JTable, because I only want to show the one column of data at a time.
My problem is when I try to create an array of JTextFields, only a small portion of the data is passed. I want to use to 80 variables, but will only accept 12.
for(int m=0;m<dvnum+1;m++){
     System.out.println("diagvar["+m+"][0]= "+diagvar[m][0]);
for(int m=1;m<dvnum+1;m++){
     diaglabelField[m-1] = new JTextField(diagvar[m][0]);
     System.out.println("diaglabelfield= "+diagvar[m][0]);
     diagconfidenceField[m-1] = new JTextField(diagvar[m][1]);
     diagfieldPane.add(diaglabelField[m-1]);
     diagfieldPane.add(diagconfidenceField[m-1]);
}where dvnum is the number of variables. The output from above gives a list of all the variable names, then a list of only those that were accepted into the JTextFields.
Is there a limit as to how many JTextFields I can use? Or an easier way of doing this? If I use a smaller data set (under 15) it works, over that it only accepts 12 or so.
I was thinking JTable could be used, but I would have to pass and build a JTable every time I wanted to look at a different data set for the new index.

That's a long post, but I couldn't figure out from it just what your problem is. I'm guessing that your panel with the JTextFields only has room for 12 of them, and it doesn't scroll to show the others (from 13 to 80).
If I'm right, I would suggest you don't use a bunch of JTextFields to show this data. And since there's only one column of data, you don't really need a JTable either. A JList would work just fine, assuming you don't need to update the data. Put it in a JScrollPane and you'll be able to use as many entries as you like.

Similar Messages

  • Data reading problem with Read LVM

    Hi
    I am acquiring the pressure signals with 6 channels using LabView 7.1. The sampling rate is set at 10kHz. I am saving the data using Write LVM.  For post-processing of the data I am using Read LVM function to replay the data. When I saved the data and reopened it using Read LVM, the waveform was different as compared to when I was acquring the data.  Both images are shown in online_data.bmp and image_by_read_lvm.bmp. The Read LVM vi has also been attached. The write LVM file size was around 15MB.
    I think the problem is with the rate at which read lvm is reading the data.
    Any help/suggestions will be appreciated.
    Thanks
    Pramod
    Attachments:
    Read_LVM1.vi ‏75 KB
    online_data.JPG ‏127 KB
    image_by_read_LVM.JPG ‏145 KB

    Hi Mike
    Thanks for your reply.
    Please find the write LVM file as an attachment.
    As the write LVM file size is 5 MB, it is
    not getting attached.  Therefore I am attaching the vi code. If you need the write lvm file then can you please give your e-mail id? I need the smooth thin lined waveform instead of
    thick waveform. Please let me know if the lvm file is required.
    Pramod
    Attachments:
    data_acquisition2.vi ‏1028 KB

  • Data reading problem

    hi,
    i have two tables zfm_handy and pa0002
    field in zfm_handy is pernr(personal number length 8 numeric )
    pa002 is vorna nachn
    i want to display the data for each pernr correspondig vorna nachn
    in my pa0002 table has 990 records (vorna nachn) but i m getting output only 10 records
    like this   00009856
                  00003544
                  00006585
    but all the 980 has data like this 56760000
                                                    65830000
                                                    65750000
    plz send the code for this logic how to get all the 990 records.
    i m getting all the pernr but i m not getting vorna nachn because of above problem

    the pernrs in both the tables should match.. only then you will get all the records.. It is obvious that the pernrs in the custom table are not in the std format that is NUMC of length 8. You either have to modify the custom table or manipulate the dat before you select from PA0002.
    ~Suresh

  • Report 6i Arabic Date alignment problem in Windows 7

    Hi
    We have 6i Forms and Report and wanna run in windows 7. But we found arabic Date disaplay problem in reports. As you know arabic writting from right. But date display like 21/10/1431 and I wanna like 1431/10//21.
    I tried from regional setting and change date format from report. but this is problem from system it self,
    not accept right alignment. Even I install left to right patch (KB979643-x86).
    Please Help
    Thanks

    Like others have said you need to run the bootcamp installer to install the drivers.
    The time issue was a constant annoyance rebooting with OSX and my old XP bootcamp setup but it's gone with Windows 7 once you set your time to UTC format in the date and time properties instead of local time which OSX uses and XP couldn't support.

  • AS3 Data Coercion Problem

    AS3 Data Coercion Problem
    From PHP server RemoteObject AMF3 serialization, I receive a
    photo object per below into my Flex client:
    package WPhoto {
    [Bindable]
    [RemoteClass(alias="WPhoto.PhotoObj")]
    public class PhotoObj {
    public var photo:*;
    public var photoWidth:int;
    public var photoHeight:int;
    The above 'photo' property String of a one-byte (UTF-8)
    '.jpg' photo data. Due to PHP's rather limited set of primitive
    data types this is the best I can do per returning photo data to
    the Flex client. (Extreme tries at PHP data structure chicanery
    hasn't worked for me.)
    I need photo property in a DisplayObject format such that I
    can render photo as a child of my App's DisplayObject. The AS3
    Loader class performs this task, when sourced from an AS3
    ByteArray.
    o Loader.loadBytes(bytes:ByteArray, context:LoaderContext =
    null):void
    Loads from binary data stored in a ByteArray object.
    My dilemma is "how to" convert a UTF-8 string of photo data
    into a ByteArray. I've been through the ByteArray.writeXXX() class
    methods without finding anything close to meeting my requirements.
    AS3 String readers expect UTF-16 data, so reading AS3 string
    reading is not a solution. AS3 has no Byte data type, accordingly
    reading my photo data UTF-8 string with a "for loop" into a AS3
    UTF-16 string, or whatever, is not viable. Is there a single-byte
    reader to 'whatever' writer I'm not aware of?
    If I was sourcing photos from a Java based server, my photo
    rendering dilemma would be over. The server to client packets would
    be "java.lang.Byte[]" => flash.utils.ByteArray and voilà we
    could easily and directly render photos via the Loader.loadBytes()
    method.
    I can tentatively extend one of the AS3 ByteArray class write
    methods if I thought there was a way to read UTF-8 streams. Before
    digging down into the ByteArray class on a feasibility basis, I
    thought it first best to ask around the experts per 1) can
    ByteArray be extended for my requirement, or 2) is there a better
    way to approach this, which I have not thought of?
    Pete Mackie
    Seaquest Software
    Adobe Community Expert - Flex

    Hi,
    Thanks for the quick reply.
    I simply don't get it.
    I have a root class which adds two different children of
    different classes. One child dispatched an event, and the other is
    supposed to get it. Both of the are now supposed to be in the
    instance hirrarchy, or am I wrong?
    Logically, I'd figure this should work smooth and simple
    without any need for any looping or such.
    Right now, the root class can recieve the event dispatched by
    child1, but I can't make child2 recieve any event dispatched by
    either the root or child1.
    I'd appreciate if you could show me the way...
    thanks again,
    EZ42

  • Date Format problem...

    Hi users,
    Forte version : 2.e.2 and ForteWebSDK
    Datacase : Oracle
    We have a problem with a simple HTML text field which acccepts
    a date. When we try to update the record with some date, the following
    exception occurs:
    24-Jun-1998 04:32:28 : XV01086 : Execute failed for SQL statement in
    project Rap
    tServices, class RaptSqlMethods, method updateActivity, methodId 104,
    line 51, e
    rror from database is:
    ORA-01830: date format picture ends before converting entire input
    string
    The Oracle manual says that the above exception occurs when there are
    some extra characters on that field, which is not the case. In fact,
    we raise our own exception for the cases like : o1-Apr-1997,
    01-apr-97 etc. The correct format is 01-apr-1998.
    Same date soemtimes is added to the database successfully. Waht I mean
    to say that the exception deos not occur consistently.
    We just conevert the String taken from the HTML field into a Forte
    DateTimeData Object and send it to database. May be, the conversion
    part is causing the problem. But, once again the problem is not
    consistent.
    Any ideas in this will be appreciated.
    Thanx in advance
    -Rajeev Talwar
    Get Your Private, Free Email at http://www.hotmail.com
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    We had the same problem when our application first went live. The
    default date format for our Oracle database is 'dd-mmm-yy' without the
    time component. The default format for datatype DateTimeData is
    'dd-mmm-yyyy hh:mm:ss'. Since we did not want to change the default date
    format for the Database, we included in our service partitions an Alter
    Session statement to change the NLS_Date_format attribute in Oracle to
    conform to the Forte DateTimeData format. It worked.
    Kam Chow
    Mazda Australia
    -----Original Message-----
    From: Gary F Giger [mailto:[email protected]]
    Sent: Thursday, June 25, 1998 4:11 AM
    To: Rajeev Talwar
    Cc: [email protected]
    Subject: Re: Date Format problem...
    I was having the same problem a few weeks back when I would
    read/write
    dates to Oracle. I was using objects of type DateTimeData and I would
    occasionally get errors like you said you were. I found discovered my
    problem. Sometimes I would process a null date and would get an error.
    So to
    resolve this issue, I simply changes my objects of type DateTimeData to
    type
    DateTimeNullable. This enabled my Forte Application to handle regular
    dates
    as well as null dates. I have not gotten any oracle errors since then
    with
    regards to dates. Hope this helps.
    Rajeev Talwar wrote:
    Hi users,
    Forte version : 2.e.2 and ForteWebSDK
    Datacase : Oracle
    We have a problem with a simple HTML text field which acccepts
    a date. When we try to update the record with some date, the following
    exception occurs:
    24-Jun-1998 04:32:28 : XV01086 : Execute failed for SQL statement in
    project Rap
    tServices, class RaptSqlMethods, method updateActivity, methodId 104,
    line 51, e
    rror from database is:
    ORA-01830: date format picture ends before converting entire input
    string
    The Oracle manual says that the above exception occurs when there are
    some extra characters on that field, which is not the case. In fact,
    we raise our own exception for the cases like : o1-Apr-1997,
    01-apr-97 etc. The correct format is 01-apr-1998.
    Same date soemtimes is added to the database successfully. Waht I mean
    to say that the exception deos not occur consistently.
    We just conevert the String taken from the HTML field into a Forte
    DateTimeData Object and send it to database. May be, the conversion
    part is causing the problem. But, once again the problem is not
    consistent.
    Any ideas in this will be appreciated.
    Thanx in advance
    -Rajeev Talwar
    Get Your Private, Free Email at http://www.hotmail.com
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive<URL:http://pinehurst.sageit.com/listarchive/>
    Gary Giger
    Raytheon Systems Company
    300 Science Park Road
    State College, PA. 16804
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    This message has successfully passed virus checking.
    Mazda Australia takes every precaution to ensure email messages are virus free. For complete protection, you should virus test this message.
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • PHP MySQL data display problem

    I am having trouble getting data to display on my web page.In Dreamweaver CS3, I created a new page.
    Selected PHP as the type.
    Saved it.
    Connected a database and created a recordset (all using Dreamweavers menus. I did not write any code).
    NOTE: The database is on a remote server.
    The TEST button displayed the records from the recordset with no problem.
    On the new page, I then typed some text.
    Then dragged some fields from the Bindings tab to the page.
    I saved it and then went to preview it in my browser.
    The page comes up completely blank. Not even the text shows.
    I then saved the page as an HTML page.
    When I preview this in my browser, the text shows, but the fields and data do not.
    I then tried creating a dynamic table (again, using the Dreamweaver menus.).
    A similar thing happens, ie. If I save it as an HTML, the text shows and the column labels and border shows, but no data.
    Nothing shows if I save it as a PHP file.
    I can view the data online using files created by PHPMagic, so I know the data is there and retrievable.
    It is just in pages created in Dreamweaver that don’t work.
    What am I doing wrong?

    My web server supports PHP. I can disply PHP pages created by other software packages, just not the Dreamweaver ones.
    Frank
    Date: Thu, 4 Jun 2009 19:04:03 -0600
    From: [email protected]
    To: [email protected]
    Subject: PHP MySQL data display problem
    To view php pages - or pages with PHP code in them - in a browser, the page must be served up by a Web server that supports PHP. You can set up a testing server on your local machine for this purpose. Look for WAMP (Windows), MAMP (Mac), or XXAMP for some easily installed packages.
    Mark A. Boyd
    Keep-On-Learnin'
    This message was processed and edited by Jive.
    It shall not be considered an accurate representation of my words.
    It might not even have been intended as a reply to your message.
    >

  • Error : No data read for fiscal year 2006 (error  FDBL020)

    Hello !
    I have a problem in transaction FS10N, when i am trying do execute appear the error: No data read for fiscal year 2006 (error  FDBL020), i tried applying the note 302263 (deleting the attributes of programs)but the attributes has been deleted. Anybody know a solution ?
    Thank´s
    Claudenir

    hi,
    i mean to check, whether there are items posted in that fiscal year.
    Andreas

  • Create a new OSB domain and data source problems

    Hello,
    I noticed a problem while create a new OSB domain with Oracle Service Bus 10gR3 on Solaris 10 (intel-based).
    This domain is composed of two managed servers deployed on a cluster.
    I have configured the JMS reporting data sources to use an Oracle 10g (XE) database (driver Oracle Thin (non XA)) installed on a remote server.
    While trying to start my managed servers, the startup process of these managed servers failed due to a data source problem on "wlsbjmsrpDataSource" or "cgDataSource-nonXA".
    The workaround I found is to delete and recreate (through the WLS console) the data sources "wlsbjmsrpDataSource", "cgDataSource-nonXA" and "cgDataSource".
    In this situation, my managed servers can be started properly.
    Is it a known problem located on the configuration wizard?
    Thanks for your help.

    Hi
    For the answer.
    I fully understand that those datasources are default ones and are mainly related to JMS reporting.
    But my question was probably not well expressed.
    The problem I had is when the domain is created, the managed servers won't start due to problems related to theses datasources.
    The workaround I found is to delete and to create those datasources from the WLS console.
    In this situation, the managed servers are able to be started.
    I want to know if this is a known problem/limitation of OSB 10gR3 with Solaris 10 and Oracle 10g?
    Thanks for your help.

  • Date function problems with dates from core not recognized as dates

    Our core provides dates in two formats: YYYYDDD and MMDDYY (YYYYDDD for today [2/21/12] would be 2012052).  We have determined that Crystal Reports is not viewing them as dates, but rather numbers. If querying on just a specific date, no problem. But if I want to use a date function like DayOfWeek, then things don't work.
    I need a report to always provide yesterday's data - except on Monday, where it needs to look back at Friday.
    I tried a criteria of:
    if DayOfWeek(CurrentDate) = 1 then {DDMAST.DATOP7} = CurrentDate - 2 else
    if DayOfWeek(CurrentDate) = 2 then {DDMAST.DATOP7} = CurrentDate - 3 else
    {DDMAST.DATOP7} = CurrentDate -1
    {DDMAST.DATOP7} is the date field from our core.
    I tried this but got an error message of "A Number is Required Here" and it highlights the CurrentDate - 2.
    Since we believe that Crystal Report is not viewing our dates as dates - but viewing them as numbers, what do I need to do to correct this?  Someone suggested I'd need to extract each date portion (month, date, and year) and create variables to "build" a date that Crystal Reports would understand.  Any suggestions?

    Hi, 
    You're correct.  There appears to be two branches in this thread. 
    To address your issue, Crystal only recognizes actual date types, ie. Months, Days and Years.  Your serial date isn't a recognized date type so we have to: 
    1)  Determine which format your date field is
    2)  Convert your number to a date using the appropriate formatting. 
    I am assuming your dates will either be 6 (MMddyy) or 7 (yyyyddd) characters long.  If there are other patterns you'll need to determine that. 
    The problem I found is what does your date for today (March 6, 2012) look like in MMddyy format? 
    Any month before October would never have a leading 0 if your date is stored as a number.  So you should take that into account as well using my logic. 
    I added that into the logic by checking for a length of 5. 
    NumberVar Full := 030612;
    StringVar myDate;
    myDate := ToText (Full, 0, "", "");
    Select Length (myDate)
        Case 5: Date (2000 + ToNumber (myDate [4 to 5]), ToNumber (myDate [1]), ToNumber (myDate [2 to 3]))
        Case 6: Date (2000 + ToNumber (myDate [5 to 6]), ToNumber (myDate [1 to 2]), ToNumber (myDate [3 to 4]))
        Case 7: Date (ToNumber (myDate[1 to 4]), 1, 1) + (ToNumber (myDate [5 to 7]) - 1)
        Default: Date (0, 0, 0);
    If you edit the first line and change it to: 
    NumberVar Full := 2012066;
    You will also get today's date.

  • Hey, i have an iphone 4, and it is upto date, the problem is that my phone does not play any videos online except on facebook, all other videos do not play instead a crossed play sign appears on the video. Please help.

    Hey, i have an iphone 4, and it is upto date, the problem is that my phone does not play any videos online except on facebook, all other videos do not play instead a crossed play sign appears on the video. Please help.

    I watch YouTube videos on a regular basis - mostly with the YouTube app but also with Safari.
    Some YouTube videos are supported to be viewed on a computer only or with a Flash capable device, which is becoming few and far between since Adobe no longer supports Flash on any mobile platform.
    Sometimes I get this video cannot be played on this platform, but rarely.

  • Telnet read problem -- Telnet read back

    I am trying to use telnet to send TL1 command to my UUT and expect to read back measurement data.  I was able to read proper data once in a while but most of the time I read back the TL1 command that I sent.  I tried different read mode and timeout period but nothing seem to matter.  My vi was written in Labview 8.2.1 with Internet toolkit.  I read in the forum about some limitation of the telnet read problem of the vi from the internet toolkit,  Is there any better read driver around?
    Thanks,
    Patrick 

    Hey!  I have a few questions for you that should help us solve this problem.  First, have you tried out the telnet shipping example "Telnet Line Client.vi".  This will help us minimize programming errors, etc.  Also, what type of device are you trying to communicate with?  Are there other forms of communication available?  For example, does the device also have a serial port, GPIB Port, etc.?  Also, is it possible to write to the device using TCP/IP (This is what telnet is based on)?  Let me know the answers to these questions and I will be better equipped to help you out!!
    Thanks!
    Dan
    Daniel Eaton
    National Instruments
    Systems Engineering
    Embedded and Industrial Control

  • BEA-000449  Closing socket as no data read from it

    This error message is filling up the server log files. It looks like some network problem. How can I find the cause ? This does not create a functional problem, but I am sure there will be a performance problem. Also, since this message is filling up the logs rapidly, I cannot see my regular application debug statements.
    <Warning> <Socket> <myserver.mydomain.net> <my_managedserver_01> <[ACTIVE] ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1218554019557> <BEA-000449> <Closing socket as no data read from it during the configured idle timeout of 30 secs>
    The timeout of 30 seconds is the value set in Login Timeout in server tuning tab.
    Environment:
    WebLogic Portal 10.0 MP1 (The domain is a server domain, not portal domain)
    Red Hat linux 4
    Intel Xeon
    Message was edited by:
    prakashp

    In My Weblogic 11G, i am getting Warning msg in my log file saying Closing socket as no data read from it
    ####<Nov 2, 2010 12:10:53 AM IST> <Warning> <Socket> <TradeServer> <TradeServer> <[ACTIVE] ExecuteThread: '8' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1288636853607> <BEA-000449> <Closing socket as no data read from it on 95.66.7.15:58,089 during the configured idle timeout of 25 secs>
    ####<Nov 2, 2010 12:10:53 AM IST> <Warning> <Socket> <TradeServer> <TradeServer> <[ACTIVE] ExecuteThread: '8' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1288636853607> <BEA-000449> <Closing socket as no data read from it on 95.66.7.15:58,088 during the configured idle timeout of 25 secs>
    ####<Nov 2, 2010 12:21:37 AM IST> <Info> <JDBC> <TradeServer> <TradeServer> <[ACTIVE] ExecuteThread: '23' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1288637497701> <BEA-001128> <Connection for pool "IB_JDBC_Data_Source" closed.>
    I have follow the following step
    If you want to follow this solution. Go to Admin console -> Click on Domain->Configuration->Log Filters->create new Log filter.
    I added this line in expression "(MESSAGE !='Closing socket as no data read from it during the configured idle timeout of 5 secs')"
    Go to your server-(for each server you have to set it individually)->Logging->Advanced->Select this log filter for Standard Out or log file.
    this is not working in weblogic 11G, any one have the solution to stop this msg.

  • Date display problems

    Hello,
    I have notice some date display problems with browsers when visiting a Podcast page :
    https://itunes.apple.com/fr/podcast/euronews-no-comment/id193275779
    For exemples :
    8/45/13
    8/32/13
    4/49/13
    Date problems available on other podcasts :
    https://itunes.apple.com/fr/podcast/arret-sur-images-les-podcasts/id289722236?mt =2
    https://itunes.apple.com/fr/podcast/telezapping/id206252481?mt=2
    https://itunes.apple.com/fr/podcast/france-3-19-20-paris-ile-france/id285421036? mt=2
    Theses problems don't exist on iTunes.
    Who can fix it ?

    I checked three of them and see the same peculiarity. Only the web page version of the Store page has the errors. The first podcast you list has a minor error in the 'iTunes declaration'  but I wouldn't have expected it to affect the pubDate tag. The second doesn't give the day in that tag, and the third appears to be OK.
    I can only guess that it's a glitch of some sort in the Store software used to generate the web page. Only Apple can fix it. You could try the 'report a problem' link in the Store page in iTunes though I don't know how much notice they will take.

  • My data acquisition problem:noise and transducer rocking

    Thanks to Otis and Dan, I 've finally got DAQmx installed and run, But I still have some problems with my application:
    1>, before my transducer was connected, when I check my board with "traditional NI-DAQ devices test panels", the board acquired noise of-0.02to 0.03volts firts" and then the value dropped to "-0.004-0.005volts", but if I check it with" NI-DAQmx devices", the board sensed noise of" -0.02 to 0.03 volts", why inconsistent for the same board?
    2> when I check my board with my transducer turned-on( dispalcemnet transducer, need to push the handle to turn on), the reading is about"-0.3 to 0.2", this is the result without input signal. seems that "pushing down" the handle of the transducer rocking the tested surface and induced vibration of my tested surface.
    3> when i check my testing system with transducer turned on and with my signal input (by inducing vibration of the tested surface), my acquired data reading is only about"0.06 maximum",
    4> it seems my input signal is too little compared with the system noise or transducer induced vibration.
    5>the frequency domain analysis indicated that the noise frequency is wide with some three main peaks of frequencies higher than my expected signal frequency.
    Due to the previous reason or some other causes, my acquired data just did not show up any consistency.
    I want to know if there are any measures that I can take to get better testing results.
    thanks!

    Hi fenny,
    Are you using any signal conditioning on this device?  It looks
    like your signal is still pretty small.  If you have a small
    signal and a lot of noise then the data you are getting will be useless.
    It sounds like you are trying to do analog triggering.  Make sure
    that you are inserting the analog trigger line into APFI 0.  Try
    looking at this Example Program:  M Series: Analog Input Acquisition with an Analog Start Hardware Trigger
    Keep in mind that if you are trying to do analog triggering that you
    need a 625X or a 628X device.  If you don't have one of these
    devices. Then you will need to use a software analog trigger. 
    Essentially all that is would be to look at the values returned in a
    continuous acquisition, and once they go past a certain level, then you
    would begin displaying the data that you have acquired.
    Regards,
    Otis
    Training and Certification
    Product Support Engineer
    National Instruments

Maybe you are looking for