How do I retrieve my Clipboard function in PSE8

I cleared the clipboard in editor thinking this would be for one session only, But now I cannot restore this function.... Can the clipbard functionality be restored???  Please help

Sorry folks... I seem to have fixed it.... Thanks for taking a look...  Rik

Similar Messages

  • The burn command does not show in the iTunes file.  I recently upgraded to Yosemite.  How do I retrieve the burn function? thanks

    Have Macbook  late 2009
    2 GB
    iOS 10.10.2 (recent,y upgraded)
    The 'burn to disc' function does not show in the iTunes 'file'.
    How can I restore this feature?
    thanks

    Where are you looking for the "Burn"?
    You should be seeing it, when you select a playlist or a smart playlist in the sidebar and then use the command "File > Burn Playlist to ..." or ctrl-click or right click the playlist and select the Burn command from the pop-up menu.
    Does it not show there?

  • How to Retrieve Messages from Function Module 'CM_F_MESSAGE'

    I have a custom program that first calls function module CM_F_INITIALIZE to make sure that pop-ups are not displayed on screen. This program then performs a subroutine that also calls function CM_F_MESSAGE. How do I retrieve the messages so I can output it as 1 big list on screen?
    Thanks in advance!

    The subroutine calls the function CM_F_MESSAGE to display message.
    you can declare one internal table in your program and populate the message details in this internal table.
    At the end while displaying data, display the content of this internal table as messages populated during the process.

  • I have downloaded IOS7 on my iPhone and all calendar events have disappeared. The general functions of the calendar have changed and are definitely not 'user friendly'. How can I retrieve my calendar events. Will Apple improve the calendar function

    I have downloaded IOS7 on my iPhone and all calendar events have disappeared. The general functions of the calendar have changed and are definitely not 'user friendly'. How can I retrieve my calendar events. Will Apple improve the calendar function or revert to the previous system. Even the typing function on IOS 7 is faulty - very slow to respond to the keyboard. I no longer enjoy using my iPhone. Can anyone assist. Thank you

    Very strange! All of my calendar events have reappeared. This has happened one week after downloading iOS 7
    The calendar however,  is not easy to use.
    The typing function on the phone has  become even slower. Have to wait for each letter to show on screen.

  • HT2500 I have already set up my mail account and recently my trash is not function, i.e. I cannot move my unwanted mail to the trash.  How can I retrieve my trash back.  FYI I can move my unwanted mail to the trash if I use my iPad to read my mail.  How c

    I have already set up my iMAP account and recently my trash is not function, i.e. I cannot move my unwanted mail to the trash.  How can I retrieve my trash back.  Whe I use my ipad to view my mail, I can move the unwanted mail to the trash without any difficulties.  How come I can perform moving the unwanted message from the ipad to the trash but not the notebook and desktop.

    You might get better responses if you post in the Mountain Lion forum.
    Are you using Apple's Mail? What happens when you press the delete key?

  • How do I retrieve bookmarks and passwords from a Windows backup, after OS re-install?I have a full Windows backup of my machine, pre re-installl

    I had to reinstall Vista 7 OS. I have a full Windows backup of my machine, prior to the re-installation. How do I retrieve the bookmarks and passwords from the backup? I understand they're stored in various files a ".default" folder in C:\users\username\appdata\roaming\mozilla\firefox\profiles. When I try restoring the folder, the files get skipped... When I try browsing for the individual files, I don't see them!

    Many thanks for your responses... After a little scouting on the web, I have found THE solution... This is all due to the way Windows 7 Backup works, and will NOT let restore apps...
    ("File restore in Windows7 is not designed to restore back applications. This is because the application state is spread across potentially multiple folders, files & registry. Windows7 file backup is not aware of where all the state is spread to be able to restore the entire application accurately as such information is internal to the application. Restoring application partially might corrupt the application and render the application unusable. So we do not allow restoring applications from file backup.
    In case files under C:\Program Files etc. are chosen for restoring, we block restoring files from backup to such locations as it might cause the applications to not function.'')
    What one has to do when restoring is to NOT attempt to restore to the original location, but to select the radio button which allows you to type a path where you want the files restored and type in the path of the original location!!! Then select copy and replace...A little quirky (and tedious), but it works!

  • How do I retrieve call history from my iPhone 4S? It only seems to log for about a month and I need an earlier date?

    How do I retrieve call history from my iPhone 4S? It only seems to log for about a month and I need an earlier date?

    If you have backup of your files, you can get your call history back as long as you sync iPhone with iTunes frequently.
    OK, the first thing you are required to do is close the function of "prevent iPhone from syncing automatically." in iTunes, avoiding to sync iPhone again.
    Now, connect your iPhone to pc and open iTunes.
    iTunes> preferences> devices
    All the backup data in iTunes will be displayed.
    Then,click the File menu and select Devices > Restore from Back up
    your iPhone will restart and you can find them back.
    This method only can find back the latest history, to get back the old, you should turn to a third party program for help.

  • How to selectively disable Header & Footer/How do we retrieve the PageName in the custom navtype cla

    I would like to disable the Header and Footer for the login page. In my Custom Navigation Type class, I went ahead and made the following changes to the isFeatureEnabled() function.
    if(feature.Equals(NavFeatureEnum.TOPBAR))
    returnfalse;
    if (feature.Equals(NavFeatureEnum.HEADER))
    return false;
    But this essentially disables the header and footer for the entire Sub Portal. How can I retrieve the PAGE NAME in the Navigation Type class so that I can selectively disable the feature. This is what I would like to do
    if (pageName.equals("LOGIN")) {
    if (feature.Equals(NavFeatureEnum.HEADER))
    return false;
    Appreciate anyone's help in resolving this issue.
    Thanks
    Vikram

    Vikram,
    Unfortunately, you there is no way to check for page name inside the IsFeatureEnabled method. What you could do, if you want to always disable the header and footer in all navigation schemes, is to change com.plumtree.portalpages.common.uiparts.PlumtreeDP to have it check for current page name. In the Display method, search for
    displayHeader = GetPlugNavFeature(navType,NavFeatureEnum.HEADER);displayFooter = GetPlugNavFeature(navType,NavFeatureEnum.FOOTER);
    and change it to:
    if ( !LoginAS.STR_MVC_CLASS_NAME.equals(GetOwner().GetName()) ) { displayHeader = GetPlugNavFeature(navType, NavFeatureEnum.HEADER); displayFooter = GetPlugNavFeature(navType, NavFeatureEnum.FOOTER);} else { displayHeader = false; displayFooter = false;}
    Just remember that we might make changes in PlumtreeDP in future updates. You would have to add this code in again if we do.

  • How to programmatically retrieve the real field name from a view object ?

    Dear all,
    when I map a business component (a database table) to a view, the fields are automatically converted by JDeveloper, for example, a field named 'user_id' in the oracle table definition, becomes 'userid' in the view.
    The question: how can I retrieve the right table column name from within a backing bean ? Please explain also what should I bind and how; should I use an iterator ?
    Another more: since we can change the label of a field on a view, how can then I get the mapping between the column name on the view and the column name on the table in the database ?
    Thanks in advance,
    Sergio.

    Hi Timo,
    many thanks for your answer.
    The rest of my question: you know we can drop a view from the DataControls onto a ADF page, with each field of the table having a label.
    That label is initially set like the internal table field name, so for instance, if user_id is the real table field name, userid will be the (by JDeveloper) internal renamed table field name, and the label would be userid too.
    If I then change the label text to, for example, "myUserid", the question is: how can I know which real table field does "myUserid" point to ?
    In other words, when my form is submitted, I want to know which field name has been changed and prepare an update sql in a bean.
    For this purpose I bind each view field to a validator function in the bean, and collect al the pairs "label_name + submitted value" in an hash table.
    Now inorder to build up that update query, I need the mapping between the label_name ("myUserid") and the real table field name ("user_id"). The question: how to map the label to the real table field name ?
    By the way, I'm using JDeveloper 11g rel. 2.
    Regards,
    Sergio.

  • My newer iPhone 4s is now just a flickering Apple logo. How do I reboot or restore function?

    My newer iPhone 4s is now just a flickering Apple logo. How do I reboot or restore function?

    If you backup with iTunes and you restored from the backup and the contacts were gone, then there is no where to retrieve them from unless you have another backup that contains those contacts.
    Launch iTunes on the computer and go to iTunes>Preferences>Devices. You will see a window with all of your backups listed in it.
    If you see a recent backup that you are certain contains the contacts that you need, recover deleted contacts from iPhone.
    If your contacts is gone from iCloud.com there is only a few ways to possibly recover it.
    The first things I would check is a iCloud Backup, a iTunes Backup, or a 3rd party email that may have contained the contacts. To restore from a iCloud or iTunes backup follow this link. This article explains how to restore a device from either back up.
    Note if you have backed up since the contacts went missing, you will not have the note on the backup. Make sure you do not back up if trying to restore from a back up as this will back up the content without the note.
    To get to the "Set up assistant" on an iOS device, you must go to Settings>General>Reset>Erase All Content and Settings. Once the phone restarts, you will be at the "Set up Assistant"

  • How do I retrieve bookmarks and Add Ons for Mozilla after it was unintentionally UNINSTALLED and Re-Installed? No bookmarks were backed up anywhere on the computer.

    Someone inadvertently uninstalled Mozilla on my machine [Windows 7 op]. I had to do a new installation just now. I haven't opened or saved other files yet. HOW can I retrieve the old information from the UNinstalled Mozilla to add to the newly installed Mozilla? Please help. I have several hundred bookmarks and a few favorite add-ons missing. I hope they were not completely wiped during the uninstall - but only your programmers know how the UN-install function works and whether or not residual files are left on the computer.
    Thank you.

    Someone inadvertently uninstalled Mozilla on my machine [Windows 7 op]. I had to do a new installation just now. I haven't opened or saved other files yet. HOW can I retrieve the old information from the UNinstalled Mozilla to add to the newly installed Mozilla? Please help. I have several hundred bookmarks and a few favorite add-ons missing. I hope they were not completely wiped during the uninstall - but only your programmers know how the UN-install function works and whether or not residual files are left on the computer.
    Thank you.

  • How can I retrieve the inbound XML messages (invoices) by ABAP program?

    Where are the inbound XML messages (invoices) saved in XI box?
    How can I retrieve the inbound XML invoices in XI box by ABAP program?
    Is there any method/BADI/function module to retrieve these XML invoices, so I can output these XML invoices in an ABAP report?
    Thanks in advance for your help!

    Hello Fisher,
    This Webblog will help you.
    /people/alessandro.guarneri/blog/2006/02/14/super-message-monitor-for-sap-xi
    From this blog you will understand the code behind SXMB moni .. which performs the selection from database. You can write a report as well.
    Cheers,
    Himadri

  • How JSP codes residing in js function works

    Hi,
    I would like to check with you how JSP codes residing in js function works.
    How can I get the 2nd select stmt executed based on the values retrieve from 1st select statement and the conditions pass in to this js function
    How can I get the select statement to execute only when a condition is met.
    The following is the codes. It is not executing the 2nd select statement. when I didnt put in the 2nd select stmt, i execute those codes in that portion
    script
    ====
    function test(obj, obj2) {
    <%
    sql_query = "SELECT a1, a2 , a3, a4, a5 "+
    " FROM table_a ";
    try {
    rset = db.execSQL(sql_query);
    catch(SQLException e){
    System.err.println ("Error in query " +e);
    %>
    var po_ln_fnd = false
    <% while (rset.next()) {
    j_a1 = rset.getString("a1");
    j_a2 = rset.getString("a2");
    j_a3 = rset.getString("a3");
    %>
    if ((eval(obj2.value)== '<%=j_a1%>')) {
    if ((obj.value == '<%=j_a2%>') ) {
    <% j_a4 = rset.getString("a4");
    j_a5 = rset.getString("a5");
    sql_query = "SELECT b2, b3, b4 "+
    " FROM table_b "+
    " WHERE b1 = '"+j_a3+"' ";
    try {
    rset = db.execSQL(sql_query);
    catch (SQLException e) {
    System.err.println("Error in query " +e);
    while (rset.next()) {
    String j_b2 = rset.getString("j_b2");
    String j_b3 = rset.getString("j_b3");
    String j_b4 = rset.getString("j_b4");
    %>
    <%}>
    }

    what is the other alternative to produce the same results: (retrieve the data based on the value entered on screen, upon onChange, it will chk whether the condition met, if met, will retrieve data from another table and display on the screen - all this is done without the submit button being pressed)

  • Retrieving past dates (function)?

    My query returns the current month and year for my report
    using the datepart(year, getdate()). How would I retrieve last year
    or the year before? I can't figure what functions to use. Can
    anyone help.
    SELECT datepart(month, r.name_check_sent) as check_Month,
    count(distinct c.case_number) as companies,
    count(distinct r.individual_key) as individuals
    FROM #request.app.DB2DB#.anc_case c
    JOIN #request.app.DB2DB#.anc_individual i on c.case_number =
    i.case_number
    join #request.app.DB2DB#.anc_agency_response r on
    i.individual_key = r.individual_key
    WHERE r.name_check_sent is not null and datepart(year,
    getdate()) = datepart(year, r.name_check_sent)
    group by datepart(month, r.name_check_sent)

    > Here is your method which now also gives me the same
    results.
    > <cfqueryparam value="#2008#"
    cfsqltype="cf_sql_integer">
    Though that does not cause an error, there is no need for #
    signs. Pound # signs are used when you need CF to perform an
    evaluation of some sort. Such as evaluating the value of a
    variables. Since there is nothing to evaluate in your statement,
    just use value="2008". But again, you do not have to hard code the
    year value.
    > I just need to get last years data (08), but wouldn't
    those functions pull current data (09).
    Since now() returns the current date, yes they would. If you
    want the prior year (ie 2008), just subtract 1. Nothing special
    about the logic, just basic math ;-)
    > Where would I use the Year() or Now() functions?
    You could use it directly within your cfqueryparam, or if you
    prefer - create a separate variable outside your query. Then use
    that variable in the cfqueryparam.
    <cfset lastYear = Year(now()) - 1>
    <cfquery ...>
    ... <cfqueryparam value="#lastYear#"
    cfsqltype="cf_sql_integer">
    </cfquery>

  • I recently uploaded 10.8, but I have a number of VALUABLE old files which I can no longer read because "power PC applications are no longer supported.  How can I retrieve them?

    I recently uploaded 10.8, but I have a number of VALUABLE old files which I can no longer read because "power PC applications are no longer supported.  How can I retrieve them"?

    Here is a post I assembled for another with a similar problem:
    Unfortunately you got caught up in the minor miracle of Rosetta.  Originally licensed by Apple when it migrated from the PowerPC CPU platform that it had used from the mid-1990's until the Intel CPU platform in 2006, Rosetta allowed Mac users to continue to use their library of PPC software transparently in emulation.
    However, Apple's license to continue to use this technology expired with new releases of OS X commencing with Lion (and now Mountain Lion).  While educational efforts have been made over the last 6 years, the fact is that Rosetta was SO successful that many users were caught unaware UNTIL they upgraded to Lion or Mountain Lion.
    Workarounds:
    1. If your Mac will support it, restore OS X Snow Leopard;
    2.  If your Mac will support it, partition your hard drive or add an external hard drive and install Snow Leopard into it and use the "dual-boot" method to choose between your PPC software or Lion/Mt. Lion;
    3. Upgrade to an Intel compatible versions of your software, or find alternatives that will open your data files;
    3.  Install Snow Leopard (with Rosetta) into Parallels:
                                  [click on image to enlarge]
    Full Snow Leopard installation instructions here:
    http://forums.macrumors.com/showthread.php?t=1365439
    NOTE: STEP ONE of the instructions must currently be completed on a Snow Leopard or Lion Mac and the resulting modified Snow Leopard.cdr install file can then be moved over to your Mountain Lion Mac for completion of the remaining steps.
    NOTE 2:  Computer games with complex, 3D or fast motion graphics make not work well or at all in virtualization.

Maybe you are looking for