Box alignment and sizing problems

I have a JPanel (using a border layout). Its centre part holds a vertical Box, which itself holds two boxes: The top box holds three labels with centre alignment, and the bottom box holds 5 boxes, each displaying details about a product. All the components in these boxes are left-alignment
The parent JPanel (with the BorderLayout) has its preferred, minimum and maximum sizes specified. Nothihn inside it has sizes specified - in the case of the "product boxes", I do not know exactly how high they will be (it despends on the information they contain). The box that holds the five boxes has a ScrollPane, so that it doesn't really matter how long the content goes.
My problem is that the box holding the five boxes does not adhere to the width limits of the main JPanel. Say the main JPanel is 1000px wide: the
child box's content might stretch for 1500px or 2000px, flowing out of view. Since I have the horizontal scroll bar of the scroll pane set to "As needed", i can scroll across to see the content. But even if I get rid of the scroll pane entirely, the problem still occurs.
The strange thing is I have another JPanel with a very similar structure (Border layout holding box holding 5 boxes), which does not ever seem to exhibit this problem. And also, the problem appears to occur only sometimes.
Anyone seen this before or understand what's going on? I've posted the code. The first block is the constructor for the main JPanel with BorderLayout. The second block is the code for the individual "Product" panels. These are added to the "productListBox" (see below) by a separate SwingWorker thread, after the JPanel has been constructed. The third block is the doInBackground method of that SwingWorker.
Code for JPanel constructor: (Note there is a line commented out. It doesn't seem to matter whether or not this line is in there)
        super(new BorderLayout());
        setPreferredSize(new Dimension(width, height));
        JLabel searchProductLabel = new JLabel("Search a service using the buttons above");
        searchProductLabel.setFont(FontsColors.SUBTITLE_FONT);
        searchProductLabel.setForeground(FontsColors.SUBTITLE_COLOR);
        searchProductLabel.setAlignmentX(CENTER_ALIGNMENT);
        JLabel orLabel = new JLabel("OR");
        orLabel.setFont(FontsColors.TITLE_FONT);
        orLabel.setForeground(FontsColors.TITLE_COLOR);
        orLabel.setAlignmentX(CENTER_ALIGNMENT);
        JLabel instructionsLabel = new JLabel("Search a service on one of these products");
        instructionsLabel.setFont(FontsColors.SUBTITLE_FONT);
        instructionsLabel.setForeground(FontsColors.SUBTITLE_COLOR);
        instructionsLabel.setAlignmentX(CENTER_ALIGNMENT);
        Box instructionsBox = new Box(BoxLayout.Y_AXIS);
        instructionsBox.setAlignmentX(LEFT_ALIGNMENT);
        instructionsBox.add(searchProductLabel);
        instructionsBox.add(Box.createVerticalStrut(PADDING));
        instructionsBox.add(orLabel);
        instructionsBox.add(Box.createVerticalStrut(PADDING));
        instructionsBox.add(instructionsLabel);
        instructionsBox.add(Box.createVerticalStrut(PADDING));
        productsListBox = new Box(BoxLayout.Y_AXIS);
        //productsListBox.setAlignmentX(LEFT_ALIGNMENT);
        Box shoppingBox = new Box(BoxLayout.Y_AXIS);
        shoppingBox.setAlignmentX(LEFT_ALIGNMENT);
        shoppingBox.add(instructionsBox);
        shoppingBox.add(Box.createHorizontalStrut(PADDING));
        shoppingBox.add(productsListBox);
        JScrollPane productsScroll = new JScrollPane(shoppingBox);
        productsScroll.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
        productsScroll.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED);
        add(productsScroll, BorderLayout.CENTER);Code for product box constructor:
        super(BoxLayout.Y_AXIS);
        Border lineBorder = BorderFactory.createLineBorder(FontsColors.THEME_COLOR);
        Border padding = BorderFactory.createEmptyBorder(BORDER_PADDING, BORDER_PADDING, BORDER_PADDING, BORDER_PADDING);
        setBorder(BorderFactory.createCompoundBorder(lineBorder, padding));
        add(Box.createVerticalStrut(COMPONENT_PADDING));
        String titleBrandString = (data.getBrand() != null) ? (data.getTitle() + " (" + data.getBrand().toUpperCase() + ")") : (data.getTitle());
        Hyperlink titleLink = new Hyperlink(titleBrandString, data.getPageUrl(), FontsColors.TITLE_FONT, FontsColors.TITLE_COLOR);
        titleLink.setAlignmentX(LEFT_ALIGNMENT);
        add(titleLink);
        add(Box.createVerticalStrut(COMPONENT_PADDING));
        JLabel authorLabel = new JLabel(data.getAuthor());
        authorLabel.setFont(FontsColors.SUBTITLE_FONT);
        authorLabel.setForeground(FontsColors.SUBTITLE_COLOR);
        authorLabel.setAlignmentX(LEFT_ALIGNMENT);
        add(authorLabel);
        add(Box.createVerticalStrut(COMPONENT_PADDING));
        JTextArea descriptionArea = new JTextArea(data.getDescription());
        descriptionArea.setEditable(false);
        descriptionArea.setLineWrap(true);
        descriptionArea.setWrapStyleWord(true);
        descriptionArea.setAlignmentX(LEFT_ALIGNMENT);
        add(descriptionArea);
        add(Box.createVerticalStrut(COMPONENT_PADDING));
        if(data.getPrice() != null)
            String priceConditionString = data.getPrice();
            JLabel priceConditionLabel = new JLabel(priceConditionString);
            priceConditionLabel.setFont(FontsColors.EMPHASIS_FONT);
            priceConditionLabel.setForeground(FontsColors.EMPHASIS_COLOR);
            add(priceConditionLabel);
        add(Box.createVerticalStrut(COMPONENT_PADDING));
        ServiceButtonPanel serviceButtonPanel = new ServiceButtonPanel();
        serviceButtonPanel.addServiceButtonActions(new SetProductSearchStringActionListener());
        serviceButtonPanel.setAlignmentX(LEFT_ALIGNMENT);
        add(serviceButtonPanel);
        add(Box.createVerticalStrut(COMPONENT_PADDING));
        searchString = data.getTitle();Code for SwingWorker that adds the product boxes:
        protected Void doInBackground() throws Exception
            for(int index = 0; index < products.size(); index++)
                ProductInfoPanel panel = new ProductInfoPanel(products.get(index));
                Border padding = BorderFactory.createEmptyBorder(PADDING, PADDING, PADDING, PADDING);
                panel.setBorder(BorderFactory.createCompoundBorder(padding, panel.getBorder()));
                productsListBox.add(panel);
            validate();
            return null;
        }Edited by: 803559 on 13-May-2011 00:06

jduprez
You have solved the problem inadvertently
No. Twice no.
1) You have solved the problem. Not me. I just gave a push in the (apparently) right direction. You deserve more credits.
2) Take my word for it, this was anything but inadvertently . Indeed it's a well-known trait of the SSCCE "methodology", that the developer often discovers the origin of the problem, and hopefully finds the solution as well.
- If you demonstrate the problem in shorter code, means there are less suspects to investigate.
- If you don't, then you start adding things to look more than the real program, one thing at a time, until you find one thing that introduces the problem.
I'm not promoting SSCCE to prevent or refrain people from posting questions in the forum. I'm a addict of this forum, and I'm the first one frustrated when there are no questions here.
It's just that using SSCCE often eliminates trivial problem before they have to be worded here, and leaves mostly interesting problems to investigate. And for those, having a complete runnable example is easier to copy/paste in an IDE to try out and play with.
I made up an SSCCE as you said. Because I did not want to have to bother with accessing Google Shopping (which is where the program gets the product information) i made a bunch of fake productions, all called "Xbox 360". Everything was fine.Excellent (and straight to the point of the methodology).
You then witnessed that the problem was not where you thought it were initially (I'm stretching your words a bit for the purpose of the demonstration, but it required a combination of code and certain data to exhibit the problem).
It turned out that it was the Title JLabel of the individual product information panels that was causing it to stretch beyond its bounds. I didn't pick up on it, because the problem arose even if the JLabel text didn't take up the entire width of the panel - once it got about 2/3 of the way across, the width would increase.I'm surprised again. Don't you have another widget on the same "line", in addition to the label?
But I trust your findings (without an SSCCE I can't commit myself :o)
I'll try switching to a multiline text holder so that the text can wrap around.Yes, that sounds sensible for such a thing as "product information".
Thank you, jduprez. I'll remember to post a SSCCE next time I have an issue.Great. I'm glad you solved your problem, and I'm glad I haven't deterred you from posting at all! :o)
Darryl: thank you for clearning that up. I've been confused as to which one to use.Yes.
I will post something one of these days to have that cleared up (the tutorial recommends to brutally call revalidate()repaint()+ , but I think that's exagerated: http://download.oracle.com/javase/tutorial/uiswing/layout/howLayoutWorks.html, http://download.oracle.com/javase/tutorial/uiswing/layout/problems.html)
Edited by: jduprez on May 13, 2011 1:50 PM

Similar Messages

  • Spry Alignment and Positioning Problem in Internet Explorer 6 and 7

    I am designing a website at http://atoment.007gb.com, and neither me, nor my partner can figure out why the Spry Horizontal Menu Bar is loading the way it is in Internet Explorer.  We are doing this for a school project, and eye appeal and workability is a top priority.  I changed and customized most of it, but even if i did keep it the same, it still wouldn't work. I have only the best confidence, that even given the amount i have changed, you will still be able to help me with my alignment problem.
    The Submenu Buttons Tile across the page, when they are supposed to go straight down...
    the Submenu overlaps the main menu when you hover over it
    and the darned thing wont center in any of my browsers, but thats the least of my worries.
    Here is the CSS Codes
    #MasterNavigator {
    width: 1024px;
    height: 75px;
    #Navigator {
    margin-left: auto;
    margin-right: auto;
    clear: both;
    #NavigatorButtonsLeft  {
    background-image: url(../_images/MenuButtonBackgroundLeft.png);
    width: 128px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    vertical-align:center;
    #NavigatorButtonsMiddle {
    background-image: url(../_images/MenuButtonBackground.png);
    width: 128px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    vertical-align:center;
    #NavigatorButtonsRight {
    background-image: url(../_images/MenuButtonBackgroundRight.png);
    width: 128px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    vertical-align:center;
    #NavigatorButtonsSub {
    background-image:url(../_images/SubMenuButtonBackground.png);
    width: 128px;
    height: 35px;
    line-height: 36px;
    text-align: center;
    filter:alpha(opacity=80);
    -moz-opacity:0.8;
    -khtml-opacity: 0.8;
    opacity: 0.8;
    And here is my HTML code:
    Home
    Publishing
    Videos
    Patents
    Wallpapers
    Avatars
    Userbars
    Digital Design
    Digital Gallery
    3-D Gallery
    Sci-Fi
    Technology
    Structures
    Vehicles
    Concepts
    Web Design
    Templates
    Graphics
    About Us    
    Atom Enterprises
    Slamerz
    The images I used are 20% Transparent, and are listed below.
    http://atoment.007gb.com/_images/MenuButtonBackgroundLeft.png
    http://atoment.007gb.com/_images/MenuButtonBackground.png
    http://atoment.007gb.com/_images/MenuButtonBackgroundRight.png
    http://atoment.007gb.com/_images/SubMenuButtonBackground.png
    Please try your best to help me.

    0087adam wrote:
    ok, but how can I make it work with what I have.  All the css codes are the
    same, they just have been renamed.
    The original SpryMenuBarHorizontal.css does not have any issues in any of the browsers. If you go and modify the original, and it does not work anymore, then the logical conclusion is that you have made one or (more likely) multiple mistakes.
    In other words, you cannot make it work with what you already have.
    My advice is that you replace the original CSS and work from there; but instead of changing the original CSS, make your changes in a separate stylesheet so that you can monitor and test the code at each change. For instance if you want to change the colour of the text you make a style rule that overrides the original in your new stylesheet as follows:
    ul.MenuBarHorizontal a {
        color: #333;
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus {
        color: #FFF;
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible {
        color: #FFF;
    If you want to change the background colour to an image, then follow the same procedure, testing your code at each step.
    I hope this helps.
    Ben

  • Light Table: aligning and sizing photos

    I am looking for a comfortable possibility to make single photo presentation sheets to give them to my portrait clients. One sheet should contain several photos in different sizes. Until yet I use the photo book layouts - but this is not a really good solution as it is annoying to make a book when I just need a single sheet with some aligned photos in different sizes on it. Aligning position and sizes of photos on the light table does not work really fine.
    any ideas how I could solve my problem?

    I am looking for a comfortable possibility to make
    single photo presentation sheets to give them to my
    portrait clients. One sheet should contain several
    photos in different sizes. Until yet I use the photo
    book layouts - but this is not a really good solution
    as it is annoying to make a book when I just need a
    single sheet with some aligned photos in different
    sizes on it. Aligning position and sizes of photos on
    the light table does not work really fine.
    any ideas how I could solve my problem?
    Well, there are a number of alignment options in the light table when you Control-Click (right click) on an image - you can select multiple images on the light table holding down Shift or Command, and then use the context menu option to align or redistribute images.
    ABout the only thing that is not there is to make two images exactly the same size, for that you'll need to make use of the grid - if you zoom in it should be easier to get two images almost exactly the same size.

  • Chrome and Safari image alignment and color problems after upgrading to 10.8

    I have just upgraded from lion to mountain lion with a clean install. My website davidandora.com now displays image sliced improperly aligned in chrome and with slightly adjusted colors on some slices in Safari. They appear fine in the same version browsers on Macbook also running the most current mac OS. I suspect this is not a browser problem since there are issues with both browsers, but what could be causing this? I have run all updates on my computer and browsers.
    Checkout this address for a clear example in both browsers:
    http://www.davidandora.com/andoracam/
    and this image for what I am seeing:
    https://www.evernote.com/shard/s16/sh/eb7ce0f4-4735-418d-8793-f867d7e4d642/b7caf 9b1a7e6671b0fd714ac3e98de08

    I will add that the current Firefox is displaying everything correctly. So strange.

  • Box shading and tickness problem in smartforms Mainwindow

    Hello all,
    Can anyone guide me how to reduce shading and thickness of table frame lines?
    Also in main window table is displayed with dark black shad and with much thickness.
    how can i reduce this shade and thickness.
    for LP01 Device it is working fine , for LP02 Device It is not working.
    Please guide.
    Thanks & Regard,
        Sandeep.

    Hi Sandip,
    Window > output options > Box and shading > shading > saturation 5  to 10 %.
    Window > output options > Box and shading >frames  > width 15.00 TW
    Hope this helps.
    BR
    Dep
    Edited by: DeepakNandikanti on Aug 18, 2011 1:38 PM

  • Auto alignment and sizing in form elements- can't turn it off

    For some reason a certain form I'm working on in Acrobat 9 Professional on Mac, Leopard 10.5.8, has a problem.
    It has a feature enabled that I can't figure out how to disable. Form elements sizes and positions are not adjustable in the micro range as usual.  A button is a given height and can only be adjusted to twice or thrice (etc.) that height. Similarly, it can only be moved in the same increments. It can't be nudged.
    I am accustomed to being able to nudge with mouse or arrows in such small increments that the form elements seem infinitely adjustable in size or position.
    Is there a setting somewhere that disables this feature?
    See the attached PDF with transparent buttons on the first page (TOC).
    thanks,
    Steve Horn

    Yes, indeed. Thank you, thank you, thank you.

  • Quality loss and sizing problem

    Hi guys
    I am new to the creative suite 3. I produce swf adverts which play on a 32" widescreen at 1280x720. Occasionally I have to put these swfs in a showreel and burn to dvd to play via a set top dvd player (PAL). My problem is twofold:
    1. when i export the fla's as avi's the quality is perfect, but once burned to dvd it is poor
    2. I cannot get the dvd to fit the 32" screen - it always "letterboxes"
    I realise that the aspect of a dvd is set to 720x460, but ids there any way I can created high quality dvds to play on the 32" widescreen, without going to blu-ray?
    Many thanks for any suggestions!

    I don't do Pal, but notes I made when first reading this forum say that is 720x576 so you might check your 460 number

  • Printing and Sizing Problems with PDF Files

    I have grading keys saved as PDF files.  When I open them in the Adobe Reader X, some come up looking fine, fitting nicely on an 8.5" x 11" page and ready for print.  Others come up looking shrunken and in the middle of the page.  When I try to resize and print these, I get all kinds of funky results.
    What I want to do is process all the PDF files (grading keys) so that they will fit nicely on the 8.5x11, without the user having to do a bunch a stuff resizing, etc.
    I have included links to two PDF files below.  The first comes up fine in the Adobe Reader and the sond does not.  Can anyone help me with this perplexing issue?  Thanks.
    www.goodnewsjail.org/good.pdf  (Formatted correctly)
    www.goodnewsjail.org/toosmall.pdf (Comes up looking scrunched on the page)
    Note:  I might add that when I open these files in Adobe Photoshop CS, the one above that looks good comes up with dimensions 23.687"x17.745", while the one that comes up looking funky has dimensions 10.24"x7.85".  I am as confused as a termite in a yo-yo.

    Both of your documents have the same size: 279.4mm x 215.9mm.  The difference is that the 'good.pdf' has its content evenly distributed over the available size, the other one has its content minimized in the center, with a large white space around it (in Adobe Acrobat).
    As for why it shows a different size in Photoshop, I have no idea.
    There is not much you can do about it with Adobe Reader, but you can change the size using Photoshop or Illustrator.  See attachment to this post.

  • I just statred Flash CC for the first time and it seems that the text within the pop-up window (dialog box) is mis-aligned and not allowing me access to the command buttons, nor all the text. (ie: the NEW Template Box, can't see but 2/3 of the content)

    I just statred Flash CC for the first time and it seems that the text within the pop-up window (dialog box) is mis-aligned and not allowing me access to the command buttons, nor all the text. (ie: the NEW Template Box, can't see but 2/3 of the content) is there a fix to this problem? using 8.1, Monitor is a high res.2560x1440.

    Another View.
    the GUI is so hard to read (so small) I enlarge my Ps UI by the instructions below...which helped a lot.

  • Is there a way to automatically align and make same size of check boxes/ radio-buttons like in the image below?

    I create PDF forms on daily basis for multiple people around but still, I create a table in Word and then manually convert it to PDF. I'm using Acrobat X and then I manually create radio buttons or check boxes in each cell of the table so aligning those buttons or check-boxes in the same line is a problem. I know there would be some solution to this but can anyone guide me to that? Also, making the same size of the radio-buttons of check boxes likewise ? ? ?
    Please see the image above and advise how to align them in the same line and how to make them same size using Acrobat X?
    Your help appreciated.

    You should create these fields using the Place Multiple Fields command, so that they are aligned properly and all the same size. Read about it here:
    http://help.adobe.com/en_US/acrobat/X/pro/using/WS8C2DDC1C-C174-4ad1-893F-B14A1C0289B4.htm l
    Read how to align and distribute fields here:
    http://help.adobe.com/en_US/acrobat/X/pro/using/WS6D2D2BFC-6F69-4a8b-BDE6-8043D7EE240D.htm l

  • When I start up the computer, the dialogue box opens and saying that the procedure entry point splite3_wal_checkpoint could not be located in the dynamic link library SQLite3.dll.  I tried to fix this problem by redownloading itunes, but the problem still

    When I start up the computer, the dialogue box opens and saying that the procedure entry point splite3_wal_checkpoint could not be located in the dynamic link library SQLite3.dll.  I tried to fix this problem by redownloading itunes, but the problem still persists.  How can I fix it?  thank you.

    With Windows Explorer, navigate to your C:\Program Files\Common Files\Apple\Apple Application Support folder.
    Copy the SQLite3.dll that you should find there, navigate to the nearby Mobile Device Support folder, and Paste it in there also.
    Reboot and see if all is well
    In case that your OS is Windows 7 (64 bit)
    1. Open windows explorer, go to location C:\Program Files (x86)\Common Files\Apple\Apple Application Support
    2. Copy file "SQLite3.dll"
    3. Open new windows explorer, to to location C:\Program Files (x86)\Common Files\Apple\Mobile Device Support
    4. Paste file "SQLite3.dll" to the location.
    5. Reboot your computer, it should not display that message, it should be clear.
    Good Luck

  • When I start up the computer, the dialogue box opens and saying that the procedure entry point sqlite3_wal_checkpoint could not be located in the dynamic link library SQLite3.dll.  I redownload itunes, but the problem still persists.  How can I fix this?

    When I start up the computer, the dialogue box opens and saying that the procedure entry point splite3_wal_checkpoint could not be located in the dynamic link library SQLite3.dll.  I tried to fix this problem by redownloading itunes, but the problem still persists.  How can I fix it?  thank you.

    With Windows Explorer, navigate to your C:\Program Files\Common Files\Apple\Apple Application Support folder.
    Copy the SQLite3.dll that you should find there, navigate to the nearby Mobile Device Support folder, and Paste it in there also.
    Reboot and see if all is well
    In case that your OS is Windows 7 (64 bit)
    1. Open windows explorer, go to location C:\Program Files (x86)\Common Files\Apple\Apple Application Support
    2. Copy file "SQLite3.dll"
    3. Open new windows explorer, to to location C:\Program Files (x86)\Common Files\Apple\Mobile Device Support
    4. Paste file "SQLite3.dll" to the location.
    5. Reboot your computer, it should not display that message, it should be clear.
    Good Luck

  • I downloaded the latest I tunes update today. Now when I click on the itunes icon I get an arror box :R6034 and cannot access my itunes library. How can I fix this problem?

    I annot open my Itunes library ever since installing the latest version of Itunes today. I get an error "R6034." How can I fix this problem?

    Hello Steven.
    First and foremost, I have to remind you that the version of Firefox you are using at the moment has been discontinued and is no longer supported. On top of this, it has known unpatched bugs and security problems. I urge you to update to the latest version of Firefox, for maximum security, stability, performance and usability. You can get it for free, as always, at [http://www.getfirefox.com getfirefox.com].
    In any case, and since you seem to be in the process of updating (you should have done so a while ago, since Firefox 2.0 has been discontinued years ago, I believe), your problems may exist because you may be having a problem with some Firefox add-on that is hindering your Firefox's normal behavior. Have you tried disabling all add-ons (just to check), to see if Firefox goes back to normal?
    Whenever you have a problem with Firefox, whatever it is, you should make sure it's not caused by one (or more than one) of your installed add-ons, be it an extension, a theme or a plugin. To do that easily and cleanly, run Firefox in [http://support.mozilla.com/en-US/kb/Safe+Mode safe mode] (don't forget to select ''Disable all add-ons'' when you start safe mode). If the problem disappears, you know it's from an add-on. Disable them all in normal mode, and enable them one at a time until you find the source of the problem. See [http://support.mozilla.com/en-US/kb/Troubleshooting+extensions+and+themes this article] for information about troubleshooting extensions and themes and [https://support.mozilla.com/en-US/kb/Troubleshooting+plugins this one] for plugins.
    If you need support for one of your add-ons, you'll have to contact its author.
    If the problem is not disappears when all add-ons are disabled, please tell me, so we can work from there. Please have no fear of following my instructions to the line, as all can be easily undone.

  • New VMS/IPC boxes - speed and pricing

    For the most part, I've been a very happy FiOS customer. The internet side has gone out exactly once in the year I've had the service, and it was restored within an hour. TV has dropped out twice, both times very late at night (I assume for head-end maintenance). Reliability is better than every other ISP I've ever had, combined.
    That said..
    I wanted to snag another STB for the house - found out the local stores had all been closed (I can understand why from the financial aspect, but it was still a shock pulling up to my old store to pick up another STB.. and finding a "for lease" sign, when I'd been by there 2 months prior), so I looked at options online. The new VMS + IPC boxes looked promising, especially since they added the ability for the entire house to pause, rewind, schedule recordings, etc, from any TV - instead of only the DVR being able to do that (though the old boxes could stream recordings from the DVR).
    My chief complaint so far - while the VMS box itself is responsive, the IPC boxes are painfully slow to respond to anything. Picture quality is fantastic, but using them feels, to put it in nerd terms, like using a Pentium 90 with Windows XP and 128MB RAM. They take 5+ to respond to anything more than a channel change (and even that takes up to 3 seconds), and frequently "lose" remote key presses if you try to, say, hit guide, hit page down, then try to arrow down to the channel that you know is on the next page. It literally feels like a throwback to the earliest digital set top boxes from Comcast/Time Warner - the first ones with built-in TV listings in the mid 1990s. The speed is right on par with them; the only thing faster right now is they don't shut down for 30 minutes a day to update the TV listings.
    I've gone through the built-in diagnostics on the boxes to verify signal levels - they're decent (not perfect, but this is a 20 year old house with mostly original coax), but we have no pixelation or picture drop-out, so I would think they could carry the basic stuff between the IPC boxes and VMS pretty easily. The router certainly has no problem handling the 75/35 on the same coax (speedtest shows 85-90 down, 35-40 up, with a ~5ms ping, no matter which cable outlet it's plugged into)..
    My other complaint - why did Verizon move to "rooms" for pricing? I thought I was getting a DVR plus 3 STBs (since I ordered 3 STBs and asked for a DVR), instead of a VMS + 2 STBs - and I'm paying much more than I did for the old DVR + 2 STBs.
    With the griping out of the way - is there a reasonable chance that firmware updates will help with the speed of the IPC boxes? Or is there a chance it's a cabling issue? (I have no problem pulling new coax or cat5e, and I can provide signal levels if that'll help) If not, is there any chance of getting the old QIP7232 DVR + QIP7100 box back (and adding another 7100), and switching back to what I was paying before? I know they're a bit antiquated (especially the 7100s), but they were much more responsive, and didn't make me want to throw the STBs through the window. It just seems really rediculous that I'm paying such a large premium (plus the "upgrade fee") for equipment that, in terms of the user experience, is much worse.
    Again.. been a happy customer for a long time, but the new terminals are super painful to use.
    Thanks.

    If this is the case.  I think I will wait till the bugs are worked out
    Question what were you paying before and after for the boxes.   So what was the old DVR + 2 STB's and the new DVR plus 2 stb's
    Trying to get an idea of what you meant by way more.  Most people said same pricing and a small $20 or so upgrade fee

  • How do I fix my ipod classic that says very low batter after I have charged it and the problem persists?

    I have an Ipod video 30g that says Please wait very low battery. I charged it for about a day and the problem persists. I've tried using some solutions on the internet and none of them worked including: holding the menu and select, holding select and play to put it in disk mode with no avail. Is there anyone who can help me!!!

    Have you read this post written by another forum member?
    The Sad iPod icon.
    However, as your iPod was purchased on Boxing Day, why not get it serviced under the warranty?
    You can arrange online service here.
    Service request.
    Or if an Apple store is near you, take it there and have them check your iPod.
    You can make an appointment by using this link.
    Genius Bar Appointments.

Maybe you are looking for

  • Named Calculation Column in DSV - SSAS Cube (2012)

    Hi, I have a question on creating named calculation (derived column) in data source view of SSAS 2012 Cube. Below scenario : If i am writing an expression in Fact table (say, creating named calculation column, "X" in this fact table) then is it possi

  • Same material with Different qualities

    Dear Experts, Please give me the solution for mentioned issue .... I have to maintain the same material which has different qualities (grades) and according to these qualities, the material rate is different. i have near about 50 different qualities

  • Advice for polling XML

    Hi, I have an app that allows users to edit XML data. Ultimately this app should be able to accomodate multiple simultaneous users. Can anyone suggest a method I should employ that will keep the XML data in my HTTPService's synced and updated in the

  • Materialized views Error

    Hi, I have installed oracle 11g expression edition. I am trying to create materialized view like this create materialized view test_mv build immediate refresh fast on commit enable query rewrite as select product.category, sum(sales.netsales) from pr

  • F4 help - WD ABAP

    hi friends, i m new in WD ABAP. i have to use F4 help for input field. The valuues which i shud get wen i press F4 should have been inserted by me only in the program. Please tell how to proceed for that. It would be helpful if you give some dummy pr