ListBox with visible horizontal scrolling

Hello

We all know that a listbox control comes with a default vertical scroll bar (which can be selected or deselected).

I have attached a vi that has the list box with visible horizontal scroll bar.

Now, I did my self by playing with custom control and I'm unable to reproduce the same since I forgot how I did it. has anuone tried before and if yes throw some light on this?

Guru

First use a "multi-column listbox" with visible horizontal scroll bar. Then replace you it with a simple "Listbox" and the property is preserved.

It's strange, but it works. I guess the simple "Listbox" is a mild form of listbox multicolumn with limited options...

Tags: NI Software

Similar Questions

  • Problem with setting "Horizontal scrolling with tilt wheel"

    All of a sudden, everytime I open a spreadsheet it acts as if I am pressing the arrow button to the right and the active cell moves to the right as quickly as possible.

    At the same time:
    1. my wireless Microsoft mouse leave with the scroll wheel.
    2. when I click a down arrow, the menu is displayed for a split second, then disappears.
    Any ideas what may have caused this?
    * original title - Excel-unstoppable to the right at the opening of automatic pagination

    1 only with Excel

    2 Microsoft 6000v2.0
    3. since Monday morning, when I opened a spreadsheet
    4. the system changes. I didn't touch anything.
    5. the keyboard is clear. It only happens in Excel.
    I managed to do stop by disabling "horizontal scrolling with tilt wheel" in the mouse properties. Absolutely, I know for a fact that nobody changed this setting, but it became somehow activated.
  • Can I use horizontal scroll to switch between tabs?

    I find it useful to switch between tabs with the side-scrolling my mouse wheel. Can I configure Firefox in this way?

    Apparently FireGestures doesn't support scrolling directly if you can't make it work. I have no local way to test it, because nobody doesn't know I have a mouse with a horizontal scrolling. FireGestures provides alternatives (I use the tab scrolling of line), however, and supports scripts , if you want to try to use the technical information provided by cor - el.

    One avenue would be to use the mouse like Logitech Setpoint or Microsoft Intellipoint software to set the scrolling to run the FF Ctrl + PgUp and Ctrl + PgDown hotkey combo. This would negate native scroll, however.

    You can leave your comments at https://input.mozilla.org/en-GB/feedback/ if you do not want to see this feature implemented. I think you're better of trying to get an add-on to do this though, as horizontal scrolling appears to remain a characteristic very niche.

  • Horizontal scrolling in the preview jerky / jumpy

    Hello community,

    I have a problem when I apply a horizontal scrolling.
    I create a page with a horizontal scrolling.

    But when I saw the page, scrolling is jumpy/choppy.

    It seems as if the objects (or all of the site) are jumping up and down really fast.

    Thank you very much!

    PS: I use the last version of Muse CC. My computer is an iMac with Mac Os X Yosemite.

    The problem is solved thanks to a very capable cat of Adobe service.

    I used the button on the top (the one next to the design) and that has created problems.

    Instead, I used the command + shift + e, which opened the preview in the browser directly.

    Now, there is no scrolling jumpy!

    Thank you!

  • problem with horizontal scroll bar

    Hi experts,

    I have two scroll bars in my form. The form is retrieving data from the database and showing 20 records at a time. But whenever I use my vertical scroll bar, horizontal scrollbar sometimes moves in the left corner of extream.

    The one you suggest please how can I fix this problem.

    Concerning
    Rajat

    Your scrollbars are window scroll bars? Or as I guess that the portrait is a block scroll bar and the horizontal is a canvas/window scroll bar.

    The horizontal scroll bar will move only if a current point of view gets the focus. Make sure that your home is not far jump to an item.

    Tony

  • Horizontal scrolling text change number field on the 6.0 devices

    Greetings,

    I'm trying to create a horizontal scrolling editable text field.  The general approach is to add an EditField to a HorizontalFieldManager who has the style bit HORIZONTAL_SCROLL.  It works very well on all devices up to 5.0.  However, I'm a problem on 6.0 devices.

    When the user tries to scroll right well that focused on this field, the text moves to the left and turns off visible region of the horizontal field manager.  This can also be reproduced when you tap the (torch device) and continue dragging to the left until it will disappear from the screen.

    Now, I understand that this happens because the edit field itself has a width of ~ infinite because its container Manager has scrolling enabled, but is not an acceptable user experience.

    I tried to limit the width for the edit field to the width of the text, but which caused exception argument not in conformity.  I tried a RichTextField with style hack USE_TEXT_WIDTH bit by directing the keyDown to setText field entries but have other problems.

    My remaining solution is to restrict the limit of characters for the width of the Manager, the text on the new line that I saw almost all others apply or write my own implementation of scroll.  The only exception is the address bar of the BlackBerry native browser application that seems to be a custom implementation.

    Reference:

    http://supportforums.BlackBerry.com/T5/Java-development/sample-code-scrollable-one-line-text-input-f...

    Any thoughts would be appreciated,

    Thank you.

    Thank you, setScrollingInertial (false) was actually what I was looking for.

    I was not able to implement your approach correctly but I was able to complete another work autour, I had before with the help of setScrollingInertial (false).

    Instead, I used a scrolling listener to limit scrolling based on the length of the text (new scrolling when limits are reached).  Without setScrollingInertial (false), the scrollChanged reminder would have been called multiple times all by animating the inertia.

    Unfortunately, I won't be able to apply this hotfix, because my generation must take over the 4.7 and setScrollingInertial is 5.0 + (customer doesn't want additional constructions).  However, this will be useful for future projects.

  • Horizontal Scrolling in AbsoluteFieldManager

    Hello

    I am trying to add several labels to an AbsoluteFieldManager as follows:

            final AbsoluteFieldManager man = new AbsoluteFieldManager();
    
            man.add(new LabelField("1", Field.FOCUSABLE), 20, 0);
            man.add(new LabelField("2", Field.FOCUSABLE), 30, 100);
            man.add(new LabelField("3", Field.FOCUSABLE), 0, 200);
            man.add(new LabelField("4", Field.FOCUSABLE), 0, 220);
            man.add(new LabelField("5", Field.FOCUSABLE), 150, 240);
            man.add(new LabelField("6", Field.FOCUSABLE), 300, 260);
            man.add(new LabelField("7", Field.FOCUSABLE), 300, 280);
            man.add(new LabelField("8", Field.FOCUSABLE), 300, 300);
            man.add(new LabelField("9", Field.FOCUSABLE), 300, 320);
            man.add(new LabelField("10", Field.FOCUSABLE), 350, 320);
            man.add(new LabelField("11", Field.FOCUSABLE), 400, 320);
            man.add(new LabelField("12", Field.FOCUSABLE), 450, 320);
            man.add(new LabelField("13", Field.FOCUSABLE), 500, 320);
            man.add(new LabelField("14", Field.FOCUSABLE), 550, 320);
            man.add(new LabelField("15", Field.FOCUSABLE), 600, 320);
            this.add(man);
    

    When I move on the trackpad, the next label Gets the focus. This works well in the direction y. All labels with Label '12' are visible. When I try to get the focus to the next label, '12' Label loses focus. '13' label now has the development in-house, but it is not visible and no scrolling happens. Ditto for the "14" and "15". It is easy to notice, the focus moves to the 14 and 15, because it takes a lot of movement on the trackpad to return to 12. But why the AbsoluteFieldManager scrolls at 13, 14 and 15 to make them visible?

    I also tried to add the AbsoluteFieldManager to a HorizontalScreenManager that has vertical and horizontal scrolling. Then, it is even possible to scroll, but not yet all of the labels are visible.

    Is that what I can do to make it possible that the AbsoluteFieldManager scrolls auotmatically once a field outside of the visible area Gets the focus?

    Thank you

    Hello

    Finally, I made my own AbsoluteFieldManager. It works really well. You can position your fields anywhere and just highlight the field you want. I also substitute nextFocus() which now moves according to the movement of pad/trackball. I think it is fairly intuitive and not according to the order of the fields. You can also use it on Blackberry OS prior to 5, where AbsoluteFieldManager is not supported.

    This thread helped me a lot:

    http://supportforums.BlackBerry.com/T5/Java-development/AbsoluteFieldManager-on-OS-prior-to-5-0/TD-p...

    Here is the code, feel free to use or improve.

    import java.util.Vector;
    
    import net.rim.device.api.ui.Field;
    import net.rim.device.api.ui.Manager;
    import net.rim.device.api.ui.XYPoint;
    
    public class ImageMenuFieldManager extends Manager
    {
    
        protected Vector _coordinates;
    
        public ImageMenuFieldManager()
        {
            super(Manager.VERTICAL_SCROLL | Manager.HORIZONTAL_SCROLL);
            _coordinates = new Vector();
    
        }
    
           public int getPreferredWidth()
          {
                return Integer.MAX_VALUE >> 1;
           }
    
           public int getPreferredHeight()
            {
               return Integer.MAX_VALUE >> 1;
           }
    
        protected void sublayout(final int maxWidth, final int maxHeight)
        {
            int totalWidth = 0;
            int totalHeight = 0;
            final int noOfFields = getFieldCount();
            final int maxSize = Integer.MAX_VALUE >> 1;
    
            for (int i = 0; i < noOfFields; ++i)
            {
                final XYPoint fieldPos = (XYPoint) _coordinates.elementAt(i);
                final Field field = getField(i);
                layoutChild(field, maxSize - fieldPos.x, maxSize - fieldPos.y);
                setPositionChild(field, fieldPos.x, fieldPos.y);
                totalWidth = Math.max(totalWidth, field.getExtent().X2());
                totalHeight = Math.max(totalHeight, field.getExtent().Y2());
            }
            setExtent(Math.min(maxWidth, totalWidth), Math.min(maxHeight, totalHeight));
            setVirtualExtent(totalWidth, totalHeight);
        }
    
        protected int nextFocus(final int direction, final int axis)
        {
    
            final int focusFieldIndex = this.getFieldWithFocusIndex();
    
            final int size = _coordinates.size();
            final XYPoint position = (XYPoint) _coordinates.elementAt(focusFieldIndex);
            int shortestAbsoluteDistance = 0;
            int nearestIndex = focusFieldIndex;
            for (int i = 0; i < size; i++)
            {
                //skip focus field
                if (i != focusFieldIndex)
                {
    
                    final XYPoint p = (XYPoint) _coordinates.elementAt(i);
                    final int xDistance = p.x - position.x;
                    final int yDistance = p.y - position.y;
                    final int absoluteDistance = (xDistance * xDistance) + (yDistance * yDistance);
    
                    //point p is in direction right
                    if (direction > 0 && xDistance > 0 && axis == Manager.AXIS_HORIZONTAL)
                    {
                        if (absoluteDistance < shortestAbsoluteDistance || shortestAbsoluteDistance == 0)
                        {
                            shortestAbsoluteDistance = absoluteDistance;
                            nearestIndex = i;
                        }
                    }
                    //point p is in direction left
                    if (direction < 0 && xDistance < 0 && axis == Manager.AXIS_HORIZONTAL)
                    {
                        if (absoluteDistance < shortestAbsoluteDistance || shortestAbsoluteDistance == 0)
                        {
                            shortestAbsoluteDistance = absoluteDistance;
                            nearestIndex = i;
                        }
                    }
    
                    //point p is in direction down
                    if (direction > 0 && yDistance > 0 && axis == Manager.AXIS_VERTICAL)
                    {
                        if (absoluteDistance < shortestAbsoluteDistance || shortestAbsoluteDistance == 0)
                        {
                            shortestAbsoluteDistance = absoluteDistance;
                            nearestIndex = i;
                        }
                    }
    
                    //point p is in direction up
                    if (direction < 0 && yDistance < 0 && axis == Manager.AXIS_VERTICAL)
                    {
                        if (absoluteDistance < shortestAbsoluteDistance || shortestAbsoluteDistance == 0)
                        {
                            shortestAbsoluteDistance = absoluteDistance;
                            nearestIndex = i;
                        }
                    }
    
                }
            }
    
            return nearestIndex;
    
        }
    
        public void add(final Field field)
        {
            throw new IllegalArgumentException("You need to provide x and y coordinates to add a field. Use add (Field field, int x, int y) instead");
        }
    
        public void add(final Field field, final int x, final int y)
        {
            super.add(field);
            this._coordinates.addElement(new XYPoint(x, y));
            updateLayout();
        }
    
    }
    
  • ADF table horizontal scrolling

    I have the table with the columns I need to insert in some pixels more than 30. How can I do this? Here is the code I have, but it extends beyond the visible with a horizontal scrollbar at the bottom of the screen that's not what I'm looking for.

    < af:panelGroupLayout id = "pgl2" styleClass = "AFStretchWidth" >

    < af:panelCollection id = "pc1" featuresOff = "detach".

    inlineStyle = "width: inherit;" height: inherit; ">

    < f: facet = 'menus' name / >

    < name f: facet = "toolbar" / >

    < name f: facet = 'bar of Θtat' / >

    < af:table value = "#{bindings." Var TblStgGmpRebatesView1.collectionModel}"="row ".

    lines = ' #{bindings. " TblStgGmpRebatesView1.rangeSize}.

    emptyText = "#{bindings." TblStgGmpRebatesView1.viewable? "{'No data to display.': 'Access Denied.'}".

    rowBandingInterval = '0 '.

    selectedRowKeys = ' #{bindings. " TblStgGmpRebatesView1.collectionModel.selectedRow}.

    rowSelection = "multiple".

    fetchSize = "#{bindings." TblStgGmpRebatesView1.rangeSize}"id ="t1 ".

    columnStretching = "last" width = "50 px" >

    < af:column...

    If your requirment must have the table with the scroll bar and not the screen then try to put the table inside another component

    e.g. PanelBox with a PanelCollection with AF StretchWidth

    Rows = "#{Bindings.yourCollection.rangeSize} '"

    emptyText = "#{bindings.yourCollection.viewable?" "{'No data to display.': 'Access Denied.'}".

    fetchSize = "#{bindings.yourCollection.rangeSize} '"

    rowBandingInterval = "0" id = "t1" >

  • Horizontal Scrolling Thumbnails slideshow (Are these possible in Muse CC 2014)

    Good afternoon Muse Forum: my name is Ira Bitner NYC U.S.A.

    How are you? I have a question regarding slideshow and thumbnails in MUSE CC 2014.

    Is Q: in Muse possible to have a slideshow with thumbnails scrolling? In other words is it possible to build a slideshow where, for example, maybe 30 thumbnails are used, but only 5 or more are visible in a horizontal row at hand (image of 'Hero') and when the user clicks on an arrow the advance of thumbnails horizontally to the left which brings the new group of tiles that have been 'hidden' on the horizontal line of origin? This allows the site contains many thumbnails that can "hold" on the page and at the same time does not cause additional thumbnails to be stacked vertically all on the same page at the same time view?

    It is a very popular way of showing a slide show that advance images. I spent all night and hours and hours of searching Muse videos, entire web tutorials in the forums, and have not been able to find a way to achieve this type of slideshow. I would have thought that the real slideshow widget, it would have been very obvious if it was actually possible to Muse. Help, please. If you need any Web site link as an example of the progress that horizontal thumbnail slideshow, I'll add one, but it is very common, and I can't believe that Muse would not allow it to build.

    Replied here:

    Muse CC 2014 slideshow Horizontal Scrolling Thumbnails (Possible?)

  • What size should my site horizontal scrolling?

    Hi all

    I have created a website of horizontal scrolling in the Muse with a background of fixed position and scrolling from right to left text while scrolling.

    The width of my project is 960 px's my background width px 1700. I checked my site on different portable computers and browsers, and everything works fine.

    Only ONE problem: the height of this horizontal scrolling page. I'm working on a Mac laptop 13 ", which is very low.
    When I saw my site on my laptop, you can see half of the fixed image placed in the Middle, when I saw this site on a bigger screen.

    The width changes perfectly with screensize, but how do I make my size vary with the height of each screen?

    When I do the background photo at the same height as my own laptop, preview it is perfectly good. When I preview the same larger size on my laptop, the lower part of the screen stays white because of the missing content. When I do the bigger size in the Muse, the site is perfect on my big screen, but half visible on my own laptop.

    Can someone help me?

    Hello

    Yes, I understand what you mean. Looking for a sensitive function that is not supported in Muse. Unfortunately.

    There are a Qooqee.com widget that might solve your problem:

    Image reactive

    Hope that helps.

  • poster not horizontal scroll bar in my report page

    Hello
    I have created a page of interactive report in the "Topaz" model. because I have more columns, I have to scroll across.

    This page worked fine on apex 3.2, but when it comes to apex 4.0, it does not display the horizontal scroll bar. This scroll bar becomes visible only when I click on the magnifying glass next to the search bar and select one of the options that are displayed in.

    Please can someone help me on this problem.

    Thank you
    Hary

    Hello
    I have the same problem using the theme 1 (red), but only with Internet Explorer 7. Firefox (3.6) display this page correctly.
    If I put the model in the region to "no model", shows the IE scroll bar too. I guess, the model of the region causes this problem. I tried to change that, but I still have no solution.
    Can anyone help?

    Thank you
    Andrej

  • Windows don't like my 1 page site with some flash scroll. Please

    Please someone with a PC would be nice enough to try my scrolling site I test page:

    http://angelakane.co.UK/scroll3.html

    I'm very keen to the idea of a big site a page which scroll you vertically and horizontally.  I'm testing some flash content (3 pages down, 1 & 2 together) that works perfectly well in Safari, Firefox, Opera, but I recently tried in Explorer after the loading of Parallels on my mac and it does weird things on the line with the flash.

    Most people I know have macs so I don't know if the problem is with my game up or if PC will face in general not.

    Anyone any idea why?  I'll take all the flash if it means that PCs will have problems.

    Thank you.

    Well... I went to your site, even today, and to be honest so far once again, it's SLOW! I have a off the faster connections to this day (for my business) and I lost my patience waiting. With current standards on speed, it was slow. I hate to tell you that your idea of such a great site a page is not new. This is why the web is that it is today. Studies have shown that users lose their patience with scrolling, it's why you see more and more sites even try to avoid vertical scrolling. If you look around the web you will notice also that content such as text is also getting closer within pages... which means that the eye of the users don't like travel long distances West eastward by reading the text. Shorter lines and more long columns of text are easier to read... a bit like a newspaper.

    Those are just the visible tip of the iceberg when it comes to ease of use and functionality with big problems a layout. I even mentioned the problems with mobile devices it would have (which is the real future for us all designers of web sites).

    In regards to the new mouse Apple. Mice were able horizontal scrolling for years so this is nothing new... it's just another case where apples marketing did sound like a fantastic refreshing idea. Just because something can do something does not mean that it is good. I have a horizontal scrolling mouse and never use it.

    I don't want to crash your party. The site seems good and I also tested in IE8 a 7 and seems the flash is ok, so I'm not sure of the number you are seen. I think that the site would be a much better place in pages.

    Good luck

  • Is there a way to enable horizontal scrolling is the Finder Windows?

    I just upgraded to Mac OS Sierra and noticed that the windows in the Finder now scroll vertically (up and down) with scroll on the right side bar and I can't change it to be able to scroll horizontally (left and right) with the bar scroll on the bottom. I was always able to scroll horizontally according to icon, if the option had been abandoned?

    Drag the upper or lower window.

     > System Preferences > Trackpad

     > System Preferences > General

  • The horizontal scroll bar is not here on some websites.

    The horizontal scroll bar is missing when I visit certain websites. This is one of the Web sites, but there are many others still: http://www.fixya.com/support/t23137801-cannot_connect_android_tablet_arris

    I know it is contained to the left or to the right of the portion of the screen I see because I can get by using the arrow keys on some Internet sites. On other sites, the arrows do not move the screen, but I know that it is contained on the side because I can see the edges of the images and buttons.

    I tested two other browsers on the example site that I mentioned above. Internet Explorer does not have the problem, Chrome has the same problem with the scroll bar, like Firefox.

    This problem is tolerable on Web sites were the arrows are a substitute, but on other sites, it makes the site unusable.

    I have disabled all browser extensions, and that did not solve the problem. Change the screen resolution has no effect on the problem. I use Windows XP on a ten year old desktop computer. Windows updates are installed automatically.

    McGyver

    While I don't see anything poking out around the edges of this page, I'm blocking part of the content of the site (e.g., Facebook integration, text-link advertising), so very likely your seems different from mine.

    When you compare IE on the same page, what types of photos/buttons do you find on the edges?

    She brings the peripheral from the edge elements if you zoom 'out' of the page holding the key Ctrl and tapping the button several times? You can return to your preferred zoom level by holding the CTRL key and tapping the button you like +.

  • How do horizontal scrolling via mousewheel tilt work in FF 20.0.0.1?

    EDIT: I solved this problem on my end. It turns out that my mouse manufacturer had a "helper" program that has been screwing the horizontal tilt support. Stop smoking it solved the problem. To other people having the same problem, I recommend that you check the utility of using your mouse.

    -

    I give myself to understand that previous versions of Firefox support a horizontal scrolling when it is used with a scroll wheel mouse that supported messages of tilt. However, I was unable to make it work on Firefox 20.0.1. I tried to disable scrolling smoothly, hardware acceleration, restart in safe mode, but it doesn't seem to make a difference.

    (The troubleshooting information below represent the usual configuration of my browser, disable all extensions).

    However, other applications seem to handle mousewheel tilts very well; I tried it with applications as simple as Notepad on Windows and they scroll horizontally in response to the inclinations of mousewheel. I'm puzzled; delete Mozilla tilt support in future versions of Firefox?

    Great to hear that you got it working! Thank you to come back and post the resolution for other users who may have the same problem.

Maybe you are looking for