Jump from page to Page APEX

Hello

My APEX page consists of several HTML areas and mixed SQL reports. The user just wants to print from the web page. Now, I want the page to break at the specific point. The length of regions vary due to some dynamic content in them. Is there a way?

TexasApexDeveloper wrote:

HTML has really page breaks...

However the CSS only. The easiest way to do this is to apply static region ID for the regions you want to page breaks before and after and add a print media style sheet CSS Inline property page with the necessary Rules page break:

@media print {
#region-1 {
  page-break-before: always;
  }
#region-2 {
  page-break-after: always;
  }
}

Tags: Database

Similar Questions

  • My typing lags behind the typewritten letter. In addition, my msn Guard Homepage jump from page to another. Has not happened before.

    When I start typing a search in google I type some letters that hangs out at the typical time and google shows a few options and then completely implemented

    above. This has not happened before and no software or hardware has been added.

    I need your help to solve this problem. Thank you

    Hello dpvhouse,

    Have you performed a full scan of your anti-virus software or run any malware removal?  Otherwise, I suggest you try this and see if you can duplicate.

    Microsoft Answers: Informaton good by Vincenzo Di Russo

    http://answers.Microsoft.com/en-us/Windows/Forum/windows_vista-security/how-to-get-rid-of-malware/ba80504b-61f1-4D71-960f-b561798b7b42

    Microsoft Security Essentials:

    http://Windows.Microsoft.com/en-us/Windows/products/security-essentials

  • Should what message I to listen to know when a page is in jumps from the navigation pane

    Hello

    Is there a signal on the level of the page that will tell me when a page is in jumps from the navigation pane.  I wish I could stop some it is made on the page when he jumped and no longer in background processing mode.

    Where would I best handle this? I know that there is an onPopTransitionEnded on the navigation pane, but I would prefer to deal with in the qml file if possible...

    Thank you

    You can use the property on the page and Cisse inside the onPushTransitionEnded / onPopTransitionEnded
    For example:

    Page{
        property bool isActive: false
        onIsActiveChanged:{
            If (isActive){
                // start processing
            }else{
                // stop processing
            }
        }
        ....
    }
    

    And

    onPushTransitionEnded: page.isActive = trueonPopTransitionEnded: page.isActive = false
    
  • I am disabled and I use Windows speech recognition. If I work in Word or any text editor a document of 50 pages, how the computer for to jump me from page 1 to 10?

    Well, I started using Windows speech recognition, and everything went very well, is a great tool for me because I can't type on the keyboard, why I have disabled hands. I happen to work with Microsoft Word 2010 on the platform of Windows seven, a project of 50 pages and constantly say I need to change the page from one to ten, or five to twenty years. My question is if there is a way to say loud and clear to the computer I have jump off page one ten, twenty to forty years and so on.

    Well, I started using Windows speech recognition, and everything went very well, is a great tool for me because I can't type on the keyboard, why I have disabled hands. I happen to work with Microsoft Word 2010 on the platform of Windows seven, a project of 50 pages and constantly say I need to change the page from one to ten, or five to twenty years. My question is if there is a way to say loud and clear to the computer I have jump off page one ten, twenty to forty years and so on.

    Victor,

    In Word 2007 and 2010, the Page indicator is in the lower left corner of the document window. I said, "show numbers". Number 85 flashed on the Page and I say: '85. " Then the discovery of a dialog box replace opens the tab go to say something don't like, "sign more (give a short break) space 10" or "minus sign (pause) no space 20" after entering the + 10 or - 20 etc. say, "go to" ".

    Marty Markoe,
    2010-2011 Microsoft MVP

  • How to ACCEPT values on page APEX sent by external APEX through POSTmethod

    Hi people,

    How can I accept the values in my page APEX which are send to my page through the POST method from outside of my application?

    Sample test:
    Of non-apex application (simple html page), I would like to post 2 fields (field "Par1" and the field "Par2") in my APEX page. On my apex page I defined the areas P102_PAR1, P102_PAR2.
    <html>
    <HEAD>
      <TITLE>Tester</TITLE>
    </HEAD>
    <body>
         <h1>Test to POST form values into APEX page</h1>
         
         
         <form action="[my_url???]" method="POST">
              <table>
    
                   <tr>
                         <td>Par1</td>
                         <td>
                              <select name="Par1">
                                  <option value="OPTION1">Option 1</option>
                                  <option value="OPTION2">Option 2</option>
                                  <option value="OPTION3">Option 3</option>
                              </select>
                        </td>
                   </tr>
                   <tr>
    
                         <td><label for="Par2">Par2</label></td>
                         <td><input type="TEXT" name="Par2" id="Par2" size="30" value="123"></td>
                   </tr>
              </table>
              <input type="SUBMIT" value="send">
         </form>
    </body>
    </html>
    How can I define action URL in top shape, so once you press the "SUBMIT" button it will fill both fields in my apex page?
    My APEX (p102) page is a blank page, with only 2 fields P102_PAR1, P102_PAR2 text at the moment.

    Thank you very much
    Tomas


    ===========
    If I put above url to: ' http://cit-dev-as5:7780 / pls/he/f? p = 700:102:1659258057907233' (stright to my page & session sharing) and press "SUBMIT" button, then I recive below error message:
    f: SIGNATURE (parameter names) MISMATCH
    VARIABLES IN FORM NOT IN PROCEDURE: PAR1,PAR2
    NON-DEFAULT VARIABLES IN PROCEDURE NOT IN FORM: 
    
      DAD name: he
      PROCEDURE  : f
      URL        : http://cit-dev-as5:7780/pls/he/f?p=700:102:1659258057907233
      PARAMETERS :
      ===========
      P:
       700:102:1659258057907233
      PAR1:
       OPTION1
      PAR2:
       123

    Tomas:

    Treat the input of an external application that needs to be passed to an APEX application is to create a procedure from pl/sql intermediary who will receive the input of the external source and then format this entry as required by the syntax of the URL of the APEX and then re - direct the user to this URL APEX format.
    Using the example you provided you have the pl/sql procedure as follows

    Create or replace  procedure extinput(par1 in varchar2,par2 in varchar2) is
    l_apex_url varchar2(4000;
    begin
    l_apex__url:=
      'http://myhost:myport/apex/f?p=700:102::::P_102_PAR1,P_102_PAR2:' ||
       par1 ||','||par2;
    
    owa_util.redirect_url(l_apex_url);
    end;
    

    The names of parameters in your procedure must match the names of the fields of the POST.

    CITY

  • Page APEX control items are displayed using the APPS user!

    Hi friends,

    I am running an Apex Application of the Apps (E Business suite-> link to Application). When the user clicks on this link without asking the login of the APEX, the application is open based on credentials Apps. Now my problem is the customer requests to restrict the display of the elements of the page (i.e. buttons) in the Application of the Apps user login and accountability-based APEX.

    I know how to show the result as normal button: APP_USER = "ADMIN" for example. But I don't know how to control from APPS. As I am new to both I need help from you guys to get this functionality.

    I need the faster response because it is very urgent for me.

    Thank you
    Stéphane.

    When you call page APEX-separated values, you can set the Variable of APEX with comma

    For Ex.

    f? p = 102:1:F102_ORG_ID, F102_GL_SET_OF_BKS_ID, F102_RESP_ID, F102_USERID, F102_HOME_URL:' | vOrgId | ',' || vSobId | «, » || vRespId | «, » || vUserId | vURL

    Alternatively, you can pass these parameters as Cookies.

    Let me know if you need something more.

    HTH

    Dinesh

    Published by: DineshS on February 20, 2009 02:08

  • Problem in navigating from page A to page B

    Hello

    I have a problem and I'm stuck, please help me.
    I replaced the traditional menu that is based on af:navigationPane and af:commandNavigationItem with af:menuBar, af:menu and af:commandMenuItem inside the JhsPageTemplate.jspx file. I mean, I replaced this part
    -----
    < af:navigationPane id = "Menu2".
    rendered = "#{attrs.showMenu2} '"
    partialTriggers = "' Item2: pendingChangesDialog: Menu1 '"
    var = 'menuItem '.
    value = "#{attrs.menuModel} '"
    Level = "#{attrs.menuStartLevel + 1} '"
    Hint = 'bar' >
    < f: facet name = "nodeStamp" >
    < af:commandNavigationItem id = 'Item2 '.
    partialSubmit = 'true '.
    Text = "#{MenuItem.label} '"
    actionListener = "#{pageFlowScope.pendingChangesBean.handle} '"
    action = "#{MenuItem.doAction} '"
    rendered = "#{MenuItem.rendered}" >
    < / af:commandNavigationItem >
    -----

    with the menu which I built manually

    -----
    < af:menuBar id = binding = "#{MenuBean.menubar"mbMain"}" >
    < af:menu text = 'BASIC' id = "mBasic" rendered = "true" >

    < af:commandMenuItem id = "Signatories" text = "SIGNATORIES" rendered = 'true '.
    action = "uishell:Signers" partialSubmit = "false" / >

    < af:commandMenuItem id = "BSI" text = "BSI" rendered = 'true '.
    action = "uishell:BSI" partialSubmit = "false" / >

    < / af:menu >
    < / af:menuBar >
    -----

    For the action property of commandMenuItem, I used the action generated automatically in the files menu - property xxx.xml. Now I run the application and everything seems to work but when I navigate from page A to page B and refresh the browser by F5 an error like this message:

    javax.el.PropertyNotFoundException: inaccessible target, 'BSIDetailTable' returned null
    at com.sun.el.parser.AstValue.getTarget (unknown Source)
    at com.sun.el.parser.AstValue.setValue (unknown Source)
    at com.sun.el.ValueExpressionImpl.setValue (unknown Source)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:656)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:727)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:727)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:727)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:727)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:727)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:727)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:727)
    to oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.access$ 000 (LifecycleImpl.java:71)
    to oracle.adfinternal.view.faces.lifecycle.LifecycleImpl$ 1.call(LifecycleImpl.java:697)
    to oracle.adfinternal.view.faces.lifecycle.LifecycleImpl$ 1.call(LifecycleImpl.java:693)
    at oracle.adf.view.rich.component.fragment.UIXRegion.processRegion(UIXRegion.java:503)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:692)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:727)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:727)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:727)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:727)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:727)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:727)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:727)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:727)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:727)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:727)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:727)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:727)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:727)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._restoreView(LifecycleImpl.java:632)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:300)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:185)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
    to weblogic.servlet.internal.StubSecurityHelper$ ServletServiceAction.run (StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
    to org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$ FilterListChain.doFilter (TrinidadFilterImpl.java:446)
    at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
    to org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$ FilterListChain.doFilter (TrinidadFilterImpl.java:446)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
    at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.jheadstart.controller.jsf.AuthenticationFilter.doFilter(AuthenticationFilter.java:282)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    to oracle.security.jps.ee.http.JpsAbsFilter$ 1.run(JpsAbsFilter.java:111)
    at java.security.AccessController.doPrivileged (Native Method)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.wrapRun (WebAppServletContext.java:3715)
    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.run (WebAppServletContext.java:3681)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)


    the done "BSIDetailTable" refers to a table in the page in which I have sailed since, in the case of A page. I think that navigation has not been done correctly and completely, and the control is looking for something in the previous page. Action = "uishell:BSI" attribute is the same for the component af:commandNavigationItem and af:commandMenuItem component then why is - what happens?

    I use JDev 11.1.1.4 and JHs 11.1.1.3.35

    Kind regards
    Will do

    Will do,

    You must set partialSubmit = 'true', and the menu bar should have partialTriggers to listen to the menu items:




    Text = "employees".
    action = "uishell:Employees".
    rendered = 'true '.
    partialSubmit = "true" / >

    Text = "departments."
    action = "uishell:Departments".
    rendered = 'true '.

    partialSubmit = "true" / >

    Text = 'country '.
    action = "uishell:Countries".
    rendered = 'true '.
    partialSubmit = "true" / >

    Then, in UIShell.jspx, you must add your id to the bar of menus "mbMain" as a partial target:



    "partialTriggers =": mbMain: Menu1: Menu2: pendingChangesDialog "/ >

    Steven Davelaar,
    JHeadstart team.

  • R12.1.3 - opening page APEX Oracle apps browser window

    Hello

    We have a page of APEX, which is integrated with oracle apps 12.1.3 successfully.

    We are able to open the page of Oracle Applications Home Page (web/self service page) with success.

    but when we try to open the same page of the window system (i.e. after the passage of the responsibility in basic applications) "Navigator" is to launch page not found error.

    Looks like the system is not able to call/execute the JSP (GWY.jsp) page, any ideas how to call page APEX of browser window?


    Rgds,
    -Kamal

    Hello

    Install the patch 12726556. This is a known bug in the gateway FND.

    Rod West

  • Jump to page by column 1?

    Hello:
    I need to be able to jump to page through data in column 1.

    Example: Column 1 = City - at each change of 'City', I need the report to start a new page.

    Thank you-

    Charlie EPEs
    Buffalo, NY

    Charlie,

    Find the soln here.
    http://varanasisaichand.blogspot.com/2010/09/how-to-get-page-breaks-in-OBIEE.html

    EMP break in printing to pdf?
    Hope this helps

  • y at - it a shortcut to go from page 1 &gt; 3 &gt; 5 &gt; 7?

    Jin

    Sometimes I need to adapt to a PAGE in my window, NOT a gap, because I have 2 open indesigndocuments side by side on my screen.

    When I want to go to 1 'uneven' to another page number, I use the shortcut "command + page up/page down".

    but then I from page 1 to 2.

    I want to go from 1 to 3-5, etc.

    as the option-PG. Prev shortcut works from page 2 > 4 > 6 > 8 etc.

    is there a way to do it for the uneven pages?

    Thanks in advance!

    karien

    {rtf1\anis

    indicates that you saved the script under formatting text (RTF, in fact). When you save the scripts be sure to save them as plain text (look for an option called 'plain text', 'formatted text', 'text only' or 'ASCII', something like that). Because you're on a Mac and I am not I can not specify the steps.

    Peter

  • JS CS3 dialogue Simple changing of doc from page.

    This user this example is a dialog telling them that their current document from page. The user can then change the value and update the first page number. For some reason, I get an error cannot process the request because a modal dialog box or the alert is active. I put myDialog.close (); before the if statement should, so this does not stop this error?

    I added not just any what control to ensure a doc is still open to identity card.

    var myDialog is new window ("dialog", "From Pg" no);.

    myDialog.dPgNo = myDialog.add ('panel', undefined, 'File Details');
    myDialog.dPgNo.alignChildren = 'left ';
    myDialog.dPgNo.myPgNo = myDialog.dPgNo.add ('group');
    myDialog.dPgNo.myPgNo.group = myDialog.dPgNo.myPgNo.add ('group');
    myDialog.dPgNo.btnGroup = myDialog.dPgNo.add ('group');
    with (myDialog.dPgNo) {}
    myPgNo.group.orientation = "column";
    myPgNo.group.alignChildren = 'right ';
    myPgNo.group.preferredSize = [90.15];
    myPgNo.group.st = myPgNo.group.add ("statictext', undefined,' Doc your start page is :');")
    myPgNo.et = myPgNo.add ('edittext', not defined, app.activeDocument.pages [0] .name)
    btnGroup.btn = btnGroup.add ('button', undefined, 'Update');
    btnGroup.alignment = 'right ';
    }

    myDialog.dPgNo.btnGroup.btn.onClick = function() {}
    myDialog.close ();
    var myPagestart = myDialog.dPgNo.myPgNo.et.text;
    If (app.activeDocument.pages [0] .name! = myPagestart) {}
    app.activeDocument.pages [0].appliedSection.continueNumbering = false; <-ESTK stops here with the error mentioned above.
    app.activeDocument.pages [0].appliedSection.pageNumberStart = parseInt (myPagestart);
    app.activeDocument.pages [0].appliedSection.sectionPrefix = "";
    Alert ("your start page of document has been changed to" + myPagestart + ".");
    }
    myDialog.show ();
    }

    myDialog.show ();

    Hi John,.

    You don't need to close and reopen the window. Instead of dialog use type "palette" of the window and run the script in a persistent engine, for example #targetengine "session".

    Kasyan

    #targetengine "session".
    var myDialog = new window ("palette", "From Pg" no);
    myDialog.dPgNo = myDialog.add ('panel', undefined, 'File Details');
    myDialog.dPgNo.alignChildren = 'left ';
    myDialog.dPgNo.myPgNo = myDialog.dPgNo.add ('group');
    myDialog.dPgNo.myPgNo.myGroup = myDialog.dPgNo.myPgNo.add ('group');
    myDialog.dPgNo.btnGroup = myDialog.dPgNo.add ('group');
    with (myDialog.dPgNo) {}
    myPgNo.myGroup.orientation = "column";
    myPgNo.myGroup.alignChildren = 'right ';
    myPgNo.myGroup.preferredSize = [90.15];
    myPgNo.myGroup.st = myPgNo.myGroup.add ("statictext', undefined,' Doc your start page is :');")
    myPgNo.et = myPgNo.add ('edittext', not defined, app.activeDocument.pages [0] .name)
    btnGroup.btn = btnGroup.add ('button', undefined, 'Update');
    btnGroup.alignment = 'right ';
    }
    myDialog.show ();

    myDialog.dPgNo.btnGroup.btn.onClick = function() {}
    var myPagestart = myDialog.dPgNo.myPgNo.et.text;
    If (app.activeDocument.pages [0] .name! = myPagestart) {}
    app.activeDocument.pages [0].appliedSection.continueNumbering = false;
    app.activeDocument.pages [0].appliedSection.pageNumberStart = parseInt (myPagestart);
    app.activeDocument.pages [0].appliedSection.sectionPrefix = "";
    Alert ("your start page of document has been changed to" + myPagestart + ".");
    }
    }

  • Just reset Firefox. Lost my ability to maintain the entire visible bookmark list while jumping from one link to another. I can find this capability?

    Now, when I have a list of bookmark at the screen and I hit a link, the list disappears. So to jump from one web page to another, I must continue to do extra clicks for once more than the list of visible bookmarks. This wasn't true before. Is there a way to return to the previous situation, I found better?

    The drop-down list of bookmarks is supposed to disappear when the user clicks on a link; also part of the display of the web page will be hidden behind the list...

    Visible bookmarks on the left side of the screen at all times open the bookmarks bar. To open or close the'Sidebar Bookmarks use CTRL + B. If the sidebar is open when you exit Firefox, it should be open when you restart Firefox.

  • Every three months or more, the drive letter for the backup drives jumps from one to another

    I posted it here because there is no whole final forum for the Windows OS line.  It is a problem that has been around since Microsoft made Windows XP and, frankly, I'm tired of it.

    I have some backup players; one that I'm pretty much every day, whenever I have the machine and another every two weeks of use.  I make sure they are always attached to a specific USB port so that the computer does not change in response.  But still, every three months or so, the drive letter handling these jumps from one to the other.  I run a Web site today and use a p2p Manager to transfer files to my machine, but most of them depend on the drive, so I could really do without what is happening every three months... all because your company won't repair it or provide an intuitive, ToolPart beginners' of the Windows operating system, forcing to keep a disk permanently assigned to the same letter.

    I know that this is part of basic programming because it is something that Microsoft has simply been unwilling to identify and correct.  I know also there are millions of people like me who suffer from this problem.  For the love of God, please make this tool a priority for Windows 8 and build one for Windows 7/Vista!
    * original title - your drive letter management is (Windows, all versions) *.

    I don't think that the USB ports are wired so that the computer OS is informed of the port which has been consulted.

    I also doubt that you will get Microsoft to change at this point.  As a solution, I give my readers a volume name, and so I don't know which drive is no matter which drive letter that has.

    Steve

  • ActiveRichTextField: jump from link to link on navigation behavior

    I use an ActiveRichTextField to make clickable links. However, if the user navigates through this field it's done character.

    All I want is him to jump from link to link... Can I do this easily?

    Or should I create a subclass and replace navigationMovement (.)?

    I've actually already implemented it myself.

    It does not entirely how I want it, but you get the idea

    class JumpingActiveRichTextField extends ActiveRichTextField {
       ...
    
        private int currentRegion = 0;
        protected boolean navigationMovement(int dx, int dy, int status, int time) {
            int d = dx + dy;
            currentRegion += d;
            if(currentRegion < 0) {
                currentRegion = 0;
                return super.navigationMovement(dx, dy, status, time);
            }
            if(currentRegion!=0) {
                if(this.getText().startsWith("http://")) {
                    if(currentRegion % 2 - 1 == 0) {
                        currentRegion+=d;
                    }
                } else {
                    if(currentRegion % 2 == 0) {
                        currentRegion+=d;
                    }
                }
            }
            int[] offsets = this.getOffsets();
            if(currentRegion >= offsets.length) {
                currentRegion = offsets.length - 1;
                return super.navigationMovement(dx, dy, status, time);
            }
            this.setCursorPosition(offsets[currentRegion]);
            String regText = this.getRegionText(currentRegion);
            if(dx>0 && currentRegion == offsets.length-1 && (regText==null || !this.getRegionText(currentRegion).startsWith("http://"))) {
                // do not jump to end but jump to next item
                return super.navigationMovement(dx, dy, status, time);
            }
            return true;
        }
    
    }
    
  • proplem to jump from one screen to another

    Hello experts,

    for a month, I'm on blackberry, but still I get a lot of problem...

    in fact, the blackberry is not visible in the Simulator, if I write the code for jumping from one screen to another

    can you post your code?

Maybe you are looking for