Question about keep no history option

How long does "no history" actually keep history when logged in? I understand that it deletes history on logout of skype, but if I were to keep skype running and just exit a conversation, will skype eventually delete that history? Or does that stay until I log out?

I too am having the same issue.  I have it set for No History, however when I exit and come back the following day, everything is still there. I have to manually go in and clear yesterdays history.   There has to be a way to delete history on exit. Maybe I am issing it somewhere?????

Similar Messages

  • A question about keeping screen field unchangable in selection screen

    Hello Expert,
    I have a program as below.
    REPORT Z_TEST.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-i01.
    SELECT-OPTIONS: s_kappl FOR a017-kappl DEFAULT 'M' NO INTERVALS.
    SELECTION-SCREEN: END OF BLOCK b1.
    INITIALIZATION.
      LOOP AT SCREEN.
        IF screen-name CS 'KAPPL'.
          screen-input = 0.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    When I executed the report, the field for S_KAPPL is unchangable. This is as expected. But if I select one variant,  the filed will change back to changable.
    My question is how can I keep the field unchangable after I select variant?
    Thanks in advance,
    Regards, Johnny

    Hello Johnny,
    When you're creating the variant you've to mark the check-box "Protect field" as true.
    This will make the field as output only.
    BR,
    Suhas

  • Question about clearing LR history and backing up

    I know we can clearn LR history on a particular image by clicking "clear all" in the history panel.  Is there a way to do this for all images w/o having to go through all of them?  I don't want LR to keep track of every little thing I did on every little image; if the development is significant, I would use virtual copy or snapshot.  I think having all the history info is waste of space and may slow down LR.
    When backing up LR3, the program only backs up Lightroom 3 Catalog.lrcat, but my LR3 folder is over 2gb.  Is this 20mb Ircat file the only thing we need to worry about?  What are some of the other things in the folder that is taking up so much space?

    yiplong wrote:
    I know we can clearn LR history on a particular image by clicking "clear all" in the history panel.  Is there a way to do this for all images w/o having to go through all of them?  I don't want LR to keep track of every little thing I did on every little image; if the development is significant, I would use virtual copy or snapshot.  I think having all the history info is waste of space and may slow down LR.
    Each history step could be a very small amount of space in the catalogue database. I'm not sure what you mean by "slow down LR." Slow down how? What activities or gestures will be impacted?
    I am hearing you want to reset all settings to some large selection of your images , excepting some or all virtual copies or those with snapshots. It might be better to work with temporary catalogues, merging those into a master catalogue in a selective manner.
    yiplong wrote:
    When backing up LR3, the program only backs up Lightroom 3 Catalog.lrcat, but my LR3 folder is over 2gb.  Is this 20mb Ircat file the only thing we need to worry about?  What are some of the other things in the folder that is taking up so much space?
    Perhaps the preview cache? You can also check to see if your raw cache is in there, too.  I assume your managed photos are in a different directory tree (or trees.)

  • Question Re: Clear Recent History Options

    Navigating to: Clear Recent History > Details > Form & Search History
    Question: I deselected all other boxes under details except Form & Search History
    Time range was set to: Everything
    My original objective for doing so was achieved
    However, when I go back to this window, I cannot deselect all options and apply this null selection.
    In my opinion, the user should be able to control what is cleared anytime they navigate to this window.
    If the last most selection cannot be cleared then an accidental click on clear recent history without choosing the options in the details can lead to an error.
    Why isn't there an apply button in the details window?

    * Make sure that you not run Firefox in (permanent) [[Private Browsing]] mode
    * You enter Private Browsing mode if you select: Tools > Options > Privacy > History: Firefox will: "Never Remember History"
    * To see all History and Cookie settings, choose: Tools > Options > Privacy, choose the setting <b>Firefox will: Use custom settings for history</b>
    * Uncheck: [ ] "Automatically start Firefox in a private browsing session"
    * "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    * "Remove the Cookies" from sites that cause problems: Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]

  • Newbie question about logrotate and "olddir" option

    I have just added "olddir /var/log_archive" line to my logrotate.conf (the rest is Arch default). Should I now move manually all these *.1 *.2 *.3 *.4 files from /var/log to /var/log_archive or will logrotate do that for me? And what with the files in the subdirectories like /var/log/samba/? Should I move them to /var/log_archive/samba?

    I don't *know* the answer. But I bet that you have to move the files yourself. Logrotate doesn't keep track of old files. It just looks to see if they're there where it's currently configured to think they might be; if so it rotates them. So with your config changes, it will now look to see if there are existing .1 .2 etc files in /var/log_archive. (You may need to create /var/log_archive, if it's not already there. There may be a config option to make logrotate do this for you; but it's easiest to do it ahead of time and give the folder the appropriate owner/permissions.)
    As to the subfolders, I suspect they will also need to be moved. In addition to the main /etc/logrotate.conf, there are also package-by-package config files in /etc/logrotate.d/. Look them over to see where the /var/log/samba {...} config block is. (And so on for all your /var/log/* subfolders.) I THINK you'll need to add an "olddir /var/log_archive/samba" command to each of those blocks; otherwise the rotated files will just be put into the top-level /var/log_archive.
    This is all off the top of my head; so don't rely on it without checking against the manpage and google. But I thought it might point you in the right direction.

  • Stupid questions about keeping important calls on the FX application thread

    I'm working on a project that I've been developing for about the last 6 months. I'm using JavaFX as the graphical side, but I'm taking input from a music processing program called Max/MSP, and I'm getting user input from a camera. Both of these things need to run on separate threads from my FX application thread. Up until now, things have been going smoothly. I can manipulate things on screen from my user input, and I have two way communication working between my JavaFX application and Max. Now, however, I need to start actually drawing stuff at runtime. Up until now, pretty much all FX side manipulations of been to just make translations. I now need to create, add, and remove children from Nodes. So I'm of course getting an error saying "not on FX application thread". I understand why it isn't on this thread, and why this is a problem. So I made some changes, so that calls that will make changes to the nodes on the stage, will only note the data, and then make the changes later, on the FX application thread. And then I run into problems, involving my own stupidity...
    I have no idea how to get these calls onto the FX application thread. I mean, this should be really easy. I'm obviously missing something. Or maybe I'm just really tired, and have been looking at this for too long, or maybe the fact that it's been 6 months since I wrote this part of the code. But I see my Mainstage class, which extends Application. It has a start function, which sets up all my on screen do-dads (extended from Nodes and such), calls stage.show()... and then seems to end. When I've done things like call translate functions on my nodes from my user input thread, or from my communication from Max thread, things seemed to have worked. But now I'm thinking I might have been handling that wrong from the ground up. It seems likely that I should be having a "main game loop" (it isn't actually a game, but still, same principle) where I can tell the stage to update all the various nodes with the changes that have happened since the last frame, and try to get everything to update in time for the graphics to render at a reliable frame rate. And yet, I'm just not seeing how to do that. I'm sure this should be obvious, but I'm flat out blanking. And the time crunch is starting to descend... Please, if you can point out some standard way of avoiding this hopefully common newb mistake, I would greatly appreciate it!
    -cullam

    Checkout the documentation on "Pulse" in the JavaFX Archictecture overview which may help clarify some of your questions.
    http://docs.oracle.com/javafx/2.0/architecture/jfxpub-architecture.htm
    In simple terms, as I understand it, the framework will check 60 times a second if anything is dirty and needs repainting. If everything is clean, it will do nothing. If something is dirty, it will repaint it (although the repaint is kind of clever and highly optimized to support region image caching, make use of hardware rendering, etc).
    So you can see that the main rendering loop is essentially hidden from you. Instead you construct a SceneGraph, the system checks regularly whether or not the SceneGraph has changed, and if it has it renders the updated SceneGraph.
    In most JavaFX applications, you have a UI with controls and add event handlers which respond to control input to update the SceneGraph. In such programs, creating a main loop is unnecessary.
    You can set up an animation timeline say at, for example, 30fps (half the pulse rate), then, on every other pulse, nothing will have changed so no redraw will happen. This is only necessary if you are performing an animation or capturing camera input, etc yourself (rather than using a Transition for example).
    Actually, if I get my state changes working properly in a runLater call, do I need to also write a main loop? No, you don't need to write a main loop. Depending on the exact application, you may want one, but if you are already getting events generated by your camera input at 30fps, processing each 30fps from the camera in a runLater call would work fine without creating a loop.
    But you do need to be careful that you don't send too many runLater calls and eventually overload the JavaFX event queue. For example it makes no sense to make more than 60 runLater calls a second to update the scene, because the system will never update the scene more than 60 times a second anyway.
    If you do get a working camera app integrated with JavaFX, please post or blog about it as I am sure many people are interested in such an application.

  • A question about using the history tool after using the extraction tool in photoshop cs3..

    For example:
    http://www.layersmagazine.com/photoshop-...
    When I use the history tool, it erases the image instead. Whats up with that?

    G'day Chris
    I can't tell from the link exactly which tutorial you mean!
    If the original layer is a white background and the snapshot is set to this then the history tool will paint back white even if you then paste or drag an image onto the layer above this.
    You would have to take a seperate snapshot of your image layer and set this layer as the snapshot you want the history tool to use before you start working on it.
    One neat thing you can do is if you paint back some detail with the history brush you can immediately go to Edit > Fade and fine tune how much of the effect you want to apply.
    Hope this helps.
    regards
    John

  • Question about "bluetooth PDA-syn" option?

    HI there,
    I would just like to ask under system preferences, under bluetooth, under advance, there is an option called "bluetooth pda-sync", in its box, should I check or uncheck this option? what is the option "bluetooth pda-sync" for? what is its usage?

    If I am not mistaken, it is probably used for file sharing. If you don't have a phone that can send and receive data from your mac, then you can switch it off. But switching it off will not make a difference.

  • Question about Keep Alive feature in Forte 3.

    Does anyone use Keep Alive feature under Forte 3.0F.2 environment.
    I got trouble and encounters the following problem in the service objects
    daily:
    INFORMATION: An abnormal disconnect from partition
    (CFFE2500-85B0-11D1-B37F-E2F7F3F1AA77:0xec254) was received. Since there
    are
    no method invocations outstanding to this partition, no notification could
    be
    given of this disconnect (by indicating a method invocation failed).
    Therefore, the information associated with this disconnect is being
    reported
    to the log.
    Class: qqsp_DistAccessException
    Error #: [601, 119]
    INFORMATION: The connection to the partner was terminated by the
    Communication Manager for the reasons below.
    Class: qqsp_DistAccessException
    Detected at: qqdo_PartitionMgr::StopLocation at 1
    Error Time: Fri Nov 26 17:45:39
    SYSTEM ERROR: Failed to establish connection: OS Error 61: Connection
    refused
    Class: qqsp_DistAccessException
    Detected at: qqcm_HoseFSM::SetError at 5
    Error Time: Fri Nov 26 17:45:39
    SYSTEM ERROR: hose 15 STATE_CONNECTING (EXT_RECEIVED) from
    qqcm_HoseFSM::IssueConnect (after EstablishConnection)
    Class: qqsp_ErrorDescriptor
    Detected at: qqcm_HoseFSM::SetError at 1
    Error Time: Fri Nov 26 17:45:39
    It seems that Keep Alive sometimes disconnects the connection between the
    service objects and the environmental manager.
    So that any further connection request from the client encounters the
    abnormal exception.
    Forte seems not to recommend to use this feature in the Forte Relase note
    3.0J1.
    She states that "Sites that chooses to test KeepAlives should report all
    problems to Technical Support ( and let
    Technical Support know that you have enabled this capability)"
    Should I disable Keep Alive feature under Forte 3.0F2 environment?
    Rgds
    Tom

    Hey Marco,
    I can`t find a view that is named like "APEX_APPLICATION_PAGE_IR%". Is it not available on the evaluation instance.
    I don`t want to use the build-in CSV download, becaus I want to export thousands of data sets. I got this already to work with APEX 3.0 and I get the sql from the application views. The procedure which creates the file runs a few hours and after that it is inserted into a table from which the user can download the file. In the procedure there happens a few other things, which are very import, so I have to create my custom solution.
    And for that I thought it would be very very very cool if I can get the sql behind the interactive report with the filters ant those things.
    Don`t you think that would be possible? I guess the APEX create a SQL although, or am I wrong?
    Thank you,
    Tim

  • A question about the option Reset All Settings

    Hello, I have a question about the reset all settings function in the IPad. I need to keep all of the installed applications on the device yet I need to remove any log in information and contacts. Is this the correct option or would the Erase All Content and Settings be what I want?

    If you read the OP's request, they "need to keep all of the installed applications on the device".  Selecting "Erase All Content and Settings" will do just that, erase everything.
    Faroff, you can remove accounts in Settings/ Mail, Contacts, Calendar ... that would remove contacts only if the contacts were synced to such an account.  If contacts were synced from iTunes, you'd have to un-sync them from iTunes by changing the sync settings.  If the contacts were just manually entered and not synced with anything, you have to delete them one by one.  However, iOS will remember past usage of a contact, so even if you remove them they may be recalled by you initiating an email or iMessage to something close to what used to be in the Contacts app.  The only way to clear that I think is to do a full erase of the iPad.
    As for log-in information, go to Settings/ Safari/ Passwords & Autofill, where you can erase passwords and saved credit card info.  You can also clear cookies and data in this menu.
    You might be better off doing a full erase of the iPad.  Why do you not want to remove the apps?  You can re-sync them from iTunes or re-download them if necessary.  Or did you inherit this device from someone else and you're wanting to keep their apps installed but remove their private information?

  • A question about the impact of SQL*PLUS SERVEROUTPUT option on v$sql

    Hello everybody,
    SQL> SELECT * FROM v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE    11.2.0.1.0  Production
    TNS for Linux: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    SQL>
    OS : Fedora Core 17 (X86_64) Kernel 3.6.6-1.fc17.x86_64I would like to ask a question about the SQL*Plus SET SERVEROUTPUT ON/OFF option and its impact on queries on views such as v$sql and v$session. Here is the problem
    Actually I define three variables in SQL*Plus in order to store sid, serial# and prev_sql_id columns from v$session in order to be able to use them later, several times in different other queries, while I'm still working in the current session.
    So, here is how I proceed
    SET SERVEROUTPUT ON;  -- I often activate this option as the first line of almost all of my SQL-PL/SQL script files
    SET SQLBLANKLINES ON;
    VARIABLE mysid NUMBER
    VARIABLE myserial# NUMBER;
    VARIABLE saved_sql_id VARCHAR2(13);
    -- So first I store sid and serial# for the current session
    BEGIN
        SELECT sid, serial# INTO :mysid, :myserial#
        FROM v$session
        WHERE audsid = SYS_CONTEXT('UserEnv', 'SessionId');
    END;
    PL/SQL procedure successfully completed.
    -- Just check to see the result
    SQL> SELECT :mysid, :myserial# FROM DUAL;
        :MYSID :MYSERIAL#
           129   1067
    SQL> Now, let's say that I want to run the following query as the last SQL statement run within my current session
    SELECT * FROM employees WHERE salary >= 2800 AND ROWNUM <= 10;According to Oracle® Database Reference 11g Release 2 (11.2) description for v$session
    http://docs.oracle.com/cd/E11882_01/server.112/e25513/dynviews_3016.htm#REFRN30223]
    the column prev_sql_id includes the sql_id of the last sql statement executed for the given sid and serial# which in the case of my example, it will be the above mentioned SELECT query on the employees table. As a result, right after the SELECT statement on the employees table I run the following
    BEGIN
        SELECT prev_sql_id INTO :saved_sql_id
        FROM v$session
        WHERE sid = :mysid AND serial# = :myserial#;
    END;
    PL/SQL procedure successfully completed.
    SQL> SELECT :saved_sql_id FROM DUAL;
    :SAVED_SQL_ID
    9babjv8yq8ru3
    SQL> Having the value of sql_id, I'm supposed to find all information about cursor(s) for my SELECT statement and also its sql_text value in v$sql. Yet here is what I get when I query v$sql upon the stored sql_id
    SELECT child_number, sql_id, sql_text
    FROM v$sql
    WHERE sql_id = :saved_sql_id;
    CHILD_NUMBER   SQL_ID          SQL_TEXT
    0              9babjv8yq8ru3    BEGIN DBMS_OUTPUT.GET_LINES(:LINES, :NUMLINES); END;Therefore instead of
    SELECT * FROM employees WHERE salary >= 2800 AND ROWNUM <= 10;for the value of sql_text I get the following value
    BEGIN DBMS_OUTPUT.GET_LINES(:LINES, :NUMLINES);Which is not of course what I was expecting to find in v$sql for the given sql_id.
    After a bit googling I found the following thread on the OTN forum where it had been suggested (well I think maybe not exactly for the same problem) to turn off SERVEROUTPUT.
    Problem with dbms_xplan.display_cursor
    This was precisely what I did
    SET SERVEROUTPUT OFFafter that I repeated the whole procedure and this time everything worked pretty well as expected. I checked SQL*Plus documentation for SERVEROUTPUT
    and also v$session page, yet I didn't find anything indicating that SERVEROUTPUT should be switched off whenever views such as v$sql, v$session
    are queired. I don't really understand the link in terms of impact that one can have on the other or better to say rather, why there is an impact
    Could anyone kindly make some clarification?
    thanks in advance,
    Regards,
    Dariyoosh

    >
    and also v$session page, yet I didn't find anything indicating that SERVEROUTPUT should be switched off whenever views such as v$sql, v$session
    are queired. I don't really understand the link in terms of impact that one can have on the other or better to say rather, why there is an impact
    Hi Dariyoosh,
    SET SERVEROUTPUT ON has the effect of executing dbms_output.get_lines after each and every statement. Not only related to system view.
    Here below what Tom Kyte is explaining in this page:
    Now, sqlplus sees this functionality and says "hey, would not it be nice for me to dump this buffer to screen for the user?". So, they added the SQLPlus command "set serveroutput on" which does two things
    1) it tells SQLPLUS you would like it <b>to execute dbms_output.get_lines after each and every statement</b>. You would like it to do this network rounding after each call. You would like this extra overhead to take place (think of an install script with hundreds/thousands of statements to be executed -- perhaps, just perhaps you don't want this extra call after every call)
    2) SQLPLUS automatically calls the dbms_output API "enable" to turn on the buffering that happens in the package.Regards.
    Al

  • My question is about the 'Restore Backup' option on iTunes (Not 'Restore iPhone'). So, if I click on Back Up Now, then 'Restore Backup', would that go through the process of erasing everything on my phone as new then restore whatever iTunes has backed up?

    My question is about the 'Restore Backup' option on iTunes (Not 'Restore iPhone'). So, if I click on Back Up Now, then 'Restore Backup', would that go through the process of erasing everything on my phone as new then restore whatever iTunes has backed up?
    I do not want this to happen, as with previous experience iTunes doesn't restore a mirror of what the iPhone was when it was backed up as is the case with iCloud backups.
    What I am trying to do is, as I've found a method on Youtube, there is an application where I can delete all the multimedia saved in my 'iMessages' so clear up some space. As doing that manually through the phone would take a lifetime. The method is to backup on iTunes, then using the backup created, importing that into the application then deleting the messages through that then restoring the phone using that amended backup.
    So back to my question, would restoring through 'Restore Backup' just restore the backup internally or would it flush the entire phone and then restore the backup? And if it does so, what would be lost in the restore?
    Thank you all,
    Fahmid

    iCloud should overwrite your phone with the data stored in your account, preserving your newer data.  However, to be sure I would go to Settings>iCloud and turn data syncing to Off before restoring the backup.  Then, after restoring the backup, turn the data syncing back to on, and when prompted about Merging with iCloud, choose Don't Merge.  This will ensure that the data in your iCloud account overwrites the data on your phone (which is your goal).
    Also, you don't sync text messages with iCloud so you will end up losing your more recent messages when they are overwritten by the backup.

  • Hi, I have quick question about use of USEBEAN tag in SP2. When I specify a scope of SESSION for the java bean, it does not keep the values that I set for variable in the bean persistent.Thanks,Sonny

     

    Make sure that your bean is implementing the serializable interface and that
    you are accessing the bean from the session with the same name.
    Bryan
    "Sandeep Suri" <[email protected]> wrote in message
    news:[email protected]..
    Hi, I have quick question about use of USEBEAN tag in SP2. When I
    specify a scope of SESSION for the java bean, it does not keep the
    values that I set for variable in the bean persistent.Thanks,Sonny
    Try our New Web Based Forum at http://softwareforum.sun.com
    Includes Access to our Product Knowledge Base!

  • Question about "compression option" in workbook

    Hello,
    We'd' like to use the compression option in the workbook (with J#).
    I have 2 questions :
    -How to set this option automatically by default for new workbooks ?
    -How to set this option in mass for old workbooks ?
    Thank you in advance for your help
    Best regards
    Nicolas

    The note talks about "optimized storage" for a workbook, which I am assuming is the same as the "compression option" you asked about.
    And I quote:
    "Solving the issue for a specific workbook:
    - Open the specific workbook in BEx Analyzer
    - Open Workbook Settings dialog
    - Check "Use Optimized Storage"
    - Click on OK Button
    - Save the workbook
               Note: As the change is done in the workbook settings, it affects only that workbook.
    Solving the issue for any workbook within a system:
    - Login to the BW system
    - Execute transaction RS_FRONTEND_INIT
    - Add a new Entry: ANA_USE_OPTIMIZE_STG = X
    - Save your change
               Note: After applying this change, all (re-)saved workbooks will be stored with optimized BI metadata."
    Looks to me like it might be helpful, but you can be the judge...
    Bob

  • HT201303 i have tried to perchase a movie and it keeps coming up with questions about my past thet i dont remember the answer to. how do i find out the answers? i have never come across these questions until now

    i have tried to perchase a movie and it keeps coming up with questions about my past thet i dont remember the answer to. how do i find out the answers? i have never come across these questions until now

    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

Maybe you are looking for

  • Help!!!!!!! vrml97loader packages cannot be found

    I have been messing with the vrml97loader packages for a month and I still get the NoClassDefFound error. I have included every path possible to the vrml97loader.class and .jar files without any luck. Can anyone tell me of another vrml loader that mi

  • Music in Ipod

    How do I get my music from a i pod mini via I tunes on the desk top. Can somebody help me please because you can't copy paste it..... Tanks

  • Helvetica in Evince

    I am looking at some horrid looking pdfs using evince...  The problem is non-embedded fonts and helvetica is the number on culprit. I have xorg-fonts-75/100dpi installed which I think Helvetica is in but this does not help.  Any ideas? Last edited by

  • Please help me with these java puzzle ?

    Dear all, My friend send me typical java puzzle about java.util.ArrayList which is getting messy. Please help me out. It's not a homework. Please help me with these java puzzle ? Dear all, My friend send me typical java puzzle about java.util.ArrayLi

  • Where to Browse Current Questions Most Easily?

    I used to come to discussions frequently and go to the Mac OS sections, the iMac sections and the iPhone sections and look around to see if there were any questions I could help with. Lately, and I mean for the last many, many months since the discus