Two RichTextFields on the same line

I am writing two RichTextFields in the same line, but one of them with a font in bold and plain text for the other. I do this, but for some reason any the second richtextfield is not shown in my screen. I have no idea what I'm doing wrong...

myFontNegrita = Font.getDefault () .derive (Font.BOLD, 16);
myFont = Font.getDefault () .derive (Font.PLAIN, 16);
      
hfmHoraInicio = new HorizontalFieldManager();
labelInicioAplicacion = new RichTextField ("my text:", Field.READONLY |) Field.NON_FOCUSABLE);
labelInicioAplicacion.setFont (myFontNegrita);
       
textoInicioAplicacion = new RichTextField ("blablabla", Field.READONLY |) Field.NON_FOCUSABLE);
textoInicioAplicacion.setFont (myFont);
       
hfmHoraInicio.add (labelInicioAplicacion);
hfmHoraInicio.add (textoInicioAplicacion);

Add (hfmHoraInicio);

Thanks in advance.

I guess that the RichtTextField takes all the available horizontal space by default. Perhaps the style RichtTextField #USE_TEXT_WIDTH help?

Tags: BlackBerry Developers

Similar Questions

  • How to paint two ObjectChoiceField on the same line

    Hello Experts!

    I tried to draw two ObjectFieldChoice on the same line, but the work doesn´t, I found this post that have the same problem as me, but the fix doesn´t works for me.

    My code:

    ...
                      String[] tipos = new String[] {"BLA1", "BLA2" };
            _tipo = new ObjectChoiceField(null, tipos, 0, FIELD_VCENTER) {
                protected void layout(int width, int height) {
                    super.layout(width - 235, height);
                }
            };
            _tipo.setBorder(BorderFactory.createSimpleBorder(new XYEdges(1, 1, 1, 1)));
            _tipo.setFont(Utils.getFont());
    
            FCLabelField lblTipo = new FCLabelField(_tipo_filtro, FIELD_VCENTER, false);
    
            String[] opcoes = new String[] { "BLA3", "BLA4", "BLA5", "BLA6"};
            _situacao = new ObjectChoiceField(null, opcoes, 0, FIELD_VCENTER) {
                protected void layout(int width, int height) {
                    super.layout(width - 346, height);
                }
            };
            _situacao.setBorder(BorderFactory.createSimpleBorder(new XYEdges(1, 1, 1, 1)));
            _situacao.setFont(Utils.getFont());
    
            FCLabelField lbl = new FCLabelField(_filtro, FIELD_VCENTER, false);
    
            CustomButtonField btConsultar = new CustomButtonField("Submit");
            HorizontalFieldManager hfmButton = new HorizontalFieldManager(FIELD_VCENTER);
            hfmButton.add(btConsultar);
    
            HorizontalFieldManager hfm = new HorizontalFieldManager(FIELD_LEFT);
            hfm.add(lblTipo);
            hfm.add(_tipo);
            hfm.add(lbl);
            hfm.add(_situacao);
                      add(hfm);
    ...
    

    I m waitting for more help.

    Best regards, Rampelotti

    The way I would approach this scenario is firstly by adding two fields of object list to a horizontal management.

    Resize the fields until they are exactly where you want to be.

    Once you did, then you can begin to add the label fields, centering, resizing and so on.

    Do it step by step.

    Also subtract 200 + pixels in width is not a good idea, especially on small devices.

    Hope this helps

  • Two RadioButton on the same line with any idea...

    Hello

    Can I add two RadioButton singel online...

    I m using HorizontalFieldManager with him

    but only the first button is visible... give me a solution simple and good for this please help me.

    Thank you

    Himanshu

    Beginner

    Please find the Code below and try it and let me know...

    radioButtonGroup = new RadioButtonGroup();
    
            radioButtonField = new RadioButtonField("Radio 1", radioButtonGroup,
                    true, 0) {
                protected void layout(int arg0, int arg1) {
                    setExtent(Display.getWidth() / 2, arg1);
                    super.layout(Display.getWidth() / 2, arg1);
                };
            };
            radioButtonField1 = new RadioButtonField("Radio 2", radioButtonGroup,
                    false, 0) {
    
                protected void layout(int arg0, int arg1) {
                    setExtent(Display.getWidth() / 2, arg1);
                    super.layout(Display.getWidth() / 2, arg1);
                };
    
            };
    
            HorizontalFieldManager hfmFieldManager = new HorizontalFieldManager() {
                protected void sublayout(int maxWidth, int maxHeight) {
                    setExtent(Display.getWidth(), maxHeight);
                    super.sublayout(Display.getWidth(), maxHeight);
                }
            };
    
            hfmFieldManager.add(radioButtonField);
            hfmFieldManager.add(radioButtonField1);
    
            add(hfmFieldManager);
    
            add(new LabelField("This label is below the two radio buttons",FOCUSABLE));
            add(new ButtonField("Click ME!"));
    
  • I tried for AN HOUR to find a way to put the two different fonts on the same line

    Pages is crap. I tried for AN HOUR to find a way to put the two fonts on the same line, even if I highlight 1 WORD, the whole line changes (if you know how to do that please tell me, I'll me CRAZY!). Wouldn't recommend, that Word is 100 x better and easier to use

    < published by host >

    Hi varn,.

    Seems to work here (Pages of screen capture):

    Select (highlight) the text you want to change. Click on the Format brush, and then click Style. Choose the font you want to use.

    The example above is in the text layer. I also tried in a text box and a table cell.

    I also tried to change the font for a single word of a line of text in Pages for iOS. The police has changed to the selected word, while the rest of the line remained in the police, he had previously.

    Cannot test it in 5 Pages, because I have not installed. The above example is Pages ' 09.

    It is possible that you have applied to a paragraph Style, what would change everything in the paragraph containing the insertion point.

    Kind regards

    Barry

    PS: MS Word is available for OS X, if you feel the need to switch.

    B

  • two radio buttons on the same line

    Hello

    I wanted to add two option buttons, which should appears on the same line, which is provided for in the other. How can ido that?

    I try like this:

    VerticalFieldManager vfmMain;
    HorizontalFieldManager hfmRadio;

    Household RadioButtonField, rSetup;

    Household = new RadioButtonField ("View");
    rSetup = new RadioButtonField ("Setup");

    hfmRadio = new HorizontalFieldManager (HorizontalFieldManager.FIELD_HCENTER);

    hfmRadio.add (household);
    hfmRadio.add (rSetup);

    vfmMain = new VerticalFieldManager(VerticalFieldManager.HORIZONTAL_SCROLLBAR |)
    VerticalFieldManager.VERTICAL_SCROLLBAR);

    vfmMain.add (hfmRadio);

    but his he sent me some exception.

    any idea?

    Thanks in advance.

    Hey guys find a solution very simple for this

    VerticalFieldManager vfmMain;

    HorizontalFieldManager hfmTemp;

    vfmMain = new VerticalFieldManager();

    hfmRadio = new HorizontalFieldManager();

    RadioButtonGroup grp;

    View RadioButtonField, Setup;

    GRP = new RadioButtonGroup();

    view = new RadioButtonField ('View', grp, true, RadioButtonField.FIELD_LEFT);

    Setup = new RadioButtonField ("setup", grp, false, RadioButtonField.FIELD_RIGHT);

    hfmRadio.add (view);

    hfmRadio.add (setup);

    vfmMain.add (hfmRadio);

    try this if someone is loking for the option button

  • Mr President, how can I enter two rows at the same time with different default values that only the first line to use see?

    Mr President.

    My worm jdev is 12.2.1

    How to enter two rows at the same time with different default values that only the first line to use see?

    Suppose I have a table with four fields as below

    "DEBIT" VARCHAR2(7) , 
      "DRNAME" VARCHAR2(50),
      "CREDIT" VARCHAR2(7) , 
      "CRNAME" VARCHAR2(50),
    

    Now I want that when I click on a button (create an insert) to create the first line with the default values below

    firstrow.png

    So if I click on the button and then validate the second row with different values is also inserted on commit.

    The value of the second row are like the picture below

    tworows.png

    But the second row should be invisible. It could be achieved by adding vc in the vo.

    The difficult part in my question is therefore, to add the second row with the new default values.

    Because I already added default values in the first row.

    Now how to add second time default values.

    Concerning

    Mr President

    I change the code given by expensive Sameh Nassar and get my results.

    Thanks once again dear Sameh Nassar .

    My code to get my goal is

    First line of code is

        protected void doDML(int operation, TransactionEvent e) {    
    
            if(operation != DML_DELETE)
                 {
                     setAmount(getPurqty().multiply(getUnitpurprice()));
                 } 
    
            if (operation == DML_INSERT )
                       {
                               System.out.println("I am in Insert with vid= " + getVid());
                           insertSecondRowInDatabase(getVid(),getLineitem(),"6010010","SALES TAX PAYABLE",
                            (getPurqty().multiply(getUnitpurprice()).multiply(getStaxrate())).divide(100));      
    
                           }
    
            if(operation == DML_UPDATE)
                              {                                                    
    
                                 System.out.println("I am in Update with vid= " + getVid());
                             updateSecondRowInDatabase(getVid(),
                                 (getPurqty().multiply(getUnitpurprice()).multiply(getStaxrate())).divide(100));      
    
                              }                      
    
            super.doDML(operation, e);
        }
        private void insertSecondRowInDatabase(Object value1, Object value2, Object value3, Object value4, Object value5)
                  {
                    PreparedStatement stat = null;
                    try
                    {
                      String sql = "Insert into vdet (VID,LINEITEM,DEBIT,DRNAME,AMOUNT) values " +
                 "('" + value1 + "','" + value2 + "','" + value3 + "','" + value4 + "','" + value5 + "')";  
    
                      stat = getDBTransaction().createPreparedStatement(sql, 1);
                      stat.executeUpdate();
                    }
                    catch (Exception e)
                    {
                      e.printStackTrace();
                    }
                    finally
                    {
                      try
                      {
                        stat.close();
                      }
                      catch (Exception e)
                      {
                        e.printStackTrace();
                      }
                    }
                  }  
    
                  private void updateSecondRowInDatabase(Object value1, Object value5)
                  {
                    PreparedStatement stat = null;
                    try
                    {
                      String sql = "update vdet set  AMOUNT='"+ value5+"' where VID='" + value1 + "'";                     
    
                      stat = getDBTransaction().createPreparedStatement(sql, 1);  
    
                      stat.executeUpdate();
                    }
                    catch (Exception e)
                    {
                      e.printStackTrace();
                    }
                    finally
                    {
                      try
                      {
                        stat.close();
                      }
                      catch (Exception e)
                      {
                        e.printStackTrace();
                      }
                    }                  
    
                  }
    

    Second line code is inside a bean method

        public void addNewPurchaseVoucher(ActionEvent actionEvent) {
            // Add event code here...
    
            BindingContainer bindings = BindingContext.getCurrent().getCurrentBindingsEntry();
                   DCIteratorBinding dciter = (DCIteratorBinding) bindings.get("VoucherView1Iterator");
                   RowSetIterator rsi = dciter.getRowSetIterator();
                   Row lastRow = rsi.last();
                   int lastRowIndex = rsi.getRangeIndexOf(lastRow);
                   Row newRow = rsi.createRow();
                   newRow.setNewRowState(Row.STATUS_NEW);
                   rsi.insertRowAtRangeIndex(lastRowIndex +1, newRow);
                   rsi.setCurrentRow(newRow);
    
                   BindingContainer bindings1 = BindingContext.getCurrent().getCurrentBindingsEntry();
                   DCIteratorBinding dciter1 = (DCIteratorBinding) bindings1.get("VdetView1Iterator");
                   RowSetIterator rsi1 = dciter1.getRowSetIterator();
                   Row lastRow1 = rsi1.last();
                   int lastRowIndex1 = rsi1.getRangeIndexOf(lastRow1);
                   Row newRow1 = rsi1.createRow();
                   newRow1.setNewRowState(Row.STATUS_NEW);
                   rsi1.insertRowAtRangeIndex(lastRowIndex1 +1, newRow1);
                   rsi1.setCurrentRow(newRow1);
        }
    

    And final saveUpdate method is

        public void saveUpdateButton(ActionEvent actionEvent) {
            // Add event code here...
    
            BindingContainer bindingsBC = BindingContext.getCurrent().getCurrentBindingsEntry();      
    
                   OperationBinding commit = bindingsBC.getOperationBinding("Commit");
                   commit.execute(); 
    
            OperationBinding operationBinding = BindingContext.getCurrent().getCurrentBindingsEntry().getOperationBinding("Commit");
            operationBinding.execute();
            DCIteratorBinding iter = (DCIteratorBinding) BindingContext.getCurrent().getCurrentBindingsEntry().get("VdetView1Iterator");// write iterator name from pageDef.
            iter.getViewObject().executeQuery();  
    
        }
    

    Thanks for all the cooperation to obtain the desired results.

    Concerning

  • Presentation of the grid - get two or more fields to display on the same line.

    I use version 4.2.

    I have a form with a number of elements.

    I want to control the display of items so that some fields are next to each other (on the same line or line).

    I put the provision of grid as follows:

    : PX_ITEM1
    Start the new row: Yes
    Column: automatic
    Scope of column: automatic

    : PX_ITEM2
    Start the new row: No.
    Column: automatic
    New section: Yes
    Scope of column: automatic



    When I do that the items are not displayed on the same line.

    I can see when you change "Start a new line" from no to Yes, the item fields ARE moved to the same < Div > that controls the line, but they are not just show how I would that they.

    Anyone have this working?

    Amanda.

    Hi Amanda,.

    I think I discovered the cause of the issue, that you face.

    The problem is with the model of region "Region alert" and that there no any view defined points indicated the number of grids that can fit into his body in the region. Without any screen edge, the grid layout system attempts to use all the columns available to its container. However, because the alert region extra internal padding, columns won't work and the next line.

    To resolve this problem, you need to change the model of region "Region alert", go to "Points of view" and click Add a line. You will need to enter the following fields:

    Name: organ of the region
    Substitution model: BODY
    Rack support: checked
    The maximum fixed grid columns: -1

    This will fix the problem for you. I logged a bug in our bug for this system follow so we can fix it in a later version of the APEX.

    Best,
    Lyna

  • How to put the button on the same line

    I am having some problems with the buttons. I have the main screen with a verticalmanagerfield parent, who has two sons a richtextfield and an editfield (these two are the same on both of the gpsdemo)

    I want to put 3 buttons under the sons of two field and these 3 buttons that we're going to be son of verticalmanagerfield, but I can't put them on the same line

    I'll show you two pictures what I mean

    first image: I see now

    second image: what I want

                HorizontalFieldManager hfm = new HorizontalFieldManager()
                {
                    protected void sublayout(int width, int height)
                    {
                        Field field;
                        int numberOfFields = getFieldCount();
                        int x = 0;
                        int y = 0;
                        width=250;
                        height=50;
    
                        for (int i = 0;i < numberOfFields;i++)
                        {
                            field = getField(i); //get the field
                            setPositionChild(field,x,y); //set the position for the field
                            layoutChild(field, width, height); //lay out the field
                            x += 120;
                        }
                        setExtent(width, height);
                    }
                };
    
                 hfm.add(new ButtonField("Button 1"));
                 hfm.add(new ButtonField("Button 2"));
    
  • I want the address bar so that my bookmark bar can show more than three icons when it is placed on the same line.

    I have about five to ten icons bookmark in the same line as the search and address bar. So I use customize... and I put the bookmarks on the same line bar. I leave the "name"-textbox in each bookmark in white so that only the icons. ""

    However, only two icons appear and the rest are displayed in a drop-down list with an arrow you click.

    I need not address bar to take 70% of the screen. I don't want the bookmarks bar to use an additional line. I just want to have the icons of bookmark five to ten next to my search and address bar. Is this possible?

    The address bar and the search bar, that both have a flex attribute that makes then take all available space.

    Items in Bookmarks Toolbar folder probably has a minimum width that can just make a bookmark with a maximum length label (in your case two icons).

    You can set the width of the address bar and the search bar to force a maximum width of these two bars max.
    Definition of a minimum width for the bookmarks toolbar items will probably work as well.

    Add code to the file userChrome.css below default @namespace (setting the width according to your needs).

    Customization files (interface) userChrome.css and userContent.css (Web sites) are located in the chrome folder in the user profile folder.

    @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    
    #urlbar-container { max-width: 400px !important; }
    #search-container { max-width: 200px !important; }
    

    You can use this code to set a minimum width for bookmarks toolbar items if you want to experiment with that.

    You may need to set a width max as well.

    #personal-bookmarks { min-width: 200px !important; }
  • Please explain CVI question #335358: using the operator of bit-shift twice on the same line of code produces incorrect results

    Hello

    I just stumbled on http://www.ni.com/white-paper/12323/en#335358_by_Category.

    With the help of the bit-shift operator twice on the same line of code produces incorrect results.
    Workaround: Separate the operations of shift of two bits in two distinct lines of code.

    Reported Version: 9.0    Solved Version: N/A    Added the: 14/02/2012

    Could someone please explain what kind of construction causes such a question?

    I have not noticed problems again and not have not noticed or found a thread about it.

    Thank you.

    The reported scenario looks like this:

    unsigned int a = 1, b = 62;
    unsigned  long long result = 1ULL << a << b;
    

    The problem arises because of the temporary variable used when do two little is placed in the same line. This separation into two lines will produce correct results:

    unsigned int a = 1, b = 62;
    unsigned  long long result = 1ULL << a;
    result = result << b;
    
  • You can play with two players on the same conlsoe on modern war

    XXXXXXXXXXXXXX

    Hi Capcurt,

    Welcome to the Microsoft Answers site!

    You try to play the game live with 2 players on the same console?

    Unfortunately, you can not go online with two people on the same console. Modern Warfare 2 allows a user to sign in when you play in multiplayer.

    Modern Warfare 2 is a completely new game mode that supports 2-player cooperative play in single line of the solo campaign in history. To do this, you will need two machines.

    For better support, you can contact Xbox Forums.

    http://www.xbox360forum.com/Forum/

    Hope this information is useful.

    Amrita M

    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • 2 phones connected to the same line with PAP2

    Hello

    Is it possible to connect a phone to the first port, a second, and use both in the same line?

    I configured and only works with a single line.

    Thank you

    Yair.

    Hello

    No, this is not the right way. The first port belongs exclusively to recording the line1, second port exclusively to recording of line 2.

    If you want two phones (such as another in the bedroom lounge) ringing on incoming call, simply use the "splitter" to make the phones at the same time and that's it - SPA/PAP Traffic has enough power to operate up to 3 analog telephone devices on each of the ports. I used to have 2 analog phones in parallel on (the only one) FXS ports of SPA-1001 and it works beautifully.

    PS: mae good course use you only 2-wire cable (internal thread) to connect the PAP2T FXS1 port and the phone (s). The 4-wire cable may make some analog phones crashing the device PAP2T IDE oucederomsurlesecondport FXS1.

  • EditField and checkboxfield on the same line

    public CheckFileScreen()
        {
            vfm = new VerticalFieldManager();
            left = new HorizontalFieldManager( Field.FIELD_LEFT);
            right = new HorizontalFieldManager( Field.FIELD_RIGHT);
            _Id = new EditField("Id : ", "", 6, EditField.FILTER_NUMERIC);
            _check = new CheckboxField("check", false);
                    left.add(_Id);
            right.add(_check);
            vfm.add(left);
            vfm.add(right);
            add(vfm);
            add(new SeparatorField());
        }
    

    on my above code tries to _id and _check on the same line, but the screen has been mess up

    +---------------

    | ID:

    | # check

    +----------------

    I want to create has been

    +----------------------

    | ID: # check

    +-----------------------

    could someone help me with this?

    This is the first time make app with GUI

    Gentlemen.

    slow down, please!

    Absolutely, totally useless any Manager available personalized for that! In order to organize two or more fields in a 'line', you just all of them to the same HorizontalFieldManager! The manager then places them from left to right in the order that you add them.

    That said - you have a slight problem in your EditField. EditField is "width-hungry" - it consumes the entire width, it is given, do not leave anything for the rest fields. To combat that, to deceive him into thinking he's got less space. We will give him what he needs to label 6 larger figures (s '8' or '9's, not '1') and a space for the padding. We will then have something like:

    _Id = new EditField("Id : ", "", 6, EditField.FILTER_NUMERIC) {
      protected void layout(int width, int height) {
        Font myFont = getFont();
        int myWidth = myFont.getAdvance(getLabel()) + myFont.getAdvance("8") * 6 + myFont.getAdvance(" ");
        super.layout(Math.min(myWidth, width), height);
      }
    };
    _check = new CheckboxField("check", false);
    HorizontalFieldManager hfm = new HorizontalFieldManager();
    hfm.add(_Id);
    hfm.add(_check);
    add(hfm);
    

    Enjoy!

  • StackLayout - button on the same line

    Hello

    I have always a problem with button and stacklayout: I can't have different button on the same line.

    A simple code like:

    Page {
                Container {
    
                    layout: StackLayout {
                        orientation: orientation.LeftToRight
                    }
                    verticalAlignment: VerticalAlignment.Top
                    horizontalAlignment: HorizontalAlignment.Fill
    
                    Button {
                        id: button1
                        text: qsTr("button1")
                        layoutProperties: StackLayoutProperties {}
                        horizontalAlignment: HorizontalAlignment.Left
                        verticalAlignment: VerticalAlignment.Top
                        preferredWidth: 20
    
                    }
    
                    Button {
                        id: button2
                        text: qsTr("button2")
                        layoutProperties: StackLayoutProperties {}
                        horizontalAlignment: HorizontalAlignment.Center
                        verticalAlignment: VerticalAlignment.Top
                        preferredWidth: 20
                    }
    
                    Button {
                        id: button3
                        text: qsTr("button3")
                        layoutProperties: StackLayoutProperties {}
                        horizontalAlignment: HorizontalAlignment.Right
                        verticalAlignment: VerticalAlignment.Top
                        preferredWidth: 20
                }
            }
    }
    

    often I have my button to the location of horizontal line, but vertically, each button is on a different line...

    Is there someone who could tell me why?

    Thank you

    Container{
        layout: StackLayout{
        orientation: LayoutOrientation.LeftToRight
        horizontalAligment: HorizontalAligment.Fill
    
        Button{text: "One"}
        Button{text: "Two"}
        Button{text: "Three"}
    }
    

    She hope it helps

  • EditField &amp; ButtonField on the same line

    First of all, I would like to apologize in advance if there is already a resolution for this problem, I searched google on and off for a few days while working on other parts of my application, but have been unable to find advice.

    I'm not new to programming, but I am relatively new to java and very new to the BlackBerry that's why I worked on something relatively simple, so I can get used to the user interface of programming programming.  A question, I have been unable to solve is how to place an EditField and a ButtonField on the same line with ButtonField sitting against the margin and right the EditField take the place of the left margin at the beginning of the ButtonField.  Graphically, that's what I'm trying to achieve:

    | [- EditField-] [- ButtonField-] |

    I tried to place the two fields inside the same HorizontalFieldManager and placing each field it contains is own Vertical or HorizontalFieldManager.  I also tried to use the FIELD_LEFT / FIELD_RIGHT styles, but can not find a way to stop the EditField of push of the ButtonField off the screen and using the width of the entire line for himself.

    I begin to suspect that I need to learn how to code a custom field Manager, this is the case, or is there something much more simple that I'm missing?

    Thanks in advance,

    Russ.

    The following Threads must explain what is happening here and give you example of code that will help you overcome the problem:

    http://supportforums.BlackBerry.com/T5/Java-development/BasicEditFields-won-t-show-up-in-HorizontalF...

    http://supportforums.BlackBerry.com/T5/Java-development/custom-field/m-p/392585#M76156

Maybe you are looking for

  • Touchpad cursor gets hard to control "woozy"

    Recently, I went back to using my Mac Pro 2009 after using a Macbook to the past two years for most. I upgraded to El Capitan first, and I decided to start a new account because I've been migrating the same account for 20 years. So all is cool enough

  • CalendarAgent close unexpectedly and more after the upgrade to 10.11.5

    After the upgrade to 10.11.5, I get popup after popup stating "CalendarAgent quit unexpectedly" (forgive the change of fonts copy paste) He's going to stay here until I have click and then within 10 seconds, it will return. After reboot, after forcin

  • Impossible to transmit emails that have more than 5 attachments!

    original title: transfer of emails that have more than 5 attachments! When I try to send an e-mail that has multiple attachments, I get a message box telling me that I can't send the message with more than 5 attachments and to remove enough spare to

  • Ports VPN Client NAT Traversal

    I need to allow access to the PC Firewall etc making PAT running VPN client to a PIX running 6.3 - what ports/protocols should be opened on the firewall etc? As far as I know, it will be UDP port 500 and TCP port 10000 (or all that will be configured

  • HP OfficeJet 4580 printer paper jams

    These paper jams began took place may 19, 2012, just after one of the printer drivers for my all in one HP officejet 4580 printer crashed my windows Vista o/s. My computer makes a diagnosis of the problem and immediately informed me that the accident