Closed document without saving

I copied/pasted from web page into new document. I went to close it, and when dialog box appeared asking if I want to save document, I pressed "don't save." Don't ask me why. I understand I deleted it, but shouldn't it be in the trash? I went into Trash, the nothing is listed for the last four (4) days. So.......is there a way to retrieve unsaved document?
and.....why isn't it in the trash. In fact, where are the items I purposely deleted over the past 4 days? This is giving me a headache. Help, please.

When you put anything in a document it is in RAM until the document is saved to a disk. There is nothing to go in the Trash. Even if you had AutoSave enabled, it won't save anything until the document has been saved to disk.
This is why it is important to save files often. If you're not sure you'll want to keep the changes, use Save As… & give the file a different name, perhaps just adding a number to the original name.

Similar Messages

  • How can I close a document without saving changes?

    I'm using Pages 4.3 with OS10.9.1.
    Before I upgraded to OS10.9.1, when I closed a document (Command W) it asked me first if I want to save the changes I'd made to the document. I had the option of saving or not saving.
    Sometimes I want to close a document without saving the changes, for example if I edit a text, then decide I prefer the unedited version.
    But now that I'm using OS10.9.1, when I close a document, it automatically saves any changes I've made.
    How can I get back to the original option of saving or not saving changes when I close a document? This option was available with the same version of Pages, when used with an earlier OS.
    I've searched the Pages Users Guide, but can't find any answer, or default settings. Pages Preferences doesn't seem to address this.
    I'm not using track changes, so I don't think that's the problem.
    Any solutions would be greatly appreciated!

    [Viking: I am using v4.3. ... See my orginal post.]
    But I found the solution, for anyone else who is having the same problem....
    Open your computer's System Preferences > General, and click the box "Ask to keep changes when closing documents."
    Now, when you close a document in Pages, a window will open giving you the option of saving changes or not.
    (I don't know whether this works in Pagesv.5., buty it works with v.4.3)

  • Navigate to next document without saving any changes in last document in AxWebBrowser

    Hi,
    I am opening MS Office Document file in AxWebBrowser after that i navigate to next Office Document ,before navigating i saved the last document like this
    AxWebBrowser1.ExecWB(SHDocVw.OLECMDID.OLECMDID_SAVE, SHDocVw.OLECMDF.OLECMDF_ENABLED)
    but how can i navigate to next Document without saving it if it also have any changes?
    if i do not use above line of code it ask for "Save","Don't Save" and "Cancel" before navigating to next document.
    help me thankx

    Hi,
    I am opening MS Office Document file in AxWebBrowser after that i navigate to next Office Document ,before navigating i saved the last document like this
    AxWebBrowser1.ExecWB(SHDocVw.OLECMDID.OLECMDID_SAVE, SHDocVw.OLECMDF.OLECMDF_ENABLED)
    but how can i navigate to next Document without saving it if it also have any changes?
    if i do not use above line of code it ask for "Save","Don't Save" and "Cancel" before navigating to next document.
    help me thankx
    Hello,
    In this case, we need to get the object for that document inside the NavigateComplete2 event.
    And then we could call its
    close method before we navigate to the other document.
    For get the document object we could refer to the sample shared in
    How to use the WebBrowser control in Visual Basic to open an Office document
    Public Class Form1
    Dim OpenFileDialog1 As OpenFileDialog = New OpenFileDialog()
    Dim oDocument As Object
    Private Sub Button1_Click(ByVal sender As System.Object, _
    ByVal e As System.EventArgs) Handles Button1.Click
    Dim strFileName As String
    'Find the Office document.
    With OpenFileDialog1
    .FileName = ""
    .ShowDialog()
    strFileName = .FileName
    End With
    'If the user does not cancel, open the document.
    If strFileName.Length Then
    oDocument = Nothing
    AxWebBrowser1.Navigate(strFileName)
    End If
    End Sub
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    Button1.Text = "Browse"
    With OpenFileDialog1
    .Filter = "Office Documents " & _
    "(*.docx, *.xlsx, *.ppt)|*.docx;*.xlsx;*.ppt"
    .FilterIndex = 1
    End With
    End Sub
    Private Sub Form1_Closing(ByVal sender As Object, ByVal e As _
    System.ComponentModel.CancelEventArgs) Handles MyBase.Closing
    oDocument = Nothing
    End Sub
    Private Sub AxWebBrowser1_NavigateComplete2(ByVal sender As Object, _
    ByVal e As AxSHDocVw.DWebBrowserEvents2_NavigateComplete2Event) _
    Handles AxWebBrowser1.NavigateComplete2
    On Error Resume Next
    oDocument = e.pDisp.Document
    'Note: You can use the reference to the document object to
    ' automate the document server.
    MsgBox("File opened by: " & oDocument.Application.Name)
    End Sub
    End Class
    And for closing part, we could refer to
    How to: Programmatically Close Documents.
    Regards,
    Carl
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Using Firefox, I used to be able to open a document on a website and look at it without downloading.  Now, I must download a document in order to view it.  How can I change settings so that I can open documents without saving them?

    Using Firefox, I used to be able to open a document on a website, such as a bank statement, and view it without downloading.  Now, I must download and save a document before I can view it.  How can I change settings so that I can open documents without saving them first?

    Do you know what kind of docs they are? Did you upgrade/Update Firefox lately?
    https://addons.mozilla.org/en-US/firefox/addon/pdf-download/
    http://kb2.adobe.com/cps/333/333563.html
    https://addons.mozilla.org/en-US/firefox/addon/open-it-online/

  • Conversion from CS3 to CS4 - closing files without saving

    One more issue...
    I'm making temporary changes to a book and a document so I want to close the documents without saving. This is what I'm currently using.
                    myBook.close(SaveOptions.NO);
                    myDocument.close(SaveOptions.NO);
    What seems to be happening is that the file is saved anyway. No Save As window opens. I've looked in the Object Model and it looks like CS4 uses the same syntax as for CS3. Any suggestions?
    B

    It looks like you're trying to add an existing CS3 document to a new CS4 book. InDesign wants to save the CS3 document in CS4 and so gives you the Save As dialog. You can either go through all the existing CS3 documents you'll be adding and save them out from CS4, or add a few lines to the script that will do it. (Change the variable name I used if it's used somewhere else in your script.)
    // Creating book
    var myBookFileName = myPath+"Personalized Modules/PW.indd";
    myBookFile = new File( myBookFileName );
    myBook = app.open( myBookFile );
    myBook = app.books.add( myBookFile );
    // Add the front cover
    myFilename = myPath+"Personalized Modules/PW_Cover.indd";
    myFile = File(myFilename);
    // Save cover document in current version
    myDoc = app.open(myFile,false);
    myDoc.save(myFile)); // will overwrite CS3 file with CS4 file
    myDoc.close();
    myBook.bookContents.add(myFile);
    // Add the rest of the individual files
    I didn't test this code. Let me know if you have problems.
    Jeff

  • CS5 discards untitled document without saving

    Last evening as I was assisting a new CS5 user, twice the program closed a document we were working on and hadn't saved yet.  We were just opening another file.  We didn't receive any message to save the file.  It is gone!  Why would the software not give us an opportunity to save it?

    I am familiar with the tabbed design and didn't think it matched.  
    We'll check again.  Thanks for the suggestion.
    Mary Lou

  • Creating a multipage document without saving each page

    Hi there,
    I am new to Adobe Acrobat (version 9 Pro) but not to PDF editors
    I work with design and a common task is, once I finish a design, send to my customers 20 or 30 different floorplans, 3D views, renderings, etc--> all these elements are included in one document (PDF).
    To generate the floorplans, rendering, etc. I use a 3D design program, and with the model in the screen, I examine the model and I create the different plans, views, etc--> for eachplan or view I can --> a) Save the image to jpg, bmp, etc or--> b) Print the image to
    With my old PDF creator, I am able to Print to --> the program opens--> each "Print to" plan or image goes to a temporary document --> when I am done (including texts, etc)  I convert the complete sequence to PDF
    In this way I don't need to create 20 or 30 files (jpgs or PDFs )--> I create just the final product
    Is there a way to do this with Adobe Acrobat V9?
    I checked all the options in "Combine" , however, for all of them, I need to generate first the 20 or 30 files (jpgs or PDFs  )-->  combine the files --> delete the 20 or 30 files
    The 3D program  I use doesn't render to clipboard, so this is not an option
    Any idea?
    Thank you in advance
    Pat

    Thank you for the answer
    I tried the Portfolio, but as I understand it, you can add only previously saved files. Therefore, I still have to create & save dozens of files
    In a perfect world (LOL, perfect for me )
    I'd like to create an empty portfolio --> Open my 3D program and print or create the images directly to the portfolio--> at the end, create the PDF document
    Regards
    Pat

  • Index document with Oracle Text from an ECM without saving the content

    Hi,
    I have documents in a ECM (Alfresco, UCM and more) and I would like Oracle Text to index the document without saving the content. I want to save space and not have redundant information. I would use Oracle Text to search for document's identification (ID) and fetch the document from the ECM using the ID.
    Is it possible ?
    Do I have to use Secure Enterprise Search ?
    Thanks
    Simon

    I want to save space and not have redundant information.The database space or the disk space (in OS)?
    If it the database space, it is not possible to index/serach without storing the file conetents.
    using , FILE_DATASTORE you can save the file in the disk (OS) and index them.
    When you remove the file, you need to re-index it.
    I donot see any other ways.
    Do I have to use Secure Enterprise Search ?SES also uses Oracle Text as its base. It also uses FILE_DATASTORE. But the re-indexing part is automated using crawlers.

  • Recovering a Pages iWork document without TimeMachine

    Ok here is the deal; I was working in iWork pages on a document and accidentally closed it without saving thinking I already saved it how I wanted earlier (which I didn't). I then finally discovered what the application TimeMachine and I am going to get it up and working but that won't help me recover the document I lost BEFORE I started using TimeMachine! Is there any tricks or way to recover my lost document from the computer at this point? I know what to do in the future (use time machine, save more often, backup my documents automatically) but I figure there must be SOME way to recover the document using technical computer "backdoors" or tricks. Right? Please help me.

    Microsoft Word has autosave, it still has to save.
    You can have Pages make backups of the previously saved version (in Preferences) and there is free autosave software available:
    http://www.freeforum101.com/iworktipsntrick/viewtopic.php?t=8&mforum=iworktipsnt rick
    Peter

  • Can I retrieve a Page document I just closed without saving? (-:

    Can I retrieve a Page document I just closed without saving? (-:

    If the OP's information is correct (Snow Leopard), there is no autosave.
    Otherwise, the idea that you must save once before autosave kicks in seems to be one of those bits of misinformation that gets repeated so many times that everyone starts to believe it. I never used Lion or Yosemite, but certainly with Mountain Lion and Mavericks, autosave does save documents before they are saved to a real file. Since that is essential to the ability to restore open windows on relaunch, I am pretty sure it also applies to the systems that I haven't used.
    I think the system may not keep versions until a document is explicitly saved.
    Closing an unsaved document will discard the autosave information in any case, but, at least with the way I've had my preferences set, it does throw up a dialog asking you to confirm that you want to discard the data.

  • Alart pop-up before closing a document withouit saving, no more?

    Since Lion, Pages no longer pops up the alart message when you try to close a document withouit saving; it just saves without asking. I find this quite annoying.
    I save small changes that I make to a document quite frequently. If I close a document by accident, thereby saving it, then the content of the document and that of the auto back-up become almost identical. That means the back-up is utterly useless. Nor can I "undo" the changes as I lose all the edit history by closing the document.
    Is there any way to bring back the old alart pop-up?

    Dale Gillard wrote:
    If you delete a document you cannot view it's "backup" (aka a copy of it in Versions).
    Hello Dale
    This is why I wrote the set of scripts available in my iDisk (address below).
    Download :
    For_iWork:about_versions.zip
    Yvan KOENIG (VALLAURIS, France) jeudi 29 septembre 2011 15:46:34
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • How do I close a numbers document without closing the entire app?

    Can anyone tell me how I can close a numbers document without closing the entire app? i.e. go back to the folders display page - is this even possible?

    It is not a bug, but a new feature.<br />
    Some menu entries in the main menu bar are hidden if you use the mouse and only appear if you use the keyboard to open the menu (Bug 626825).
    You can see the difference if you use Alt+F to open the File menu or other menus like the Edit menu (Alt+E) and Bookmarks menu (Alt+B) and compare that to what you see if you use the mouse to open the menu after you have made the menu bar visible by tapping Alt or by pressing F10.
    *[https://bugzilla.mozilla.org/show_bug.cgi?id=626825 bug 626825] - Hide redundant menu commands unless the user invokes the menu using the keyboard (make use of the openedWithKey attribute)
    ''(please do not comment in bug reports; you can vote instead)''
    See also:
    * [[/questions/799856#answer-155765]]

  • How do I save a document without it saving the text/object box outlines?

    Is it because I'm using the trial that I can't save a document without it showing the outline of every text/object box? I've not selected all, but that's what the saved document looks like...

    You want Pages, not workstations, and you might want to bookmark Lion and MacBook Pro fora.
    http://www.apple.com/support/pages/
    http://www.apple.com/support/lion/
    http://www.apple.com/support/macbookpro/

  • Unbilled Revenue Reporting - without saving simulation billing documents

    Hi,
    I would like to know if anyone has ever run unbilled revenue reporting successfully from BI without saving the simulation billing documents that are generated from the Mass Simulation Run? Can the information be exported to BI without saving these documents? If yes, where is the total revenue calculated stored in SAP?
    In my past experience we had to save the generated billing documents to be able to load them in BI and run monthly report. This is affordable if the number of customers is low but is not a good practice in case of clients with very high customers.
    Transaction ESIMD can be used to delete these billing documents - how has your experience been with this report? What are the factors to be considered when using this report?
    Thanks,
    Shweta

    Gurus -
    I am still struggling with this.
    I am debugging the program REA_SIMINDICES_BILL.
    I see the biiling doc internal tables getting populated, but the internal tables for sending data to BW (and COPA, etc.) are empty.
    The simulation type clearly has transfer to BW set, and the datasource is the 0UC_SALES_SIMU_01 datasource defined in the subdialog.
    Is there a SAP NOTE that I am missing - we are on ECC 6.0 (IS-U).
    Is there ANY functional/technical reason why BW delta Q is not getting populated despite Simulation Docs being generated.
    Thanks!!!!

  • Saving a modified word document without user intervention

    Dear Reader,
    I have successfully opened a template (MS Word document), and
    modified the bookmarks using DDE; however, now in attempting to
    save the document without the user having to respond I am having
    problems. I have attempted to use DDE.EXECUTE(ConvId,'[Save
    ()]',1000); but this drops into the VB debugger and nothing is
    saved. If I remove the "[]" then an error occurs. If I attempt
    to place something with the brackets () an error occurs within
    the VB Debugger.
    Looking for a simple coding example using DDE.
    Thanks in advance.
    Gerry

    Hi Tina,
    I would first suggest installing all available updates to his/her system and Office installation, including updating the video card driver to the latest version. Then try again.
    Also try to do a Windows clean boot to determine if the issue was caused by any applications/services conflicts:
    http://support.microsoft.com/kb/929135/en-us
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

Maybe you are looking for

  • HT3986 How would I go about installing Windows 7/8 without a disk drive on my Mac Book Pro?

    My Mac Book Pro doesn't have a disk drive. Is it still possible to install windows via bootcamp?

  • Restoring an iweb site after erase & install.

    all of my site info is in the .mac iweb folder, but i can't see a way to load that information into iweb. i use the iweb for a photo gallery on a drum company website, and would rather not rebuild it from scratch. can anyone help? thanks candcdrumcom

  • Dummy purchase order receipt record

    hello. i'm running an Oracle 11gR1 database. I am writing reports against Purchasing Data and want to create a dummy record at the receipt level for any unreceived line items *Sample Data* Order No     Line No     Release No    line_qty          Rece

  • Portal Support

    For three days now I cannot view any objects or create any new objects in the New Portal.    I have tried different browsers and different PC's , I just get a grey screen.   I tried to raise a ticket with MS as biling but they dont seem interested.  

  • Creator Updates - any more cost / time effective alternative?

    Is there a way to download the Creator updates on to a disk at (say) an internet cafe for later update of my copy - I have a very slow internet connection line , and usually terminate the update, halfway to the end ,because it takes forever. Beside i