How do i open file with text recovery converter?

I have created a word document and saved it. When I try to open it I am told ‘this file may be corrupted. Open file with text recovery converter’. I do not know how to do do this. Pleas help.

Sounds like you are using Word. Therefore post in Microsoft's forum:
http://answers.microsoft.com/en-us/mac?auth=1

Similar Messages

  • How to create pdf files with text field data

    how to create pdf files with text field data

    That looks like it should work, but it doesn't.
    I opened the PDF I had created from Word in Acrobat (X Pro). Went to File > Properties. Selected "Change Settings". I then enabled "Restrict editing...", set a password, set "Printing Allowed" to "none", "Changes Allowed" to "none", and ensured that "Enable copying of text..." was disabled.
    I saved the PDF file, closed Acrobat, opened the PDF in Reader, and I was still able to select text and graphical objects.
    I reopened the PDF in Acrobat, and the document summart still shows everything as allowed. When I click on "show details" (from File > Properties) it shows the correct settings.
    Any ideas?

  • Developer: How can I let people open files with my program?

    Hello Everyone,
    I just finished my program for the Mac, and decided to make it an application.
    I used Platypus to make my program into an application. Unfortunately when I try to open a file with my program (control + click on file + open with -> other), my application is grayed out and I can't select it. I see it there along with the other applications but I can't select it like I can Mail or TextEdit.
    I read somewhere I had to use XCode to let people open files with my program but I have never used XCode and I have no idea how to do that. Any help would be appreciated.
    Thanks,
    Nick

    You've posted in the wrong forum. This is the OS X Leopard Installation and Setup forum. You need to post your problem in the Developers forum. Also, since Platypus is not an Apple product, you should visit it's developers forum for assistance. The Apple Discussions is intended to assist users with problems and questions about Apple products only.
    To use XCode Tools you need to install it from the Optional Installs folder on your OS X Installer Disc One. It comes with documentation. More assistance can be found at developer.apple.com.

  • Sublime Text 2 won't open files with double click

    Hi, this is my first time asking for something.
    Well, i've been using Scribes, but sometimes i need tabs in my text editor, so i installed Sublime Text 2.
    The problem is that i can't open files with double click, i need to use "subl filename" and that it's not funny :S
    If i double click a file ST2 opens, but with a tab named "file" and without content.
    Is there a fix for that?
    My Arch installation (if is neccesary):
    Arch x86_64
    Openbox (stand-alone)
    PCManFM
    P.D: sorry for my english D:

    the reason seems to be a broken desktop file.  `/usr/share/applications/sublime-text.desktop` says `Exec=subl %U`, but it should be `%f`. Also the Aur package does not provide a `subl` symlink so you should create one.

  • Opening files with servlet

    Okay... I'm new to using servlets. Not so much to jsp, just to using servlets. I have one process on our site that is using servlets and I'm trying to mimic how that is using em but am having no luck.
    I am trying to open files with a servlet. I have the class built and compiled, but mainly pulled it from Java World. I evenually will need to pass the servlet the filename and path I want open but in this example it has the file set. My problem is I want to send users to a jsp file where I check user authentication and call the servlet to open the doc, but I don't know how to call the servelet or what to send it. If someone could maybe walk me through this.
    Here's my servlet:
    package cmxx.fileServe;
    import java.io.*;
    import java.util.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class fileServe extends HttpServlet {
    final static String CONTENT_TYPE_DOC = "application/msword";
    final static String CONTENT_TYPE_HTML = "text/html";
    final static String document = "/docs/form_41.doc";
    public void doPost(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException
    doGet(request, response);
    public void doGet (HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException
    PrintWriter out;
    out = response.getWriter();
    HttpSession websession = request.getSession(true);
    response.reset();
    response.setDateHeader ("Expires", 0);
    response.setDateHeader("max-age", 0);
    try {
         response.setContentType(CONTENT_TYPE_DOC);
    FileInputStream fileInputStream = new FileInputStream(document);
    ServletOutputStream servletOutputStream = response.getOutputStream();
    int bytesRead = 0;
    byte byteArray[] = new byte[4096];
    while((bytesRead = fileInputStream.read(byteArray)) != -1) {
         servletOutputStream.write(byteArray, 0, bytesRead);
    servletOutputStream.flush();
    servletOutputStream.close();
    fileInputStream.close();
    } catch(Exception ex) {
         throw new ServletException(ex.getMessage());
    } /* end doget */
    } /* end class */

    I'm trying a new servlet. But am getting a few compile errors. Can someone help?
    Here are my Errors:
    43 cannot resolve symbol
    symbol : class URL
    location: class cmis.fileServe.fileServe2
    URL url = new URL(fileURL);
    ^
    43 cannot resolve symbol
    symbol : class URL
    location: class cmis.fileServe.fileServe2
    URL url = new URL(fileURL);
    ^
    57 cannot resolve symbol
    symbol : class MalformedURLException
    location: class cmis.fileServe.fileServe2
    } catch(final MalformedURLException e) { 
    ^
    Code:
    package cmis.fileServe;
    import java.io.*;
    import java.util.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class fileServe2 extends HttpServlet {
    public void doPost(HttpServletRequest req, HttpServletResponse res)
    throws ServletException, IOException
    ServletOutputStream out = res.getOutputStream();
    // Set the output data's mime type
    res.setContentType( "application/pdf" ); // MIME type for pdf doc
    // create an input stream from fileURL
    String fileURL = "http://www.adobe.com/aboutadobe/careeropp/pdfs/adobeapp.pdf";
    // Content-disposition header - don't open in browser and
    // set the "Save As..." filename.
    // *There is reportedly a bug in IE4.0 which  ignores this...
    res.setHeader("Content-disposition", "attachment; filename=Example.pdf" );
    // PROXY_HOST and PROXY_PORT should be your proxy host and port
    // that will let you go through the firewall without authentication.
    // Otherwise set the system properties and use URLConnection.getInputStream().
    BufferedInputStream bis = null;
    BufferedOutputStream bos = null;
    try {
    URL url = new URL(fileURL);
    // Use Buffered Stream for reading/writing.
    bis = new BufferedInputStream(url.openStream());
    bos = new BufferedOutputStream(out);
    byte[] buff = new byte[2048];
    int bytesRead;
    // Simple read/write loop.
    while(-1 != (bytesRead = bis.read(buff, 0, buff.length))) {
    bos.write(buff, 0, bytesRead);
    } catch(final MalformedURLException e) {
    System.out.println ( "MalformedURLException." );
    throw e;
    } catch(final IOException e) {
    System.out.println ( "IOException." );
    throw e;
    } finally {
    if (bis != null)
    bis.close();
    if (bos != null)
    bos.close();
    } /* end class */

  • Process.start("winword", filename) can not open file with space in the path and name

    Hi,
    I am trying to write a class which can open file with selected application. for simplicity, now I just hard code the varaibles.
    the problem: if the path or file name has space in it, even it exist, winword still can not open it.
    could someone kindly show me what I did wrong and how to do it properly.
    Thanks in advance.
    Belinda
    public static class FileOpen
    public static void info()
    string path = @"c:\a temp folder\aaa 1.txt";
    if (File.Exists(path))
        // the file I am using in the sample does exist
         MsgBox.info("yes");
    else
         MsgBox.info("no");
    // working
    //Process.Start("winword", "c:\\aaa.txt");
    // not working
    //Process.Start("winword", "c:\aaa.txt");
    // not working
    Process.Start("winword", "c:\\a temp folder\\aaa 1.txt");
    // not working
    Process.Start("winword", path);

    string AppPath;
    AppPath = ReadRegistry(Registry.CurrentUser, "Software\\FabricStudio", "TARGETDIR", value).ToString() + @"help";
    string FileName = "'"+ AppPath + "\\ImageSamples.doc" + "'";
    try
    System.Diagnostics.Process.Start("Winword.exe", FileName);
    can any body please help for this.
    where i am making mistake?

  • Snow Leopard 10.6.2 CS4 InDesign can't open files with a "#" in file path

    Snow Leopard 10.6.2 CS4 InDesign can't open files with a "#" in file path using any of these perfectly normal methods:
    1. double-click file in the Finder (e.g in a Folder on your Mac or on your Mac desktop etc.)
    2. select file and choose "File... Open" command-o in the Finder
    3. drag file to the application icon in the Finder.
    4. Select file in Bridge and double-click, choose File.. Open.. or Drag icon to InDesign icon in dock.
    If you try to open an ID file named with a "#", you will get an error message "Missing required parameter 'from' for event 'open.'"
    This happens to any InDesign file that has a "#" (pound sign, number sign, or hash) in the filename or in the file path (any parent folder).
    To reproduce
    Name an InDesign file Test#.idd Try to open it in the Finder or Bridge (as opposed to the "Open" dilaog of InDeisng itself).
    "Solution"
    The file WILL open using File... Open... command-o while in InDesign application.
    Rename the file or folders that have a "#" (shift-3) in the filename.
    Report to Adobe if it bugs you.
    This does not occur in "plain" Leopard 10.5 nor Tiger 10.4
    Untested in Panther or before and
    Untested with CS3 and earlier in Snow Leaopard.
    Anyone have those and want to try this... ?

    In case this really bothers you: we've added a workaround for this into Soxy. If you enable the option, these documents will open fine on double-click.
    You need Soxy 1.0.7 from:
    http://www.rorohiko.com/soxy
    Go to the 'Soxy' - 'Preferences' - 'Other' dialog window, and enable 'Open InDesign via Script'
    (Irrelevant background info (it's all invisible to the user): the workaround works by special-casing how Soxy opens documents in InDesign: instead of using AppleScript, Soxy will use ExtendScript to instruct InDesign to open the document - which works fine).

  • Xdg-open is opening files with no extension in wine notepad

    xdg-open is opening files with no extension in wine notepad. This is really annoying. How can I change it?

    Click on "Browse" button at the "Open With" dialog and navigate to the location, where acrord32.exe is located. Preferebly, it should be this location "C:\Program Files\Adobe\Reader 9.0\Reader\AcroRd32.exe" unless you have installed at some customized location.  I'm assuming you have installed Reader 9. Once you add Adobe Reader in the open with list, it would continue to appear next time onwards.

  • Ipod is disabled for 22,849,620 minutes how can I open ipod with this message?

    Ipod is disabled for 22,849,620 minutes how can I open ipod with this message?

    Disabled
    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                         
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: How to back up     
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store        

  • Open file with reference

    Hi
    I want to open files with a reference in hidden mode. Is this possible?
    Because I want to make a program where the user can choose a new test station and then the controls and indicators will be created (or become visible) and the subroutine begins to run.
    Does anybody have a good idea or even an example how to do this?
    Best regards,
    Yves

    Hi Yves,
    You could control your Test- VI with a global variable as shown below. This solution uses two independent while- loops. The Test-VI won't be opened and does the work invisible.
    This is the Main-VI
    And this is the Test-VI
    Greets, Dave
    Message Edited by daveTW on 09-28-2006 03:30 PM
    Greets, Dave
    Attachments:
    Test VI.png ‏2 KB
    Control VI.llb ‏31 KB
    Main VI.png ‏7 KB

  • How do I open HELP with Photoshop Elements12?

    Hi, I haven't used PSE in awhile and recently bought PSE release 12 so I went through looked at the Users manual, view the Online videos and wanted to check on HELP and the dropdown menu Photoshop Elements HELP (PF1) but nothing happened. I did this is in all three modes (Quick, Guided and Expert) but "help" did not appear so my question is, how do I open HELP with PSE12?
    Thanks,
    Bob
    P.S.- my objective (what I was looking for) were the step by step instructions on how to straighten a photo

    To automatically straighten the image and leave the canvas around the image, choose Image >> Rotate >> Straighten Image.
    The straightened image contains areas of blank background, but no pixels are clipped.
    To automatically straighten and crop the image, choose Image >> Rotate >> Straighten And Crop Image.
    The straightened image does not contain areas of blank background, but some pixels are clipped.
    If you have a photo with an horizon you can drag a line along it with the straighten tool.
    Click Help on the top menu bar for the on-line help files.

  • How can I open file?

    How can I open file; such as create other programme(Dream weaver...etc)?
    One of my friend will make website for me soon...(She is not Mac user...I think she will use dream weaver or other tools)
    So...I want take that file open in iweb09' is it possible?

    Imagine iWeb as a database which upon your command creates html files. It's a one-way process. You can generate more html files later but iWeb cannot open them. It only works with the "database" (the domain file).

  • Opening files with .asp extension

    Since few weeks I am not able to open files with .asp extension.
    There was no problem over a long time, maybe the issue started with the actualization of OS X, moving to OS X 10.6.5 or with the actualization of Safari, moving to 5.0.3.
    Please let me know what I can do to re-open .asp files.
    Thanks

    Hallo Everybody, I have a similar issue.
    I run a Macbook Pro, and I operate into an internet based ERP system (managed by microsoft machines)
    In this system, which completely works through internet, I can create orders, invoices, then I tap "create invoice" and get a pdf file.
    Till few weeks ago it worked smoothly: I tapped "create invoice", the system worked and few seconds later adobe reader opened showing me the file from a .asp document. Now it doesn't work anymore.
    If I tap "create invoice", adobe reader doesn't do anything, but the .asp file is created into the "download" folder with the name "print preview", so I have to go into that folder and manually open the file.
    This leads in a waste of time and some confusion if I issue many documents at a time, which I find all mixes up with names "print preview 1" - 2 - 3...
    Does anybody have a clue on how I can open the .asp files into adobe reader automatically as they are created?
    Thank you in advance

  • Opening files with no extension

    Adobe Reader is installed on 2 different PCs running Windows XP, PC1 and PC2.
    Both PCs need to open .pdf files with no extension, because an application renames files, let's say "file1pdf", as "file1", without altering the contents.
    On PC1 if I try to open a file, let's say "file1", I see a list of available applications including "Adobe Reader".
    On PC2 if I try to open the same file I don't see "Adobe Reader" in the list of available applications.
    Adobe reader is installed on both PCs.
    How can I add "Adobe Reader" to the list of available applications to open files with no extension on PC2?
    Regards
    Marius

    Click on "Browse" button at the "Open With" dialog and navigate to the location, where acrord32.exe is located. Preferebly, it should be this location "C:\Program Files\Adobe\Reader 9.0\Reader\AcroRd32.exe" unless you have installed at some customized location.  I'm assuming you have installed Reader 9. Once you add Adobe Reader in the open with list, it would continue to appear next time onwards.

  • How can i open file from adobe reader..i already have adobe read

    how can i open file from adobe reader..i already have adobe reader installed and cannot open a
    file and i cannot convert my file into pdf..

    Is the file really a PDF? Where is it? Have you tried opening it from within Reader?

Maybe you are looking for