Cannot see how to open the converted file

Hello...
I converted a file from PDF to microsft word DOCX and cannot find how to open it in word.
dave

Hi Dave,
I'd like to assist!
Are you having a hard time finding the file? If so, you can go here:
Files
Be sure to use your Adobe ID and password.
If you are having trouble opening it in .docx try checking to be sure the file is named accordingly.
Let me know if that helps!
Kind regards, Stacy

Similar Messages

  • Hi  can any body please tell me how to open the .exe files in mac and why it is not supported with unarchiever app , also i am not able to run and dvd's in my mac its not accepting any cd's or dvd'd why do i need to do some settings for it ?

    Hi  can any body please tell me how to open the .exe files in mac and why it is not supported with unarchiever app , also i am not able to run and dvd's in my mac its not accepting any cd's or dvd'd why? do i need to do some pre defined  settings to run the cd's and dvd's ?

    A .exe file is a Windows executable. OS X does not run Windows programs. If you need to use .exe files then you will need to install Windows on your Mac:
    Windows on Intel Macs
    There are presently several alternatives for running Windows on Intel Macs.
    Install the Apple Boot Camp software.  Purchase Windows XP w/Service Pak2, Vista, or Windows 7.  Follow instructions in the Boot Camp documentation on installation of Boot Camp, creating Driver CD, and installing Windows.  Boot Camp enables you to boot the computer into OS X or Windows.
    Parallels Desktop for Mac and Windows XP, Vista Business, Vista Ultimate, or Windows 7.  Parallels is software virtualization that enables running Windows concurrently with OS X.
    VM Fusionand Windows XP, Vista Business, Vista Ultimate, or Windows 7.  VM Fusion is software virtualization that enables running Windows concurrently with OS X.
    CrossOver which enables running many Windows applications without having to install Windows.  The Windows applications can run concurrently with OS X.
    VirtualBox is a new Open Source freeware virtual machine such as VM Fusion and Parallels that was developed by Solaris.  It is not as fully developed for the Mac as Parallels and VM Fusion.
    Note that Parallels and VM Fusion can also run other operating systems such as Linux, Unix, OS/2, Solaris, etc.  There are performance differences between dual-boot systems and virtualization.  The latter tend to be a little slower (not much) and do not provide the video performance of the dual-boot system. See MacTech.com's Virtualization Benchmarking for comparisons of Boot Camp, Parallels, and VM Fusion. Boot Camp is only available with Leopard or Snow Leopard. Except for Crossover and a couple of similar alternatives like DarWine you must have a valid installer disc for Windows.
    You must also have an internal optical drive for installing Windows. Windows cannot be installed from an external optical drive.

  • How to open the hidden files in the macbook air?

    Hi,
    I am not able to open the hidden files on my external disk. COuld you pleasee how to open?

    Thank you
    I deleted the whole disk. When I start the computer I press Command+R and appears the earth planet and all the networks detected by the computer. What I don´t understand is that I have a MacBook and an iPad beside the Macbook Air and both recognize the network, but the MacBook Air can´t.
    I tried to use an external drive with the Macbook leopard OS but the  MacBook Air didn´t recognize too.

  • How to open the pdf file using LabVIEW program

    I want to open the pdf file using the system exe, but it is not happening . Can you help me?
    Solved!
    Go to Solution.

    In simpler version
    Mark the satisfied answer as accepted solution for your question,you mistakenly marked youself 
    Message Edited by Baji on 04-07-2009 05:03 PM
    Balaji PK (CLA)
    Ever tried. Ever failed. No matter. Try again. Fail again. Fail better
    Don't forget Kudos for Good Answers, and Mark a solution if your problem is solved.
    Attachments:
    open pdf.JPG ‏25 KB

  • How to open the execel file in the client machience

    Hi
    How can i open an excel file located in a client machience , from the same client machience. I tried with Client_ole2....... but its not working.
    Thanks in advance to you
    Rizly

    Hi Francois ,
    Thank U. But this will open the command prormp also, so the end user is not feeling so happy. How can i do it with the OLE2 or other method. Acually i need to export the data from the Data Block to Excel. so i did it in AS, and move the excel file to client machiene, and I want to open there , I succeede until moving to the client machience.
    Thanks again
    Rizly

  • How to open the eps file in illustrator using c sharp?

    How to open and save the eps file in illustrator via c#(c sharp)? Is there any c# illustrator reference guide available? Kindly advise me.
    Thanks

    Pretty easy ...take the vb reference guide and make the modifications accordingly.
    A quick tip would be to press CTRL+W and view the Object Browser after adding a reference to the illustrator Type Library... that will give you a pretty neat look about the illustrator object model in visual studio ... i`m not quite aware if a similar option is available within Mono Initiative's designer.
    after that is pretty easy.
    (it doesn't really make sense imho importing the namespace as "Application" is used in many other namespaces)
    add this to your Form1_Load routine:
    Illustrator.Application app = new Illustrator.Application();
    app.Open(@"D:\Work\msh_3ds.ai", null, null);
    hope it help.
    cheers;

  • On samsung n120 with hyperspace - how to open the update file

    My Samsung N120 has a Hyperspace os. When i clik on the update file to open; says that i need another program to open. So i can't open it.
    thanks.

    You should do a search on the forum before posting your qestion as this has been the subject of discussion in many threads.
    Basically you need to do 2 things:
    1st Thing:
    Look at FileFilters, extend the class File Filter, for example :
    public class XmlFilter extends FileFilter {
    // Accept all directories and ONLYxml files.
    public boolean accept(File f) {
    if (f.isDirectory()) {
    return true;
    String extension = XmlFilter.getExtension(f);
    if (extension != null) {
    if (extension.equals("xml")) {
    return true;
    } else {
    return false;
    return false;
    // The description of this filter
    public String getDescription() {
    return "Xml files only";
    * file to retrieve file extension from a file.
    * Used for filtering in file chooser.
    public static String getExtension(File f) {
    String ext = null;
    String s = f.getName();
    int i = s.lastIndexOf('.');
    if (i > 0 && i < s.length() - 1) {
    ext = s.substring(i+1).toLowerCase();
    return ext;
    2nd thing)
    then on you filechooser :
    myfilechooser.addChoosableFileFilter(xmlFilter); // only xml files
    Check out Swing by Matthew Robinson/ Pavel Vorobiev (published by Manning) who cover this quite well.

  • How to open a .MAT file in LABVIEW

    Hey everyone,
    I currently have a .MAT image file which I would like to open in LABVIEW to apply some image filters. However, I am unsure as to how to open the .MAT file in LABVIEW. Ideally I would like to be able to open the .MAT file without using matlab, and it seems the only way to accomplish this task is through the mathscript node. I have attached an example of the image im trying to open, as well as the LABVIEW program which I would like to use on the image. Thanks for the feedback! =]
    Attachments:
    MAT_Image_Adjust.zip ‏1779 KB

    Hi Boiler,
    1) Do you have a choice in the format you export your data from MATLAB?
    "ASCII Format
    Complete the following steps if you want to import or export data between LabVIEW and the MATLAB® environment, the process is straightforward as long as you are using ASCII format.
    From the MATLAB® environment to LabVIEW
    To save a vector or a matrix Xin ASCII format with tab delimiter, enter the following in the command window or m-script file in the MATLAB® environment:   
    >>SAVE filename X -ascii -double -tabs
        This creates a file whose name is filename, and it contains the data X in ASCII format with a tab delimiter.
    Import the file into LabVIEW using the Read From Spreadsheet File VI located on the Programming»File I/O palette.
    2) Have you tried using the mathscript node? Did you get any errors?
    "Binary Format
    Complete the following steps if you want to import or export data between LabVIEW and MATLAB®.
    From the MATLAB® environment to LabVIEW
    To read a .mat file in LabVIEW would require a VI to parse the file. This may be easier if each variable is saved to a separate file.
    " -- this was done here, no ideas if it still works,
    I want to read a Matlab MAT file into labview
    Hope this helps, James
    Kind Regards
    James Hillman
    Applications Engineer 2008 to 2009 National Instruments UK & Ireland
    Loughborough University UK - 2006 to 2011
    Remember Kudos those who help!

  • How to open a .pse file in photoshop elements?

    Hello,
    All my previous files were saved as (.psd). Somehow, one of my photoshop elements projects was saved as a (.pse). I can't open it. How can I re open this file and continue working?
    Thanks in Advance

    A PSD is the standard working file for Photoshop.
    A PSE is a project file for Photoshop Elements. These projects are multiple pages. If you are working with a PSE on Windows, there will be a folder along side your PSE that contains a PSD file for each page of the PSE. If you are missing this folder, you won't be able to open the file. The PSE file itself is just instructions on how to open the PSD files as pages of a project. On Mac, all of these files are wrapped up in a single container.

  • Open the pdf file from forms6i

    Hi,
    how to open the pdf file from forms6i.
    can anyone help me regarding this.
    Thanks,
    Ansaf.

    Hi,
    The HOST built-in does not return any error or message back to the Form.
    You will have to use some other means to first find out whether the file exists or not. E.g. you could use TEXT_IO.FOPEN to open the file in Read mode. If the files is not found the handle returned will be null, and that will be condition you have to process to show a message or pop an alert.
    Make sure you close the file with FCLOSE, irrespective of whether the file is found or not, before you open the File for viewing.
    Regards,

  • How to open a .War file

    Hi all
    I have an application running on J2EE server as packed .War file .
    Does anybody know how to open the War file in NWDS ??
    And how to modify some JSP present in that application ???
    Thanks
    KK

    Hi KK
    You will ot be able to open a WAR application deployed in NWDS . Alternatively you can open it using windows ity tools like winzip outside NWDS .
    What you can do is you can create a Web module project and incude all the src including JSP's and change the reqd jsp and redeploy the application again with the changes
    hope this helps,please do not forget to reward suitable points .
    regds
    rajeshkr
    Message was edited by: Rajesh K. R.

  • How to save the CorelDraw file as Tiff.

    I am new to CorelDraw. How to open the CorelDraw file in CorelDraw and save it as Tiff format using Visual Basic. Kindly help me with examples.
    Thanks,
    Prabudass

    Sorry but this is a Photoshop forum nothing to do with CoralDraw.
    You could try here. http://coreldraw.com/forums/

  • I download last update numbers. Now I cannot open the previous files. The screen asked to upload. How to solve this problem?

    The screen  asked to donwload the new numbers program. I already have done it. I cannot open the previous files. How to solve this problem?

    If by the "screen asked to upload" you mean you see a message to upgrade Numbers, then probably what is happening is that you have two versions of Numbers on your Mac, the new version in the main Applications folder and the old one in a subfolder named 'Work '09.  This is as intended.
    Try opening your document with the new version of Numbers that is in the Applications folder, not the Numbers that is in the subfolder.
    SG

  • Is it possible to view .bbb files in a mac? how? I am transferring my bberry contacts onto my macbook pro, but cannot open the .bbb files...

    Is it possible to view .bbb files in a mac? how? I am transferring my bberry contacts onto my macbook pro, but cannot open the .bbb files...

    Well, if simply double-clicking the .bbb file doesn't work, first try dragging the file onto the BBDM icon (either in the Dock, on the desktop or in the Applications folder or wherever it's stored). That tells Finder to open it with that application.
    Otherwise, right-click on the file and choose the Open With option. If BBDM is not the default, select Get Info and use the Open with box from there to select it (if it's not in the list, choose 'other' and navigate to it), then click the 'change all' button.

  • I bought an eBook from iTunes. I can view/read it perfectly on my iPhone but when I try to open the eBook file on my iPad, I get the error message, "Cannot open book. This book is protected by an incompatible technology." Any ideas for me? thx

    i bought an eBook from iTunes. I can view/read it perfectly on my iPhone but when I try to open the eBook file on my iPad, I get the error message, "Cannot open book. This book is protected by an incompatible technology." Any ideas for me? thx

    Welcome to the Apple Community.
    I have seen previous versions mentioned in a pop up message before on iCloud.com, but I'm not really sure at all how it would help, as I couldn't get it to do anything.
    The best advice I have at this time is to back up your work on your iOS device by regularly saving it to iTunes, if anything goes wrong you can then either load it into the numbers app again on the device or recover it via iTunes on your computer.
    My syncs are immediate, I never get chance to see if it works in the background, sorry.

Maybe you are looking for

  • N95 capture tone when in silent mode

    my N95 when in silent mode does not sound the capture tone when i take a picture.. but i've tried other N95 handsets even in silent mode they make a sound when you take a picture.. i have lots of friends who are also using N95 and it seems that i am

  • Wireless Newbie

    Hi Everyone! Please bear with me as i am kinda new to the whole wireless thing. I recently received my first laptop, which is a MacBook Pro, and am loving everything about it. I currently have Adelphia Cable access and was interested in setting up a

  • GATHER_TABLE_STATS on partitioned table

    Hello All, I am using Oracle 11g R2. I am having a partitioned table, this table can have up to 30 partitions based on my retention policy and each partition is 1 day of data. each partition have like 3 millions records. I am gathering the statistics

  • Pay some expenses through FI and some through payroll

    Friends, Couls we configure Travel Management so that we pay some types of expenses through FI and some through payroll. Thanks!

  • Save spaces for iphoto

    I've turn off the copy while importing pictures for my iphoto. but I still found alot of alias which doesn't really contain much spaces. but there's 2 more folders take up more the original & modified folder. Is it save to remove it? never did any ed