How to adjust for different numbers of components on a JTabbedPane

Hi,
I have five panels on a JTabbedPane. On one, I have six components, with each being an array of five (in other words, I have six "columns" of five "rows" each). On another pane, I have only two components (not arrays). I understand that the JTabbedPane will be as large as the largest panel. In my case, the panel with two components is as large as the one with the arrays and the two components take up the entire panel. I have tried to adjust this by using the createGlue(), createHorizontalStrut(), and createVerticalStrut() methods, but it is somewhat "ugly." I am also using the Box layout. Is there a better way to do this? I have included some of my code for reference; (sorry for its length; I am including the code for only two of the five panels). Any assistance would be appreciated.
TIA,
Jeff
Here is the code that creates the panel with the "columns" and "rows":
public MailGen construct()
    //- create the controls for the emocPanel
    JLabel emocActionLabel = new JLabel( "ACTION" );
    emocActionLabel.setHorizontalAlignment( JLabel.CENTER );
    JLabel emocOrgIdLabel = new JLabel( "ORGANIZATION" );
    emocOrgIdLabel.setHorizontalAlignment( JLabel.CENTER );
    JLabel emocAircraftLabel = new JLabel( "AIRCRAFT" );
    emocAircraftLabel.setHorizontalAlignment( JLabel.CENTER );
    JLabel emocCatLabel = new JLabel( "CAT." );
    emocCatLabel.setHorizontalAlignment( JLabel.CENTER );
    JLabel emocSequenceLabel = new JLabel( "SEQ. # STARTS WITH" );
    emocSequenceLabel.setHorizontalAlignment( JLabel.CENTER );
    JLabel emocQuantityLabel = new JLabel( "QTY OF EMAILS" );
    emocQuantityLabel.setHorizontalAlignment( JLabel.CENTER );
    JComboBox emocActionComboBox;
    JTextField emocOrgTextField;
    JTextField emocAircraftTextField;
    JComboBox emocCategoriesComboBox;
    JTextField emocSequenceTextField;
    JTextField emocQuantityTextField;
    //- create the boxes that will contain the EMOC labels and controls
    Box northEmocBox = new Box( BoxLayout.X_AXIS );
    Box centerEmocBox = new Box( BoxLayout.X_AXIS );
    Box southEmocBox = new Box( BoxLayout.X_AXIS );
    //- add the EMOC labels to the northEmocBox
    //- HERE I AM USING STRUTS
    northEmocBox = Box.createHorizontalBox();
    northEmocBox.add( Box.createHorizontalStrut( 15 ) );
    northEmocBox.add( emocActionLabel );
    northEmocBox.add( Box.createHorizontalStrut( 40 ) );
    northEmocBox.add( Box.createVerticalStrut( 25 ) );
    northEmocBox.add( emocOrgIdLabel );
    northEmocBox.add( Box.createHorizontalStrut( 40 ) );
    northEmocBox.add( Box.createVerticalStrut( 25 ) );
    northEmocBox.add( emocAircraftLabel );
    northEmocBox.add( Box.createHorizontalStrut( 40 ) );
    northEmocBox.add( Box.createVerticalStrut( 25 ) );
    northEmocBox.add( emocCatLabel );
    northEmocBox.add( Box.createHorizontalStrut( 5 ) );
    northEmocBox.add( Box.createVerticalStrut( 25 ) );
    northEmocBox.add( emocSequenceLabel );
    northEmocBox.add( Box.createHorizontalStrut( 15 ) );
    northEmocBox.add( Box.createVerticalStrut( 25 ) );
    northEmocBox.add( emocQuantityLabel );
    northEmocBox.add( Box.createHorizontalStrut( 15 ) );
    JPanel mainEmocPanel = new JPanel();
    mainEmocPanel.setLayout( new BoxLayout( mainEmocPanel, BoxLayout.Y_AXIS ) );
    mainEmocPanel.add( northEmocBox );
    //- add the EMOC controls to the centerEmocBox
    Object[][] emocFieldTable = new Object[5][6];
    for ( int index = 0; index < 5; index++ )
      centerEmocBox = Box.createHorizontalBox();
      emocFieldTable[index][0] = new JComboBox( actions );
      ( ( JComboBox ) emocFieldTable[index][0] ).setBorder(
      BorderFactory.createLineBorder( Color.BLACK, 1 ) );
      emocFieldTable[index][1] = new JTextField( 3 );
      ( ( JTextField ) emocFieldTable[index][1] ).setBorder(
      BorderFactory.createLineBorder( Color.BLACK, 1 ) );
      emocFieldTable[index][2] = new JTextField( 3 );
      ( ( JTextField ) emocFieldTable[index][2] ).setBorder(
      BorderFactory.createLineBorder( Color.BLACK, 1 ) );
      emocFieldTable[index][3] = new JComboBox( categories );
      ( ( JComboBox ) emocFieldTable[index][3] ).setBorder(
      BorderFactory.createLineBorder( Color.BLACK, 1 ) );
      emocFieldTable[index][4] = new JTextField( 3 );
      ( ( JTextField ) emocFieldTable[index][4] ).setBorder(
      BorderFactory.createLineBorder( Color.BLACK, 1 ) );
      emocFieldTable[index][5] = new JTextField( 3 );
      ( ( JTextField ) emocFieldTable[index][5] ).setBorder(
      BorderFactory.createLineBorder( Color.BLACK, 1 ) );
      centerEmocBox.add( ( JComboBox )emocFieldTable[index][0] );
      centerEmocBox.add( ( JTextField )emocFieldTable[index][1] );
      centerEmocBox.add( ( JTextField )emocFieldTable[index][2] );
      centerEmocBox.add( ( JComboBox )emocFieldTable[index][3] );
      centerEmocBox.add( ( JTextField )emocFieldTable[index][4] );
      centerEmocBox.add( ( JTextField )emocFieldTable[index][5] );
      mainEmocPanel.add( centerEmocBox );
    //- create the SEND and CANCEL buttons
    JButton emocSendButton = new JButton( "SEND EMAIL" );
    emocSendButton.setBackground( Color.white );
    emocSendButton.setBorder( raisedBevel );
    JButton emocCancelButton = new JButton( "CANCEL" );
    emocCancelButton.setBackground( Color.white );
    emocCancelButton.setBorder( raisedBevel );
    //- add the buttons to the southEmocBox
    southEmocBox = Box.createHorizontalBox();
    southEmocBox.add( emocSendButton );
    southEmocBox.add( emocCancelButton );
    mainEmocPanel.add( southEmocBox );Here is the code that creates the panel with only two components:
//- create the controls for preguardPanel
    JLabel preguardActionLabel = new JLabel( "SELECT ACTION" );
    preguardActionLabel.setHorizontalAlignment( JLabel.CENTER );
    preguardActionLabel.setPreferredSize( new Dimension( 100, 10 ) );
    JComboBox preguardActionComboBox = new JComboBox( actions );
    preguardActionComboBox.setBorder( BorderFactory.createLineBorder(
        Color.BLACK, 1 ) );
    preguardActionComboBox.setPreferredSize( new Dimension( 30, 10 ) );
    //- create the SEND and CANCEL buttons
    JButton preguardSendButton = new JButton( "SEND ACTION" );
    preguardSendButton.setBackground( Color.white );
    preguardSendButton.setBorder( raisedBevel );
    JButton preguardCancelButton = new JButton( "CANCEL" );
    preguardCancelButton.setBackground( Color.white );
    preguardCancelButton.setBorder( raisedBevel );
    //- create the boxes that will contain the preguard label and control
    Box northPreguardBox = new Box( BoxLayout.X_AXIS );
    Box centerPreguardBox = new Box( BoxLayout.X_AXIS );
    Box southPreguardBox = new Box( BoxLayout.X_AXIS );
    //- add the preguard label to the northPreguardBox
    northPreguardBox = Box.createHorizontalBox();
    northPreguardBox.add( Box.createGlue() );
    //northPreguardBox.add( Box.createGlue() );
    northPreguardBox.add( preguardActionLabel );
    //northPreguardBox.add( Box.createGlue() );
    northPreguardBox.add( Box.createGlue() );
    JPanel mainPreguardPanel = new JPanel();
    mainPreguardPanel.setLayout( new BoxLayout(
        mainPreguardPanel, BoxLayout.Y_AXIS ) );
    mainPreguardPanel.add( northPreguardBox );
    //- add the preguard control to the centerPreguardBox
    //- HERE IS THE "GLUE" I AM USING
    centerPreguardBox = Box.createHorizontalBox();
    centerPreguardBox.add( Box.createGlue() );
    centerPreguardBox.add( Box.createGlue() );
    centerPreguardBox.add( Box.createGlue() );
    centerPreguardBox.add( Box.createGlue() );
    centerPreguardBox.add( preguardActionComboBox );
    centerPreguardBox.add( Box.createGlue() );
    centerPreguardBox.add( Box.createGlue() );
    centerPreguardBox.add( Box.createGlue() );
    centerPreguardBox.add( Box.createGlue() );
    mainPreguardPanel.add( centerPreguardBox );
    //- add the buttons to the southPreguardBox
    southPreguardBox = Box.createHorizontalBox();
    southPreguardBox.add( Box.createHorizontalStrut( 10 ) );
    southPreguardBox.add( preguardSendButton );
    southPreguardBox.add( preguardCancelButton );
    mainPreguardPanel.add( southPreguardBox );Here, I am adding the panels to the JTabbedPane:
//- add the panels to the tabbed pane
   JTabbedPane pane = new JTabbedPane();
   pane.add( "EMOC", mainEmocPanel );
   pane.add( "PREGUARD", mainPreguardPanel );
}

This seems to be a commercial product. For the best chance at finding a solution I would suggest posting in the forum for HP Business Support!
You can find the Commercial Designjet board here:
http://h30499.www3.hp.com/t5/Printers-Designjet-Large-Format/bd-p/bsc-414
Best of Luck!
You can say thanks by clicking the Kudos Star in my post. If my post resolves your problem, please mark it as Accepted Solution so others can benefit too.

Similar Messages

  • Time Characteristics: MTD  and Yesterday (How to adjust for different times

    Hi,
    I have this report which runs daily without any user input based on
    Current Calendar Day (SAP Exit)-1  [for column 1 on the report]
    and
    Current Calendar Month  [for column 2 on the report]
    If today I want to run this report for the Jan 20, 2006 how best can this be done without the need for writing ABAP code?
    i.e. I want on the report,  column 1 as Yesterday(Jan 19, 2006)
    and column 2 MTD (Jan 20, 2006)
    Any help?

    Dear Amanda,
    The restriction on key figures is done in a similar way as the restriction on characteristics.
    I guess that you have a characteristic 0CALDAY "Calendar Day", which is restricted by variable 0DAT. By this you have defined the subset of your InfoProvider, on which you want to report.
    Now, add the key figure which you want to restrict by a fixed date. Select "Edit" from the key figure's context menu and drag 0CALDAY upon the key figure. Restrict 0CALDAY by "January, 29th 2006". Add the same key figure a second time and restrict it by variable 0CALMONTH. Add the same key figure a third time and restrict it by the fixed time frame "January, 1 2006" to "January, 20th 2006".
    This should work as you intended. If you have more than one key figure which has to be restricted in this way, it could be more appropriate to create a second structure with the above mentioned restrictions instead of restricting the key figures directly.
    Greetings,
    Stefan

  • How can i combine different numbers spreadsheets into one numbers document?

    I am migrating from Excel. This is easy to do in Excel but I can't figure it out for Numbers. I have created four different Numbers docs and I want to have them in one document, so i can move between them conveniently and also to create a single pdf file with four sheets...which simplifies emailing to non-mac users. Can anyone tell me how i do this please?
    thx lawrence

    Hello
    Yes, select a sheet, copy it in the clipboard then paste into the main spreadsheet.
    There is no built-in tool allowing exchanges between two documents.
    Yvan KOENIG (from FRANCE vendredi 4 janvier 2008 12:20:17)

  • Iweb auto adjust for different computer monitor settings

    Nobody has the same display settings on their monitor, so how can I get iweb to auto adjust to different computer monitor settings?

    Are you referring to screen size? If so many prefer to have their browser window set to the size they want unlike PCs in which the browsers usually always fill the screen blocking out the desktop.
    Why not set your site width to a size that can be utilized by all, desktops, laptops and mobile devices. Apple recommends 980 pixel width for that.
    There was a post about this some time ago with, if I recall correctly, some code to do that. I think Cyclosaurus posted it but am not sure.
    I know its a personal preference but when I land on a site that forces my browser to fill the screen I leave and don't go back.
    OT

  • LSMW recording for different numbers of materials

    Dear all,
    In the LSMW recording-trcode at VBO1- I enter material codes. But the number of  material codes are changeble. For instance for a customer I can enter 5 material codes; for another customer I can enter 12 material codes. For this reason,
    I created recording template for 15 materials.
    When I run the LSMW it gives errror. because I entered 3 material for a spesific customer. It wants other 12 material codes.
    As result;
    How can I create a template for various numbers of materials?
    For example
    customer1 I want to run LSMW for  3 materials
    customer2 I want to run LSMW for  5 materials.
    Thanks

    Hi
    I am not exactly sure of the problem, but you have 15 material columns refering to the line items possible in ALL sales orders/contracts.  Ensure that you have a ZERO in the colomns not being posted to.  The zero in Excel has to set to text I think, but check the SDN for further on that matter.  When you save as a text file, or CSV file, open it with wordpad.  You should see the 0 there, if not search SDN.
    Something else you can do is the have the field names that become you source field in the LSMW.  See Maintain source fields in the LSMW.  Use the field names that you have given there as the excel file's header line.  i.e.  line 'A'.  When you select your file to be loaded under 'specify fields', tick the box : - Field names at start of file.
    It will then only take the amounts that are there and not put the amount in the next place.  I am not sure with recording in SD, but record the item numbers from a static 10,20,30,40,50 .....ETC TO 150.  Then have source fields for all 15 line items.
    You could have another material created as a non-valuated material and so it won't post anywhere.  Add this material where necessary.
    Hope this is of help
    Kind regards
    Dawn

  • Heartbeat failure monitor - how to adjust for specific agent

    hi guys,
    in our environment we put the default heartbeat settings to 10 samples and 60 seconds intervals. 
    i have a customer asking for different values on a specific machine hs is the owner of. i looked around and found this:
    http://technet.microsoft.com/en-us/library/cc540380.aspx
    acording to this article, i can change the interval for a specific agent but i can't do the same for the amount of samples (it says i can only control the amount of samples at the MS level). is that indeed correct? i mean, if i want all my environment to
    have a value of 10 samples and 1 specific server to have the value of 5 samples, it can't be done?
    thanks a lot,
    Uri

    Hi,
    You could change the Global Heartbeat Settings,it change the heartbeat interval at the global level. Changes made in this procedure affect all the agents in the management group.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Scripting for different numbers of table rows in cs3

    As always thank you for the help.
    My question: is there a simple newbie way to script for stroke placements when the numbers of rows in the category between the stroke will vary. I have not even attempted to script this style, as frankly I don't know where to start, but here is an explanation of what I need:
    The table foodstuff contains:
    animal, vegetable, fruit
    Under animal there is:
    beef, lamb, pork, poultry
    Under vegetable there is:
    potato, pepper, onion
    Under fruit there is:
    orange
    If wanted a line under each category, ie after poultry, after onion, and after orange how would I go about it.
    Thank you to all who have helped me so far, either by reading answers to other people's queries, or by responding directly to my own

    Interesting ... I don't think there is a newbie-level answer to this challenge. It comes down to finding the first (left-to-right) cell that contains text, and adding a line on top of it all the way to the last cell in that row.
    Here's a first attempt:
    table = app.selection[0];
    if (table.hasOwnProperty("baseline"))
    table = table.parent;
    if (table instanceof Cell)
    table = table.parent;
    if (table instanceof Column)
    table = table.parent;
    if (table instanceof Row)
    table = table.parent;
    if (table instanceof Table)
    table.cells.everyItem().properties = {topEdgeStrokeWeight:0, bottomEdgeStrokeWeight:0, leftEdgeStrokeWeight:0, rightEdgeStrokeWeight:0};
    table.rows.lastItem().bottomEdgeStrokeWeight = 1;
    for (r=0; r<table.rows.length; r++)
      for (c=0; c<table.rows[r].cells.length; c++)
       if (table.rows[r].cells[c].contents)
        for (; c<table.rows[r].cells.length; c++)
         table.rows[r].cells[c].topEdgeStrokeWeight = 1;
        break;
    } else
    alert ("You were supposed to be somewhere inside a Table");

  • How to check for Optional Oracle 10gR2 components installed?

    Hi
    How can I get a list of all optional oracle database components/features installed (some of them may require additional license)? I was going through list of directory objects in a database and I spotted "ORACLE_OCM_CONFIG_DIR" in one of the databases (others don't have it). When I checked, it turned out to be a directory required for Oracle Configuration Manager (this may even be a totally separate install).
    I have to configure a new oracle database server where I have to install whatever is installed on an existing one.
    Oracle 10gR2 - RHEL 5.8
    Please advise!
    Best regards

    Thanks for your response. I just checked the output and "Oracle Configuration Manager" is not listed.
    EM
    Oracle Enterprise Manager
    10.2.0.5.0
    VALID
    EXF
    Oracle Expression Filter
    10.2.0.5.0
    VALID
    SDO
    Spatial
    10.2.0.5.0
    VALID
    ORDIM
    Oracle interMedia
    10.2.0.5.0
    VALID
    AMD
    OLAP Catalog
    10.2.0.5.0
    VALID
    XDB
    Oracle XML Database
    10.2.0.5.0
    VALID
    CONTEXT
    Oracle Text
    10.2.0.5.0
    VALID
    OWM
    Oracle Workspace Manager
    10.2.0.5.0
    VALID
    ODM
    Oracle Data Mining
    10.2.0.5.0
    VALID
    CATALOG
    Oracle Database Catalog Views
    10.2.0.5.0
    VALID
    CATPROC
    Oracle Database Packages and Types
    10.2.0.5.0
    VALID
    JAVAVM
    JServer JAVA Virtual Machine
    10.2.0.5.0
    VALID
    XML
    Oracle XDK
    10.2.0.5.0
    VALID
    CATJAVA
    Oracle Database Java Packages
    10.2.0.5.0
    VALID
    APS
    OLAP Analytic Workspace
    10.2.0.5.0
    VALID
    XOQ
    Oracle OLAP API
    10.2.0.5.0
    VALID
    So there may be more that are not listed but installed.
    Best regards

  • How to adjust to different screen resolutions in a report

    My question is if we have a report to submit to any officials, we prepare our report by adjusting the line count according to our system screen resoulution,what if the official has other resolution in his system.so please tell me how to solve the problem while submiting a report.

    hi
    good
    when you r submitting a report to an official than the system resolution must be different,if it is not than there wont be any problem.Besically in the normal report the resolution wont be a problem , yes sometime in case of sapscript and smartform reports it may happens.I dont think there is any provision in these two kinds of report where you can set the resolution of another system.
    thanks
    mrutyun

  • APODP How Forecast model for different product can be define ?

    Hi Gurus,
                 I had forecast 1000 products and in that thousand products i have 300 slow moving products and 700 fast moving products.
    I had taken Linear regression model for this products and run the forecast. My question is i wanted to forecast 300 slow moving products with Seasonal Model , can anyone please mention how we can forecast 1000 products with two different forecast models?
    Waiting for your answers
    Regards & Thanks
    Raj

    Hi Raj,
              A little concept clarification here. The was forecasting model works is"
    1. You create a forecasting model giving a key figure for which you want to forecast and assign a univariae or MLR or composite profile to it assigning a key figure which you want to use as history and a statistical model. (TCODE: MC96B)
    2. Create a selection profile in interactive planning screen (TCODE: SDP94). Select all the products you want to plan for in this profile along with other selections.
    3. Assign forecasting profile to the profile. This way you can assign different forecasting models to different profiles.
    In your case,
    1.Create two forecasting profiles one with Linear regression and the other with Seasonal model.
    2. Create 2 selection profiles one with the 300 products and other with the other 700 products.
    3. Assign Linear regression to one selection profile and seasonal model to another profile.
    Hope this elaborates the solution. Please let us know if you have any other questions.
    Thanks.

  • Recording picking up click/clack shoe background noise - how to adjust for voice only.

    Hi, and thank you for taking the time to help me.
    Today, as a beginner to Adobe Audition, I wanted to record a video with backup audio for my students.
    So, I plugged my wireless mic into the computer, opened adobe audition, selected new, and then hit record. Nice & easy.
    However, when I played it back, the sound of my shoe going clip/clop on the floorboards as I was walking around, was picked up (and very well too!).
    How do I change the settings so the software/microphone only pics up my voice and not other noises?
    Thanks,
    Jane.

    JB5366 wrote:
    Hi There, it's a lapel microphone, clicked on the collar of my shirt.
    I've used other audio programs before and this hasn't happened. I started using audition as a recommendation from a friend as he said it would produce a cleaner sound.
    Thank you for your time.
    Audition has many merits and many abilities but "producing a cleaner sound" isn't one of them.  The sound you get is determined by a mix of your microphone and the audio interface used to input this into your computer.  Audition simply records the data handed to it by your mic and interface with no additional processing whatsoever.
    Most clip on lav mics have an omni pickup pattern which means they pick up equally from every direction.  This makes them fairly susceptible to room acoustics--a harder floor or barer wall could be part of your culprit.
    At the risk of sounding facetious...and I don't mean to...have you considered soft soled shoes?

  • Mrp run to do  for different numbers in a sale order

    Dear Sir,
    we are doing make to order planning strategy 20  and receiving sale order on august 2008 of 7 nos and delivery date  is of 21 july 2009.
    my  client needs to do mrp run  as per the client planned date  , but in md04 the sale order is showing of 7nos .
    the client planning date are as follows  to do mrprun :
    31st May 2009 - 2 nos
    30th june 2009 - 2 nos
    21st july 2009 - 3 nos
    so I kindly request you to help me how we can do the mrprun as per the client planning date and also what is the flow  path to be done.
    In making a finished product we are giving packing as outsourcing ( i.e. labour coming from outside getting wood and othermaterial for packing )  for this how can i show in the routing of packing.
    regards,
    muralidhar.t

    Muralidhar,
    Let me understand, on what basis the client decides to run MRP for Schedule Line 3 & 4? Is is based on the deliveries for the next 2months and the other schedule line are behyond 2months from now?
    Though your scenario is not clear, with my little understanding I can suggest couple of options,
    1. You can define Planning Horizon for the Plant say for example "60" - Days, and then your MRP run can be with "NETPL"- Processing key in MD01. What this means is that deliveries or requirements which are falling within this 60days will only be planned.
    Planning horizon should be configured in the MRP - Parameter Master data section in SPRO.
    2. For all the schedule lines you can change the Schedule Line category to "CN" instead of "CP". CN related schedule lines are not considered in MRP for planning.
    Regards,
    Prasobh
    Regards,
    Prasobh

  • How to check for different crop aspect ratios

    The problem I'm having is that I have hundreds of images that I need to send to a photo print lab. Before sending off my images I have to make sure they all will fit correctly for 8x10 prints (5:4 aspect ratio) and other ratios but I need to keep them cropped in my camera's default 3:2 aspect ratio for people who want to buy 4x6 prints.
    So what I do when I open all my images in Bridge's Camera RAW browser is fit and crop any images that need cropping but using the 3:2 aspect ratio. I then need to check to see if my crop will work as an 8x10 crop picture so that nobody's heads are cut off, etc. The problem Bridge is giving me is that when I crop the first time it doesn't allow me to check another crop without losing the original first crop. For example, I do my first crop as an 3:2 aspect ratio and then when I click on 5:4 to check for 8x10 prints it resizes the crop area which lets me check the crop for 5:4 but when I go back to 3:2 it doesn't go back to the original crop so I have recrop the original crop from memory. Is there any way to solve this problem? Basically crop it twice without loosing the first crop so that I can go back.
    Also is there any way to quickly click on all aspect ratios like 5x7, 8x10, etc and have the crop centered in the image so that I can quickly check if anything is cut off? My lab is a high volume automated photo lab so they crop by using the center of each picture and I can only give them one image per person. Most of my images don't need cropping because I try to do it in camera but I have to check to see if they will fit for other crop sizes. Currently Bridge makes me create the crop size manually and then visually center the crop over my image. I would prefer quick buttons that when clicked on will show me what the crop will look like in different crop ratios. Is there anyway to do that?
    Thanks for any help you can give me

    You might want to try this in Adobe Lightroom (it uses the same Camera Raw
    engine as PS and Bridge).
    In the develop mode you can use the crop tool with presets and custom
    options that works faster and has an easier and better history tool to
    retrieve your original crop setting than Camera raw in Bridge and PS has to
    offer.
    I would prefer quick buttons that when clicked on will show me what the crop
    will look like in different crop ratios. Is there anyway to do that?

  • How to adjust for distorted colors printing on HP 8500 A909g.

    In regard to HP All In One 8500 A909g.  Photos look great on computer screen but print with an overall red hue.  I can eventually adjust the color to get a good print but it wastes a lot of ink getting there.  Why doesn't my printer print the colors on the screen? And is there a way to permanently adjust the color?  Computer is running Vista.

    Thanks for your time, I've included links to 2 HP documents that may help you with the issue you are having with print quality.
    http://h10025.www1.hp.com/ewfrf/wc/document?docnam​e=c01980797&tmp_task=solveCategory&cc=us&dlc=en&la​...
    http://h10025.www1.hp.com/ewfrf/wc/document?docnam​e=c01624436&tmp_task=solveCategory&cc=us&dlc=en&la​...
    Dave M.
    Say Thanks by clicking the Kudos Star in the post that helped you.
    Please mark the post that solves your problem as Accepted Solution.
    I am an HP employee.

  • Linksys EA3500 Signal Problems: How to Adjust for Maximum Stability

    I have ATT DSL service; 6Mbps down, .5 Mbps up.  That is the maximum offered where I live.  I have  no phone service on the line and use VOIP.  I have discovered that the QOS degrades to awful at random times.  Awful means .79 down, .24 up, with ping of 430 ms, Jitter at 100, and Packet Loss unmeasurable.   Unfortunately, and I say this because ATT won't do anything about it, if I perform cold start on my network, after an initial somewhat unstable period of a couple of minutes, the network stabilizes at a good QOS.  The VOIP goes from unintelligible to working fine.  
    I've set my EA3500 QOS settings so that the VOIP unit (OOMA) has top priority.  Other streaming units (Blue Ray/Amazon Prime and Dish) come next, then internet.  The streaming units are not a factor in this because they are not on when the VOIP problems occur.  (Although, when the units are on, we can see the signal dipping below 1 Mbps at times and the video freezes while the stream catches up.)
    What functionality can I manipulate on the EA3500 to maximize stability and monitor the signal in so that I can present ATT with an indisputable trace of poor signal data.  

    I do not think there’s something we can do on the router since obviously the issue is with the modem through your internet provider. I suggest, you run a speed test from the modem at least 5 times; observe and record the speed you’re getting in every test. Inform then your ISP about it. They could also perhaps troubleshoot the modem to make sure it is working properly. Everything should be good from their end considering the VOIP service is supported by it and not by the router.

Maybe you are looking for

  • Voice Recognition and iPhone 5S

    Most of the time when I'm using my iPhone 5 (32 GB) it's in association with voice recognition, e.g. sending emails, sending texts, dictating notes, etc. As you know, iOS 7 allows you to dictate for about 15-20 seconds before cutting you off in order

  • Change Profit Center in FI/CO document for Network or WBs

    The client does not want to change the profit center assignment on the network or WBS. Finance would like the ability to change the profit center when the FI/CO document is created. When trying a FI or CO substitution , we keep getting an error messa

  • Title of Page Frame in Browser - How to Change?

    Hello, New to this. One quick question.... When you create a site in iWeb, the page title (or top frame in the browser) reflects the name of the page, and I can't find a way to edit that portion of the page. For example, the homepage of my site is ca

  • Is it possible to use Click Function in Dropdownbox?

    Hello everybody, I have a question on dropdownbox GUI element: is it possible to use the attribute of DropDownBox to realize the 'Click ' function?That means when one value from DropdownBox being selected,some action will be done. I checked the attri

  • Workflow: State change on given date

    Hi, another problem: the state of a workflow shall change, when the start time of an entry has reached. As there is no "on start time" but "after start time", I tried "0 minutes" or "0 days" - but the change won't happen. If I choose a start time in