Opening old .doc files

I am unable to open any old .doc files.

I had a load of important old Word 6 .doc files which I couldn't open with Pages. Fortunately I'd hung on to my old PC, so I re-opened the Word 6 files, re-saved them with a more recent version of Word (Office 97), and transferred them to my Mac via a memory stick. It solved the problem, but the process was a bit time-consuming. Peggy's solution is less complicated, especially if you don't have access to a PC.

Similar Messages

  • Firefox keeps aksing me what programs that i want to open a doc.file with every time i try to download a doc file.

    the program that I use is open office. I chekced the box that says that this will always open a doc file but it keeps asking me about it.

    Firefox should be able to remember your preference -- as long as the site is specifically identifying the file as a distinct content type. Some sites may fail to do this and simply indicate it is a binary file that the browser can't handle, in which case Firefox doesn't store a specific preference.
    So this could be a problem caused by how the server is identifying the content type. Or it could be a problem with the settings file that stores download preferences. The workaround for that problem is to remove the file and have Firefox rebuild it. If you have changed settings from the default (for example, how to view PDFs) you will have to change those settings again.
    If you want to try it:
    Open your current Firefox settings (AKA Firefox profile) folder using
    Help > Troubleshooting Information > (in the first table) "Show in Finder" button
    Leaving that window open, switch back to Firefox and Exit/Quit
    Pause while Firefox finishes its cleanup, then rename '''mimeTypes.rdf''' to something like mimeTypes.old
    Restart Firefox and see whether its memory improves.

  • I have a new IMAC with a Maverick platform (I can update to Yosemite). I did all graphics on a G5 Power PC (very old), in Freehand (very old)... How can I open old Freehand files on this new Mac? Can I still open and work in Freehand on this new Mac?

    I have a new IMAC with a Maverick platform (I can update to Yosemite). I did all graphics on a G5 Power PC (very old), in Freehand (very old)...
    How can I open old Freehand files on this new Mac?
    Can I still open and work in Freehand on this new Mac?

    Let me see if I've gotten this right! You want to remove an account from BOTH machines? Do this for your new machine first, then for the other.
    Click the Apple logo on the top left of the screen, System Preferences, Users and Groups (under Systems), unlock the lock in the window if its locked (you need to know the password), select the user that you wish to remove, and click the - sign next to the + sign for Login options. A window will pop up with some options. Select Delete this user and securely, and click 'Delete user'.
    After this, do an update from the App Store.
    Thats all there is to it.
    For the other machine repeat the process except for one thing. Before you delete the user in this case YOU, you will have to give Administrator priviledges to your son bu checking the box 'Allow user to administer this computer'.
    Do NOT do anything from Finder ... if you dont know how to fix the consequences of the problems caused.
    There is no need to unauthorize your iTunes account on your new machine. Do it on the old machine though.

  • Problem in opening a doc file using Runtime.exec()

    Code:
    import java.io.*;
    class StreamGobbler extends Thread {
        InputStream is;
        String type;
        StreamGobbler(InputStream is, String type) {
            this.is = is;
            this.type = type;
        public void run() {
            try {
                InputStreamReader isr = new InputStreamReader(is);
                BufferedReader br = new BufferedReader(isr);
                String line=null;
                while ( (line = br.readLine()) != null) System.out.println(type + ">" + line);   
            catch (IOException ioe) {
                 ioe.printStackTrace(); 
    public class GoodWindowsExec {
        public static void main(String args[]) {
             String file = "test.doc";
             String appPath = "/C";
            try {
                String osName = System.getProperty("os.name" );
                System.out.println("OS : " + osName);
                String[] cmd = new String[3];
                if( osName.equals( "Windows NT" ) || osName.equals( "Windows XP" )) {
                    cmd[0] = "cmd.exe" ;
                    cmd[1] = appPath;
                    cmd[2] = file;
                else if( osName.equals( "Windows 95" ) ) {
                    cmd[0] = "command.com" ;
                    cmd[1] = appPath;
                    cmd[2] = file;
                Runtime rt = Runtime.getRuntime();
                System.out.println("Execing " + cmd[0] + " " + cmd[1] + " " + cmd[2]);
                Process proc = rt.exec(cmd);
                // any error message?
                StreamGobbler errorGobbler = new StreamGobbler(proc.getErrorStream(), "ERROR");           
                // any output?
                StreamGobbler outputGobbler = new StreamGobbler(proc.getInputStream(), "OUTPUT");
                // kick them off
                errorGobbler.start();
                outputGobbler.start();
                // any error???
                int exitVal = proc.waitFor();
                System.out.println("ExitValue: " + exitVal);       
            catch (Throwable t) {
                t.printStackTrace();
    }I got this code from internet. Program will work fine if my "test.doc" is in "C:\test.doc" directory. Is there any way to get the application path and open the doc file or how to give a specified path for my doc file
    EG:- "C:\TestDir\test.doc"
    Thanks

    Well /C is not the path to the app. It is a switch to
    the command line.
    set your file name to "C:/test.doc"
    ~TimSorry, I guess my reply doesn't really answer the problem. But you can supply the entire path as part of the file name string.
    String file = "C:/Path/To/My/File/to execute/test.doc"

  • How to open a ".doc" file with ms word directly with this servlet?

    Here is a servlet for opening a word or a excel or a powerpoint or a pdf file,but I don't want the "file download" dialog appear,eg:when i using this servlet to open a word file,i want open the ".doc" file with ms word directly,not in IE or save.
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import java.util.*;
    public class OpenWord extends HttpServlet {
    public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    doPost(request,response);
    public void doPost(HttpServletRequest req,HttpServletResponse res) throws ServletException, IOException {
    String strFileName = req.getParameter("filename");
    int len = 0;
    String strFileType1 = "application/msword";
    String strFileType2 = "application/vnd.ms-excel";
    String strFileType3 = "application/vnd.ms-powerpoint";
    String strFileType4 = "application/pdf";
    String strFileType = "";
    if(strFileName != null) {
         len = strFileName.length();
         if(strFileName.substring(len-3,len).equalsIgnoreCase("doc")) {
              strFileType = strFileType1;
         } else if(strFileName.substring(len-3,len).equalsIgnoreCase("xls")) {
              strFileType = strFileType2;
         } else if(strFileName.substring(len-3,len).equalsIgnoreCase("ppt")) {
              strFileType = strFileType3;
         } else if(strFileName.substring(len-3,len).equalsIgnoreCase("pdf")) {
              strFileType = strFileType4;
         } else {
              strFileType = strFileType1;
    if(strFileName != null) {
         ServletOutputStream out = res.getOutputStream();
         res.setContentType(strFileType); // MIME type for word doc
    //if uncomment below sentence,the "file download" dialog will appear twice.
         //res.setHeader("Content-disposition","attachment;filename="+strFileName);
         BufferedInputStream bis = null;
         BufferedOutputStream bos = null;
         String path = "d:\\"; //put a word or a excel file here,eg a.doc
         try {
         File f = new File(path.concat(strFileName));
         FileInputStream fis = new FileInputStream(f);
         bis = new BufferedInputStream(fis);
         bos = new BufferedOutputStream(out);
         byte[] buff = new byte[2048];
         int bytesRead;
         while(-1 != (bytesRead = bis.read(buff, 0, buff.length))) {
         bos.write(buff, 0, bytesRead);
         } catch(NullPointerException e) {
         System.out.println ( "NullPointerException." );
         throw e;
         } catch(FileNotFoundException e) {
         System.out.println ( "FileNotFoundException." );
         throw e;
         } catch(final IOException e) {
         System.out.println ( "IOException." );
         throw e;
         } finally {
         if (bis != null)
         bis.close();
         if (bos != null)
         bos.close();

    Hello!
    Does some one of you had open a MS word file (.doc) in Java search for a token like [aToken] replace it with another text and then feed it to a stream of save it?
    I want to build a servlet to open a well formatted and rich on media (images) ms word document search for tokens and replace them with information form a web form.
    Any Ideas?
    Thank you in advanced.

  • How do I open old tiff files in PS CS5

    How do I open old tiff files in PS CS5?

    Opening old files in new versions should never be a problem - unless they have originally been saved in other applications that don't follow the file format specifications. Or the files are corrupted.
    The other way around can sometimes be tricky because of new features not present in the old version.

  • I recently updated my OS to OS X. I had to update my word and powerpoint etc... to 2011 version, but now when I want to open a .doc file made in word 2003 it removes all the text in it! I did not back anything up!

    I recently updated my OS to OS X. I had to update my word and powerpoint etc... to 2011 version, but now when I want to open a .doc file made in word 2003 it removes all the text in it! I did not back anything up! All my mums work is on there for her job and now she cant use it! I need help fast!

    If you updated from 2003 that must be on a Windows machine, can you recover them from there?

  • Cannot open old Illustrator files (pre version 8) in CS4 trial

    Hi
    I am thinking of upgrading from Illustrator CS2 to CS4. However, I have downloaded the trial version and have found that Illustrator CS4 cannot open old Illustrator files earlier than version 8 (pre 2000) whereas Illustrator CS2 had no problem with this. I do not want to resave my old files as there are way too many of them (hundreds!).
    I am running Windows XP.
    Has anyone else had this problem?
    Thanks

    Exactly what happens when you attempt to open one of these old files in AI 14 (CS4)? (If you get an error message, what does it say?)
    Can you post a sample file up on a server or service and provide the link here? That way, others with AI 14 can test to see whether it's something peculiar to your installation.
    Please also tell us exactly how you are attempting to open the files. (Double-clicking in Explorer? Using File | Open from within Illustrator? Dragging and dropping onto an AI 14 shortcut?)
    >...CS4 cannot open old Illustrator files earlier than version 8...
    I find it very difficult to believe AI 14 can open version 8 but not version 7 files. There was no significant change in the native file format.

  • Warning when opening a .doc file (with Pages) ruins my applescript convert process

    I have 2000 plus documents (some Pages, most .doc) that I need to convert to PDF. I've got a working applescript droplet that converts both doc and pages files very nicely... but on some of the .doc files I get this dialog: "Some warnings occured. Would you like to review them now."  This of course, ruins my script run.
    Is there a way to suppress this warning when Pages opens a .doc file?

    Only if there is a script for dialog boxes in your AppleScript which you would have to tailor for the responses.
    You can record snippets of mouse activity using the Script Editor and include those in your script if there are no AppleScript library items.
    Peter

  • How to open a doc file using jsp Anchor tag

    when i am trying to open a doc file using a jsp it is opening with out proper alignment.
              how to open a doc file with proper alignment using Anchor Tag in JSp Page
              

    Hello!
    Does some one of you had open a MS word file (.doc) in Java search for a token like [aToken] replace it with another text and then feed it to a stream of save it?
    I want to build a servlet to open a well formatted and rich on media (images) ms word document search for tokens and replace them with information form a web form.
    Any Ideas?
    Thank you in advanced.

  • How can I open old cwk files using OS X 10.8.4?

    I have tried to open old cwk files using Pages, using Numbers and using Keynote as well as trying to open them with Word or even OpenOffice.  However, the most I can get is what looks like gibberish.  Any suggestions?  Thanks

    Don't know if you found a solution to your cwk File problem but I had the same problem and solved it by downloading this program and was able to open my old cwk files.
    libreoffice That will oppen old cwk files and its free (by donation)
    Hope this helps?
    Cheers

  • When a plugin to open old Freehand files?

    When a plugin to open old Freehand files?

    You are in the wrong place... this place is to discuss the operation of the forums, not software
    Click the "Adobe Forums" link above-left and then scroll until you find the correct forum
    Also, the SPACE here is provided by Adobe... for other USERS like you to try and help each other

  • Will office 11 work with lion and old doc files?

    I updated to Lion and my old office will not work... will office 11 be able to read and use my old office files ...word and excel?

    Office 2011 will work with Lion, old doc files will work with 2011 as long as MS hasn't done something in Office 2011.  I have had no problems with files from as far back as office 2003 with 2011.

  • Pages 5 in Mavericks no longer opens Text files?- need to open old Clarisworks files

    My 90 year old uncle clung to ClarisWorks, Appleworks far too long
    He still has Claris Works documents he needs to open.Some so old that even AppleWorks version  6x, the final version of AppleWorks could not open!)
    In Mountain Lion, he could open the older Clarisworks- Appleworks documents in TextEdit  , save as  .TXT file and then open that file in Pages
    Tonight, after installing OS 10.9  ( Mavericks)he finds this work around unrelable : Sometimes the new Pages cannot open the .TXT message
    How do  I help him convert his old documents?
    ( he saved  names and addresses in to Claris Works documents instead of entering into his Contacts/Address Book so now he is panicky to retrieve the addresses as he starts working on his holiday greeting and gift mailings)

    Will the old Pages run under Maverick?
    IF so that will be something to try
    Old Pages did not open up the old Clarisworks docs but Pages 09 DID respond when we changed the extension of the CW documents to "TXT".
    So , Uncle can try using Pages 09
    We also can try Libre
    I can install Text Wrangler- there was some advice that it will open the old CW files.
    My concern is that Uncle IS 90years of age. He is remarkable using a Mac but he needs, wants everything to be straightforward and resists, cannot handle any process requiring too many steps
    The need to use an intermediary translation system (CW->TXT->Pages) is stressful for him.
    Such a shame that Apple did not program a translator to open the files made by its previous proprietary software (ClarisWorks and Appleworks)
    Thanks all

  • Opening old Word files

    I have copied from diskettes some old Word files that show on my Mac as being Word files (the icon has the blue 'a' in the middle, and the have the .doc suffix), and if I click on 'Get Info' it says they are Word files, but I can't open them. If I click on them I get the window that asks what I want to convert it from and none of them work. These docs are from 1989 and 1990, so somewhat ancient but important to me. Anybody got any ideas?

    DufusKerrang,
    "If I click on them"
    Because newer genreations of software build in certain unwanted automated features, you are better off opening a file from within a program instead of relying on shortcuts. Make backup copies of the files you want to open. Put them into a test folder. Open the open the version of Word you want to work with. Use the "open" option in the file menu and follow the options. Try several options and see which one gives the cleanest result.
    If you have an older Mac that will run Word 2001, use it instead of the latest version. Word 2004 will crash OS X predictably and require restarting you computer. Avoid it. Newer software alters the icon of a file to show the newer software logo, even if you did not want the icon altered. It makes it harder to quickly identify older files created by older versions.
    The assumption is that 1989 files were in Word 3. They should still be easily recognized but start in the destination program to open them. We have numerous versions of Word starting with v.1 on floppies so we could test options for which files will open on an OS X machine.
    Ji˜m

Maybe you are looking for

  • Is it possible to check to see if a sequence has been called, or is run by a user?

    I'd like a subsequence to be called, but I'd like the Sequence to run differently if it is called versus run by a user. What statement should I use and is this even possible? Thanks.

  • Little Problem with safari 4 shortcuts :(

    Hello, I am writing this topic as a suggestion for a next update for safari: 1) It would be great if tabs navigation could be possible using a shortcut (cmd + 1) for the first tab, (cmd + 2) for the second tab ... (cmd + n) for the n'th tab and so on

  • Since downloading Lion, I can't print!

    Having downloaded Lion, I am not able to print on my Epson pro 4800 printer. It just crashes when I press print! Any ideas?

  • Olap through java

    Hello, I m SWAROOP from India. I want to write servlets n jsp to connect to OLAP cubes that I have developed in MS SQL Server 2000 and want to fire MDX queries on it. Pls tell me how I can do that? I have tried mondrian & jpivot but do use MS Access

  • Can lightroom do what iview mediapro does?

    hi: 1. i've been using iview mediapro for a... long time, but d/t various reasons, i'm thinking about utilizing lightroom for the DAM functions. 2. with iview, i can burn a DVD with many photos--> place the contents of that DVD into iview and then iv