Is there a way to capture the position of the scrollbar?

On this form that i am using, I am capturing where the cursor is by using temp_value := :System.Cursor_Record to find out what record it is and then when the timer expires i am asking it to go back to that captured record by
GO_RECORD(temp_value ) which works fine.
The problem is that this a tabluar form that has a scroll bar displaying 10 records at a time. Lets say it fetches 20 records and then the user is looking at the 15th record -- and when the timer expires the focus goes to the captured record but the record shifts it's position to the first record (displays on top)
eg
records
1
2
3
8
13------------- This is where the user is and he sees records 3 thru 15 in that view
15
20
when the timer expires user see
13---the focus is here but it shifts on the top.
15
20

thanks works like a charm :)
what i am doing is capturing the top record and system cursor record
and when when the timer expires
first go to the top record and then go to the cursor record
thanks a lot .

Similar Messages

  • Is there a way to capture the IP address of a user running an APEX app?

    We are trying to capture the IP address of a user logging into our application. Is there a way to do this? thanks

    Karen,
    See the APEX View APEX_WORKSPACE_ACTIVITY_LOG
    Home>Application Builder>Application Utilities>Application Express ViewsJeff

  • Is there any way to capture the output of a trnsaction

    Hi EXPERTS,
    i TRIED TO CAPTURE O/P OF TRANSACTION IW3M USING SUBMIT,
    IT WASNT SUCCESSFUL
    pLEASE SUGGEST ME SOME OTHER WAY TO DO.

    Hi,
    Did you check  spool requests -> SP02.Could you elaborate on how you came to the conclusion that it wasnt sucessfull?

  • Is there a way to save the last curor position in Numbers?

    Is there a way to save the last curor position in Numbers? We have a custom Budget spreadsheet but every time we open the file, we have to scoll to the bottom of the spreadsheet.
    There are several thousand entries, and every time we open it, we have to scroll to the bottom of the screen which is getting fairly annoying.
    Every time we open it, regardless of what sheet or cell we are in when it is saved previously, it opens at the top....
    Any suggestions?
    Thanks!

    reverse the order of you entries and add rows at the top of the table.  That is have newest date entries at the top and oldest at the bottom

  • Is there a way to seed the SaveAs value triggered by the digital signature

    Hello Everyone,
    I have a form going out to hundreds of people. When the form is completed, the last thing they do is digitally sign the form (which prompts them to save it), and then they click a submit button, which e-mails it to me.
    The issue I am having, is when the users are saving the form, they just click the Save button. This is saving the form with the original name. When we're moving the forms from our e-mail client to the server, we have to rename them all one by one, or we get the pop-up alert asking us if we want to overwrite the file which uses the same name.
    So my question is this: When someone digitally signs the PDF, bringing up the SaveAs dialogue box, is there any way to seed the default value of the filename? (For example, the form has a field "Name" where I capture their name. Can I populate the SaveAs value with what has been entered in the "Name" field?)
    I've done some research, and it does not seem like there is a way to seed that value. Instead, I'm currently running this script on the signature's MouseDown trigger:
    app.alert("Please add your name to the filename before signing");
    app.execMenuItem("SaveAs");
    If there is a better solution, please feel free to say.
    Thanks,
    Al
    Message was edited by: Thisuy123

    The gateway offers the PASSTHROUGH package -described in the manual more detailed- which allows you to send anything to the foreign database without being touched by Oracle.
    Depending on your function you could use the DBMS_HS_PASSTHROUGH.EXECUTE_IMMEDIATE package and if you need to fetch something you could use:
    dbms_hs_passthrough.parse
    DBMS_Hs_Passthrough.fetch_row
    dbms_hs_passthrough.get_value

  • Apple Mail, is there a way to change the default time-out?

    This has been puzzling me for some time and I have not found a solution. The problem which I also posted in the Mail forum (though I think that if there is a positive answer it will come through here) is as follows:
    I have an email account with on my company's mail server which is actually a Novell Netware server with a POP3 service. When using mail to send mail, I have no problems. When using mail to recieve mail, well, sometimes it gets the mail, and sometimes it does not. Usually, I can recieve mail for two or three weeks then it just stops working. No changes to my system, no updates or anything, I recieve email at one point in the day and then 15 minutes later - nothing. In the Activity Monitor, I see "Connecting to ..." then "Sending Password" then "Checking for Messages", then (after a while) it beeps as if it did not find any messages to download (no error!).
    Some weeks later, after suffering with webmail, suddenly, it works again. This usually coincides with maintenance on the server, but not always. It also seems to correspond with a general improvement of the server performance. But eventually, the cycle starts over again with mail suddenly not able to find any new messages for that account.
    I use dial-up at home, ethernet LAN at work, and DSL at our satellite offices. When it works on one it works on all. Also note that my other email accounts (not in any way connected to my company) work as they should at all times and in each setting.
    Is it possible that mail simply times out before the messages are discovered. The Novell server used for mail is by no means known for its performance. If so, is there anyway to change the default timeout in mail for "Checking for Messages"?
    Things I have tried:
    I have dumped the "MessageUidsAlreadyDownloaded" and "MessageUidsAlreadyDownloaded2" files to no avail.
    I have changed computers (I recently upgraded from a ti400), reinstalled the OS, upgraded from 10.2.8 to 10.3.x to 10.4.3, and removed and recreated the mail account (multiple times), all to no avail.
    Based on the above observations, I feel that it may be that "Mail's" "Get-mail" function is timing out before new messages are discovered on a very slow server. Is there any way to change the default time-out to evaluate this hypothesis?
    Any help would be appreciated.
    Kraig

    I already thought of that one.  I deleted my account from there.  But it didn't default to the other one.  It just told me I needed to add an account.  Thanks tho

  • Is there a way to put the cursor at a specific location in a RichTextBox?

    Is there a way to put the cursor at a specific location in a RichTextBox?
    The following code places the cursor at the start of a RichTextBox:
        RichTextBox RTbx
        RTbx.Focus();
        TextPointer tp = RTbx.CaretPosition;
        tp = tp.DocumentStart;
        RTbx.CaretPosition = tp;
    Not sure how to place it at a specific location other than start and end.
    The RichTextBox has contents.  At this point in the code, I do know the specific "word" in the contents, as well as the position (number of chars) where that word is located.  I just need to programmatically place the cursor at that location.
    bhs67

    Oh sorry, I see I missed something out my original reply.
    I have markup:
    <Grid>
    <RichTextBox Name="rtb">
    <FlowDocument>
    <Paragraph >This is the first paragraph</Paragraph>
    <Paragraph >TSecond paragraph is here</Paragraph>
    </FlowDocument>
    </RichTextBox>
    </Grid>
    Code - this is the window contentrendered event
    private void Window_ContentRendered(object sender, EventArgs e)
    rtb.Focus();
    // TextPointer moveTo = rtb.CaretPosition.GetNextInsertionPosition(LogicalDirection.Forward);
    TextPointer moveTo = rtb.CaretPosition.GetPositionAtOffset(9, LogicalDirection.Forward);
    if (moveTo != null)
    rtb.CaretPosition = moveTo;
    I see the cursor between the t and he of the second "the".
    Note that there are numerous other options such as the commented out line.
    Hope that helps.
    Recent Technet articles: Property List Editing;
    Dynamic XAML

  • Is there a way to place the Dock on the bottom of a secondary monitor?

    I use my iMac as primary monitor and a secondary display on the right. Is there a way to place the dock on the bottom of the secondary monitor(in a way that the display arrangment actually match the monitor position on my desk)?
    I want something like this, with the red marker as the dock(the display arrangment match how the monitors are in my desk):
    The solution I'm working with is:
    I could turn the monitor attached to the iMac as primary(and set the dock there), but I got some problems with programs opening in wrong positions all the time and some issues with full screen programs as well(also I think the iMac didn't handle well setting the primary display in another monitor).
    If there isn't a way to do it in Mountain Lion, will Maverick do any better?

    Don't know of a way to get the Dock on the top.
    But, to keep it out of the way but available, in the Dock prefs pane in System Preferences you can set it to "automatically hide and show". Choosing that setting means the Dock will normally be hidden; to gain access to it, all you need do is brush the bottom of the screen (or the side you have Doc set to) with the cursor, and it will appear, staying visible only until you move the cursor away.
    You can also use the keyboard combo Command-Option-D to invoke/revoke Dock Hiding, which in effect means you can use that keyboard command to toggle the Dock's visibility.

  • Is there a way to view the timecode in iMovie for Mac?

    Is there a way to view the timecode in iMovie for Mac?  This is such a basic feature needed for editing; I can't believe it wouldn't be available.  Am I missing something?

    Do the math means you know the timecode at the beginning of each clip and when you mouse over a transition or clip you know the clip length. If you trim the clip you see how much you are trimming. With these numbers you can caulate the cursor position or find the timecode value at any frame in the clip. I am not saying it is an elegant process by any means, but if you really need to, this will work. Obviously it is a grievius situation Apple has left us in regarding timecode.

  • Is there a way to use the common J-K-L keystrokes to play forward and backward in iMovie '11?

    Is there a way to use the common J-K-L keystrokes to play forward and backward in iMovie '11? Most editing apps--like Final Cut Pro, QuickTime Pro, Avid, etc.--use this convention. I find not having it slows editing down considerably?  I don't see it listed in keyboard shortcuts; is there any way to add it?  Thanks!

    I don't think so. If you click iMovie/Help, you will see a list of all keyboard shortcuts.
    Here they are.
    Get information
    Open iMovie Help
    Command-Shift-Question Mark (?)
    Open the Project Properties window
    Command-J
    Open the Project Theme window
    Command-Shift-J
    Show playhead info
    Shows date, time, and keywords for video frames above the playhead.
    Command-Y
    Import and export
    Import from camera
    Command-I
    Export movie
    Command-E
    Play video
    Play video beginning from the frame beneath the pointer
    Space bar
    Play 1 second of video total—0.5 seconds before the pointer and 0.5 seconds after
    Plays only 0.5 seconds of video from the beginning of the selection or to the end of the selection if the pointer is resting within the selection border.
    Left Bracket ([)
    Play three seconds of video total—1.5 seconds before the pointer and 1.5 seconds after
    Plays only 1.5 seconds of video from the beginning of the selection or to the end of the selection if the pointer is resting within the selection border.
    Right Bracket (])
    Play selection
    Slash (/)
    Play selected event or project from the beginning
    Backslash (\)
    In the Event browser, speed up playback from 1x to 2x to 4x by pressing the key one time or two times, respectively
    Right Arrow key
    In the Event browser, slow down playback from 4x to 2x to 1x by pressing the key one time or two times, respectively
    This action works only if you’ve already sped up the playback.
    Left Arrow key
    When playing Event video, jump forward 3 seconds (6 seconds when playing at 2x speed or 12 seconds when playing at 4x speed)
    Shift-Down Arrow key
    When playing Event video, jump back 3 seconds (6 seconds when playing at 2x speed or 12 seconds when playing at 4x speed)
    Shift-Up Arrow key
    When playing Event video, jump forward to the next clip
    Down Arrow key
    When playing Event video, jump to the beginning of the current clip, or jump to the previous clip if the playhead is near the beginning of the current clip
    Up Arrow key
    Play the selected Event or project full screen
    Command-G
    Exit full-screen mode
    Escape (Esc) key
    Move the playhead by one frame
    Left Arrow key or Right Arrow key
    Freeze the playhead
    Hold down Control key
    When skimming, keep the cursor in the middle of the row
    Option-Shift
    Manage projects and events
    Create new project
    Command-N
    Move to Trash
    Moves the selected project (in the Project Library), Event (in the Event Library), or Event clip (in the Event browser) to the Trash. If only part of an Event clip is selected, the entire clip is moved to the Trash.
    Command-Delete key
    Open iMovie preferences
    Command-Comma (,)
    Page setup
    Command-Shift-P
    Print selected Event or project filmstrips
    Command-P
    Select and edit video
    Select an entire project or Event clip when a partial clip is selected, or select all project or Event clips when an entire clip is selected
    Command-A
    Select to playhead
    Expands or contracts the selection from the nearest selection border to the playhead.
    Shift-A
    Deselect all clips
    Command-Shift-A
    Add selected frames to project
    E
    Split a clip on both ends of a selection (longer than five frames), or at the playhead position if nothing is selected
    Command-Shift-S
    Cut selected frames
    Command-X
    Copy selected frames
    Command-C
    Paste selected frames
    Command-V
    Paste all adjustments
    Command-Shift-V
    Paste video adjustments
    Command-Option-I
    Paste audio adjustments
    Command-Option-A
    Paste crop adjustments
    Command-Option-R
    Paste cutaway, green-screen, or picture-in-picture adjustments
    Pastes adjustments, depending on which type of video is selected.
    Command-Option-U
    Paste video effect

  • Just downloaded the new OS for IPhone. Despise the appearance. It has jacked with the way I like things in some unacceptable ways. Is there any way to keep the OS, but return to the old appearance? Important to know BEFORE I download OS for computer.

    Just downloaded the new OS for IPhone. Despise the appearance. It has jacked with the way I like things in some unacceptable ways. Is there any way to keep the OS, but return to the old appearance? Important to know BEFORE I download OS for computer.

    I know I am responding to my own thread, but I an SOOOO disgusted with Apple right now.
    The new iOS 7 was the lead story on CNN today... and it wasn't positive. Easy to see why, it's a graphics disaster. It is ugly, difficult to read, doesn't interface aesthetically with the iPhone 4S, and gives everyone in America vertigo. Either fix the appearance, or find some way to allow us to roll back to our previous iOS. Do so quickly, or this life-long Apple customer [circa 1978] will be moving on. If this represents shades of what is coming with OS Maverick, I am petrified. Further, I am a GM of a chain of newspapers and websites in the Austin, Texas area. I will be ripping out a scathing editorial. The notion that we can't roll back from something millions of us hate is despicable. I'm giving you one week. Be sure I am not alone.

  • In fullscreen mode, is there a way to prevent the page from shifting down when displaying the menu and tabs?

    In fullscreen mode (F11), when moving the mouse toward the top of the screen to display the tabs & stuff, the page displayed is shifted down. This makes it annoying when returning down with the mouse - you want to reach a certain link, for example, but your target gets shifted up once the tabs & stuff is hidden back.
    Is there any way to make the tabs & stuff display 'above' the page content, like on another layer?

    Is it the web page display that is changing its own position, or is it something
    about the toolbars that is pushing the page down? I have the same issue with
    my browser using an add-on to show a multiple line bookmark bar.

  • Is there a way to swap the Fn key and left Ctrl key

    Is there a way to swap the functions of Fn key and left Ctrl key on the keyboard. I'm used to other keyboards where the keys are switched and I keep pressing Fn when I want to press Ctrl.  I figure I'll get used to it eventually, but when I use the laptop in a docking station with a regular keyboard the control key is in one spot and undocked with the Lenovo keyboard the function key is there instead, which makes it hard to get used to.
    If not is there a way to disable the Fn + Space bar function that changes the screen resolution. The programs I use use control + space heavily and my screen resolution keeps changing when I don't want it to.
    It's a small thing I know, but very maddening.

    Thanks, I took the survey. It's interesting the questions on there were asking about location of keys like page up and page down. I find the position of those keys are not that important to me because I don't use them that much and don't seem to mind looking at the keyboard to find them. Also they are almost always in different spots depending on whether you are on a desktop or laptop keyboard so I guess I'm used to unconsciously switching depending on which keyboard I'm on.
    But the left control key is one of the most heavily used, at least by developers like me (control+c to copy, control+v to paste, and control+space for code assist, shift + control + f to format code, shift + control + r to find resources, etc...). I have to hit that Ctrl button 1000 times a day. And the key is in the bottom far left corner on every keyboard (desk top and laptop) I've ever seen until now. Having to remember to look down at the keyboard to find the key is proving difficult and I think is actually hurting my productivity. Especially control+space (when you are expecting a popup to automatically complete the line of code you're working on and instead the screen blinks, resizes and your whole editor loses focus it really breaks your flow of thought, so thanks a million for helping me turn off the silly screen zoom feature).
    Hopefully I'll get used to it like with the other keys like page up and page down although I've had the laptop for two weeks and it's proving difficult. If I had know that Thinkpads have this layout and how maddening it would be to get used to it I probably wouldn't have bought it, even though everything else about it is great. It's amazing how such a small thing can become such an irritant.
    Well thanks again, and if anybody from Lenovo engineering is reading this post, my vote is for some bios setting on the T61P that swaps the functions of Fn and Left control key. It would save me a lot of grief anyway.

  • Is there any way to make the cursor appear larger in Mac OS X?

    Wow, love my 27" screen, but have trouble finding the cursor! Is there any way to make the cursor appear larger? Perhaps adjustable for fine print capture?
    Thanks!

    System Preferences -> Universal Access -> Mouse -> Cursor size
    However, I prefer using Mouse Locator (free download)
    <http://www.versiontracker.com/dyn/moreinfo/macosx/26157>
    I like this Mouse Locator Graphic
    <http://homepage.mac.com/douglasn/locatorexchange/AD/1/MouseLocator.png>
    I also enjoy my 27" iMac. It is just so nice withing on it.
    Message was edited by: BobHarris

  • Is there a way to get the selection order for selectedProperties?

    app.project.activeItem.selectedLayers seems to be ordered by the selection order, but app.project.activeItem.selectedProperties (at least in Shape Layers) seems to be ordered by the stacking order. Is there a way to get the selection order for selectedProperties?
    Thank you!

    Hi,
    i had tried to investigate this a while back and it's really hard to figure out.
    The array seems to be reorganized using various rules:
         At layer level : preserve the user layer selection order,
         Children of indexed groups : propertyIndex ordering,
         Children of named groups : some internal ordering.
    The following is may be more detail than necessary, and given that it is based on observation, not official docs, it is not so reliable, but well, it might still be of interest !!
    Say you have 2 selected properties A, and B, and call [COMMON PARENT] their "greatest common ancestor", that is:
            A = [COMMON PARENT].property(a1).... property(aA);
            B = [COMMON PARENT].property(b1).... ...property(bB);
    with a1 != b1. Then:
    if [COMMON PARENT] = A (ie if A is an ancestor of B), then A comes first.
            For instance: if you select comp.layer(1).mask(1).maskPath, there are 2 selected properties, the mask group and its maskPath: the first is the group and the second the path (the parent comes first).
    if [COMMON PARENT] is the containing composition, ie A is a property inside comp.layer(a1), and B a property inside comp.layer(b1), then A and B are ordered according to the layers selection order.
            This can have some strange side effects. For instance:
                deselect everything
                select comp.layer(2) (and nothing else)
                select comp.layer(1).transform.position
                select comp.layer(2).transform.position
                ===> comp.selectedProperties = [comp.layer(2).transform.position, comp.layer(1).transform.position] even though the first entry was effectively selected after the second...
    if [COMMON PARENT] is an indexed group, A and B are ordered by propertyIndex
            For instance:
                if you select comp.layer(1).mask(2), then comp.layer(1).mask(1), mask(1) appears before mask(2)
    if [COMMON PARENT] is a named group, ... no clue (internal ordering).
            For instance, at propertyDepth 1, it seems that Time Remapping < Effects < Masks < Material Options < Transform, etc, independantly of the selection order, and this is also not the propertyIndex ordering.
            At higher depth, in CS5 the ordering seems to be the propertyIndex ordering, but it is no longer true in CC.
            For instance, selected Position (index 2), Scale (index 6) and Opacity (index 11) in various order on the same layer.
            in CS5 : selectedProperties = [Position, Scale, Opacity];    // propertyIndex ordering, always
            in CC : selectedProperties = [Scale, Position, Opacity];    // always the same ordering, but not the propertyIndex one
    So the ordering is a lexicographic ordering (Compare the ancestor of depth 0. If no difference, compare the ancestor of depth 1. If no diff, compare the ancestor at depth 2. And so forth).
    But at each step, the comparaison depends on the type of the ancestor, and when the type is named group, the ordering is internal so we can't know.
    Practically the most important thing is that selected properties seem to be reorganized by "containing layer" (the layer selection is preserved),
    and then in each layer selected properties are "grouped by same parent": you can't have a mask related property, then an effect related property, then another mask related property:
    all masks related properties appears together, all effect related properties appear together, etc.
    If several effects are selected, effect(1) and all its properties appear first (if selected), then effect(2) and all its properties would appear second etc
    and so forth
    Xavier.

Maybe you are looking for

  • Support message and change requests only for production system

    Hi guys, I would like to connect the solman helpesk with CHARM ( CHARM is still running ). In CHARM I have to create a CR only for production system. ( don't know why - but works as designed). In SAP helpdesk I can create support messages for every k

  • I am being asked for a serial number when I install CS5

    When I installed Creative Suite 5 Master it asked for a serial number, which I provided. Now it is asking me for a serial number upgrade? This is the master collection being installed for the first time, why is it telling me it can't find qualifying

  • Artwork doesn't show up

    Hi there. I submitted a podcast to iTunes. Everything looks ok, apart from the fact that the artwork apparently doesn't exist. This is what I wrote down in my feeds between the tags <channel> and </channel>: <itunes:image href="http://www.controcoper

  • How to take Bank payment voucher from sap fico production user?

    Hi how to take Bank payment voucher form sap fico from production user? anyone can help? Thanks in advance? Thanks Chandu....

  • Not retaining iPhoto 'key photo'

    I've been using the 'key photo' option in iPhoto so I can identify the content of the album by image, not just the title/description text. I've started using iWeb and want to add these albums. However, my choice of key photo is ignored by iWeb, and i