Force a string indicator to scroll to the bottom

In LV Web UI Builder is there a way to force or programmatically scroll a string indicator to the bottom? 
I am building a virtual hyperterminal and I am writting a very large amount of data into a string control.  I have the vertical scroll bars turned on, but by default it just shows the information at the top.  I want to include all of the data so that the user can scroll back to see the history, but it would be nice if by default the scroll bar would stay at the bottom.

I just wanted to confirm there is no way currently to force a string indicator to scroll to the bottom. I will note this down as a product suggestion for the Web UI Builder team.
Vivek Nath
National Instruments
Applications Engineer
Machine Vision

Similar Messages

  • I want to take a series of hex characters in a string control and produce an HDLC string indicator for example if the data string control is 3F27 then the HDLC string indicator is 7E003F2700B57E

    I want to take a series of hex characters in a string control and produce an HDLC string indicator for example if the data string control is 3F27 then the HDLC string indicator is 7E003F2700B57E

    "thanks for your help "
    Does that mean you figured it out already?
    If not, see this thread for some HDLC related code.
    http://forums.ni.com/ni/board/message?board.id=170&message.id=146859&query.id=3388#M146859
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • Why the vertical scrollbar bar is automatically scrolled to the bottom pos.

    I created a JScrollpane to contain a JTabbedPane. The JTabbedPane has two JPanel and each of them has a number of GUI components such as JCheckbox and JTextField. They have different size because their GUI components are different. The 2nd panel is about twice the size of the first panel.
    When the JScrollpane is shown, its vertical scroll bar is automatically scrolled to the bottom position. However, it is the first panel that is initially visible to the user. So, the user will see no GUI components of the first panel because the auto scrolling of the vertical scroll bar.
    Can anyone tell me how to disable the auto scrolling?
    I just want to let the scrollbar knob stay at the top so that the GUI components of the first panel (the smaller one) can be seen initially!

    Works fine for me:
    import javax.swing.*;
    import java.awt.*;
    public class TabbedPaneScroll extends JFrame
         private JTabbedPane tabbedPane;
         public TabbedPaneScroll()
              tabbedPane = new JTabbedPane();
              tabbedPane.setPreferredSize( new Dimension(300, 200) );
              getContentPane().add(tabbedPane);
              addNewTab( 10 );
              addNewTab( 5 );
              addNewTab( 20 );
         private void addNewTab(int fields)
              JPanel panel = new JPanel();
              panel.setLayout( new GridLayout(0, 1) );
              for (int i = 0; i < fields; i++)
                   panel.add( new JTextField("" + i) );
              JScrollPane scrollPane = new JScrollPane( panel );
              tabbedPane.add(scrollPane, "" + fields);
         public static void main(String args[])
              TabbedPaneScroll frame = new TabbedPaneScroll();
              frame.setDefaultCloseOperation( EXIT_ON_CLOSE );
              frame.pack();
              frame.setLocationRelativeTo( null );
              frame.setVisible(true);
    }If you need further help then you need to create a [url http://www.physci.org/codes/sscce.jsp]Short, Self Contained, Compilable and Executable, Example Program that demonstrates the incorrect behaviour, because I can't guess exactly what you are doing based on the information provided.
    And don't forget to use the [url http://forum.java.sun.com/help.jspa?sec=formatting]Code Formatting Tags so the code retains its original formatting.

  • Can't Scroll To The Bottom Of The Page

    I’ve had an issue pop up that I need help with in trying to remedy. I have developed the following page to work on IE 7 & 8, Safari, Chrome, Opera, and Firefox.......
    Totten Insurance Group Products Page
    ...... it was discussed, critiqued, and developed over several months by an entire team of people who saw several different designs and concepts that I presented to them and it works fine on all browsers, unless you make a menu selection and navigate away from this page, and then go back to this page.
    Give it a try, you'll see what I mean. For example, if you scroll over "Commercial Casualty" and selection "Airside Liability" from the list, and then go back, you won't be able to scroll to the bottom of the Commercial Casualty menu. It keeps jumping up and won't allow you to see the bottom of the menu(s), unless you refresh the page.
    Any suggestions on how to remedy this so users don't have to refresh the page?
    Aaryn

    Try hitting '''F7'''. You probably inadvertently activated Caret browsing. <br />
    http://kb.mozillazine.org/Accessibility.browsewithcaret

  • Space appears after text when you scroll to the bottom

    i am a newbie flash designer. a client has asked me to make modifications in a flash file used on his website. it is flash 8 actionscript. i am currently working on the same and would appreciate your help. the client has given me 'divisions.swf' file which i decompiled using sothink decompiler 4.5 build 90120 to '~divisions original.fla'. the xml folder resides in the same folder as ~divisions original.fla. it contains divisions.xml. you can download these files at http://rapidshare.com/files/257100523/space_after_text_when_scroll_to_bottom.zip
    i discovered a problem - if you view 'divisions.swf' - when you click on 'retail visual solutions'and scroll to the bottom, you can see that there is no space after the text. the end of the text aligns with the end of the scrollbar. but when you click on eyesite, and scroll to the bottom, you can see that there is space after the text. the end of the text does not align with the end of the scrollbar.
    please help me to resolve this problem.
    my additional questions are:
    has the creator of the swf file used some unique scrollbar code or is this scrollbar provided in flash itself. in this case, i can read a tutorial to understand it better.
    i have given 'is correct - no space at bottom of text.jpg' and 'is incorrect - space at bottom of text.jpg' to further explain my query.
    please tell me if i have explained my problem properly or further clarifications are needed.

    Try changing the code in frame 16 to be:
    stop ();
    var tString = xmlObj.Options.Option[2]._value;
    tString = tString.split("\r\n").join("\r").split("\n\r").join("\r");
    txt3.htmlText = tString;
    The scrollbar is a component that may or may not have been concocted by the original designer.  In any case it does utilize the FScrollbar feature of Flash.  You can read about it via the link below:
    http://www.adobe.com/support/flash/action_scripts/actionscript_dictionary/actionscript_dic tionary303.html.

  • Scrolling To The Bottom of a WebView

    I'm trying to figure out how to determine when the user has either scrolled to the bottom or the top of a web view. There doesn't seem to be a way to get the current scroll position within the webview. The ScrollEvent only shows the current delta, and there doesn't seem to be a way to determine how much of the document is not visible (clipped).
    Mark

    OK. My hack for this is ugly but it works:
    WebView view...
    Set<Node> nodes = view.lookupAll(".scroll-bar");
                    for (Node node : nodes) {
                        if (ScrollBar.class.isInstance(node)) {
                            ScrollBar scroll = (ScrollBar) node;
                            scrollPos = scroll.getValue();The view.lookupAll call is the only way to actually get a handle on the webview's scrollbars. Since there are a couple of components that actually use the scroll-bar style, you have to make sure that the node is a ScrollBar before you do anything with it.
    This shouldn't be necessary. Ideally the ScrollEvent class should give you handle on the ScrollBar, or give you the current scrolling position in relation to the max and min values. However, that doesn't seem to be the case. Prior to this, I tried putting the WebView in a ScrollPane, and a variety of other hacks, but every time I debugged through it, I would never get the right scroll position.

  • Firefox scrolls to the bottom of the page when I press the down arrow, instead of moving through the text.

    When I press the down arrow on Firefox, it scrolls to the bottom of the screen. I'm almost always just trying to move the vertical scroll bar down one or two picas (or however you measure it). This didn't used to happen until about 2009. Any suggested fixes?
    == This happened ==
    Every time Firefox opened
    == 2009

    Did you try hitting the '''F7''' key?

  • Why does my screen scroll to the bottom automatically after I've entered a new website on a new tab?

    When I'm on a website and click onto information or another site from this open window, a new tab is opened with the new info or website. However, while waiting for that site to load in the new tab, the site is automatically scrolled to the bottom before I can even read through it. Why is this happening and how can I stop it?

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • When you scroll to the bottom of the list of files in Finder, the left to right scrollbar doesn't let you click the last file and it covers the file for a while until it disappears. Is this a bug? How do I not make that happen?

    When you scroll to the bottom of the list of files in Finder, the left to right scrollbar doesn't let you click the last file and it covers the file for a while until it disappears. Is this a bug? How do I not make that happen?

    An odd workaround: click "Always" in System Preferences/General/Show scroll bars. The scroll bars will always show, but they won't cover your last file.
    See this other post: https://discussions.apple.com/message/20572471#20572471

  • Why is my safari scrolling to the bottom

    My Mac book continues to scroll to the bottom of every list, page and search engine. I have tried quitting safari, restarting the laptop. Please help.

    I have noticed that on this support forum.  Open a thread and it automatically scrolls to the last response.

  • How to know when I have scrolled to the bottom of my advancedDataGrid

    I need to know when I have scrolled to the bottom of my advancedDataGrid or when the last row appears on the screen. Is there anyway of getting this?
    I tried to do it by the verticalScrollPosition, but I don't know how to find the maxScrollPosition.
    Any help would be appreciated.

    Follow above instructions. Use the App Store to get applications for your computer via Apple. Apps for your iDevice are purchased through the iTunes Store. These are two different stores. Now you will have Numbers on your iPhone or iPad or iPod Touch, and then one for your Mac computer.
    The Dock icon for the App Store looks like this:

  • I have a version 7.0.4.  I can't connect to the server.  My capacity is 13.5  with 10.4 GB available.  Diagnostics and usage data, when scrolled to the bottom, tells me I have low memory.

    I have a version 7.0.4.  I can't connect to the server.  My capacity is 13.5  with 10.4 GB available.  Diagnostics and usage data, when scrolled to the bottom, tells me I have low memory.How cani fix this?

    Clear Safari, close all apps on the iPad and reboot. Then see if you can connect.
    Go to Settings>Safari>Clear Cookies and Data.
    Double tap the home button and you will see apps lined up going left to right across the screen. Swipe to get to each app then swipe "up" on the app preview thumbnail to close it.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.
    If you still can't connect to the internet, you need to do some more troubleshooting with the network connection, but report back with more details if that doesn't work and don't just repeat the question in the text box are that you have to describe the problem. That serves no purpose at all.

  • Uncontrolled scrolling to the bottom of the page

    Recently my pro has been scrolling to the bottom of any page opened, it usually happens (but not always) afer I plug something in to it and only goes away if I restart.
    I read some discussions of this happening to people before, but they all had dates that were years ago.
    any help would be great!

    Try a pram reset:
    Power dowm, power back up, and berore the start up chime press and hold, left shift,opyion,command,P,R.
    Cobtine you to hold until you hear the start up time 2 times.

  • Since I installed IOS 8.0.2 (was ok on IOS7),on my iPad 4 "photos" don't scroll properly, it freezes and staggers, it's really slow to scroll to the bottom of the page (in Album, Events From My IMac) it's very annoying!

    Since I installed IOS 8.0.2 (was ok on IOS7),on my iPad 4 "photos" don't scroll properly, it freezes and staggers, it's really slow to scroll to the bottom of the page (in Album, Events From My IMac) it's very annoying!

    I'm not sure, but I know it's not recommended to upgrade to iOS 8 on anything older than an iPhone 5. I only lost my music playlists and music that was on my phone, but that music is also on my iTunes, not the playlists though, and I don't want to go through ALL my iTunes library to fix it either... But it seems I don't have a choice right now.
    Whatever you do, do NOT upgrade to iCloud Drive, keep iCloud till OS X Yosemite comes out, if your computer is a Mac. I also just noticed that all my documents on my phone are gone from Pages, BUT if I go on the iCloud website they are still there. Hopefully it will all work itself out when I can update my macbook pro to OS X Yosemite.
    If you backed up your phone and all your purchases off your iPhone prior to trying to upgrade you should be fine... But I'm not even remotely sure.

  • My cursor keeps moving and everything scrolls to the bottom of the page or document

    My cursor sometimes starts moving and my documents and web pages scroll to the bottom. I have to restart the iMac to reset it. It works fine for a while, then comes back. Anyone seen this before? Is there some setting being changed?
    It has happened about 5 times so far in the last month.
    Any ideas.Thanks.

    Do both a Intel iMac SMC and PRAM resets at least 2x each, then repost after you have thoroughly tested.

Maybe you are looking for

  • Why does my iWeb Domain file not open in my laptop?

    I'm having trouble opening my iWeb domain files on a different computer (which I need to be be able to do). I've looked at the other relevant discussions re iWeb domain file editing issues . The problem seems to be (I think) that I have no Library fo

  • Bluetooth Headphones to listen to Sirius Radio through MacBook Pro

    I want to buy headphones so I can listen to Sirius through Safari wirelessly. Too much to ask? Please let me know if there are headphones out there that will allow this. I called Apple about 6 mos ago and they didn't help me much. I REALLY WANT TO BU

  • Upgrade from 4.6C to ECC 6

    Hi All, We are doing an upgrade from 4.6c to ECC 6.0. any relevant documents are invited.Can somebody help me with procedure is highly appreciated Documents can also be send to my mail id <u>[email protected]</u> Tanks aRs Message was edited by:     

  • Can't load data using DB Connect

    I'm trying to use DB connect to load data from an external source database into SAP BW.  Both databases are MSSQL.  I've followed the steps in the document, "Transferring Data with DB Connect".  The table in the source system has all CAPS for the tab

  • Captivate 6 Flickering

    Hi all, I use swf files as graphics in my courses because it displays as vector instead of pixels. This way, when courses are stretched to full screen, the quality does not deteriorate and the edges are sharp. Another reason for this is because I can