12-01-2011 07:35 AM
I've made some data logging; now I read from DB with block "NI_database". What I want is to show these data in one table...
My data output is 2D; For now I have just "data block" but is not OK (I need just one table, to see all data at once-or just last one wit automaticall scrolling)
Solved! Go to Solution.
12-01-2011 07:47 AM
You can place a Database variant to data with a 2D string-array as type input to get a 2D string array instead. It makes for nicer presentation.
/Y
12-01-2011 07:56 AM
Yes,yes I get this, but still is not automatically scrolling down(while new data coming into table...); I'm searching at properties for this, but not found;
12-01-2011 08:38 AM
Ah, you want to watch the last row? Then you'll need to use the Scroll Position property and set it to Infinity when an update occurs (or at regular intervals).
/Y
12-01-2011 08:51 AM
No I want to watch whole data as now; but aways refreshing last row, to see what's happening; now is "stuck" while i go manually with mouse to button.
12-01-2011 03:30 PM
The table is updated every time you perform your Select query, do you use a while loop or event structure?
/Y
12-01-2011 03:37 PM
I use while loop; You don't understand me; The table is refreshing OK, but after a lot of data, I must scroll down manually, I want that labview will scroll down automatically with new data...
12-02-2011 03:24 PM
Anyone else ??
12-02-2011 03:28 PM
You got the answer already with the scroll position property. Did you even try it?
12-02-2011 03:44 PM
Well I tried this, but I never use "property node"; Can you make little example, please?
Many thanks for your time