Press Quality PDFs created in CS4 show as "damaged" when attempting to open in Acrobat 5

I've been having problems creating PDFs that can be opened in Acrobat 5. While using InDesign CS4, I'm trying to print to the Adobe PDF driver using the Press Quality setting, which as it states "can be opened with Acrobat and Adobe Reader 5.0 and later." However, when someone tries to open the resulting PDFs in Acrobat 5, they get a message saying "There was an error opening this document. The file is damaged and could not be repaired." They open just fine in Acrobat 9.
I have been able to export to a PDF and get it to open successfully in Acrobat 5, but unfortunately this is not an option with one file I'm working on (I need to print color separations as a PDF and then pull it into PitStop Pro to make adjustments). Does anybody have any ideas as to why Acrobat 5 isn't able to read these PDFs?
Running Windows Vista Business with SP1 on a Lenovo with an Intel Core2 Duo processor and 3GB of RAM.
Thanks.

If you print to the Adobe PDF printer you are creating a PS file that is then automatically loaded into Distiller for conversion to PDF. Printing to a different PS file should not make a difference, unless the PS driver is substantially different. You can also print to file with the Aodbe PDF printer and then convert with Distiller (eliminating the automatic Distiller step). If you are printing to a network location, that may be the issue. Acrobat has long had problems with some network connections. To check this out, you might print locally and then move the file to the network drive.
In terms of posting a file, you have to put it on a separate server and then post the link.

Similar Messages

  • STO mail : pdf attachment has an error 'file damage' when try to open it

    Dear expert,
    I need to send an e-mail to the vendor with the sto list as attachment at the email.
    I managed to send email to external addresee and made the pdf attachment, BUT somehow when I open the attachment it has an error says "Adobe Reader could not open xx.pdf because it is either not a supported file type or because the file has been damaged(for axample, it was sent as an email attachment and wasn't corectly decoded)."
    Really need your experties to help me. Here is my abap coding to send email and do the pdf attachment at the new ouptput type to send email.
      TYPES: BEGIN OF lty_drad,
              doknr TYPE drad-doknr,
             END OF lty_drad,
             BEGIN OF lty_recpt,
               smtp_addr  TYPE ad_smtpadr,
             END   OF lty_recpt.
      DATA: lt_doc      TYPE STANDARD TABLE OF docs,
            lt_recpt    TYPE STANDARD TABLE OF lty_recpt,
            lt_tline    LIKE tline OCCURS 0 WITH HEADER LINE,
            lt_data     TYPE solix_tab,
            lt_docu     TYPE STANDARD TABLE OF lty_drad,
            lt_docfiles TYPE STANDARD TABLE OF bapi_doc_files2,
            lw_tline    LIKE LINE OF lt_tline,
            lw_docu     LIKE LINE OF lt_docu,
            lw_docfiles LIKE LINE OF lt_docfiles,
            lw_objdes   TYPE tnati-objdes,
            lt_text     TYPE bcsy_text,
            lw_recpt    TYPE adr6-smtp_addr,
            lw_adrnr    TYPE lfa1-adrnr,
            lw_object   TYPE drad-objky,
            lw_doknr    TYPE drad-doknr,
            lw_return   TYPE  bapiret2,
            lw_xcontent TYPE xstring,
            client    TYPE REF TO if_http_client,
             url       TYPE string,
             lw_subrc  TYPE sysubrc,
             response  TYPE REF TO if_http_response,
             lw_message1 TYPE string,
           sent_to_all TYPE os_boolean,
           bin_filesize type i.
      CONSTANTS: lc_dokar_srm TYPE drad-dokar VALUE 'SRM',
                 lc_type      TYPE so_obj_tp  VALUE 'RAW'.
    CLASS-DEFINITIONS
      DATA: send_request       TYPE REF TO cl_bcs.
      DATA: document           TYPE REF TO cl_document_bcs.
      DATA: sender             TYPE REF TO cl_sapuser_bcs.
      DATA: recipient          TYPE REF TO if_recipient_bcs.
      DATA: exception_info     TYPE REF TO if_os_exception_info,
            bcs_exception      TYPE REF TO cx_bcs.
      RANGES: lr_po_pr   FOR  drad-objky.
      DATA:   lw_banfn   TYPE ekpo-banfn,
              lw_bnfpo   TYPE ekpo-bnfpo.
      IF nast-nacha = '5'. "8
    Create recipient and check if exist
       Get email ID
      start commented by sapnislina 21.12.06
       SELECT SINGLE adrnr FROM lfa1 INTO lw_adrnr
                    WHERE lifnr = p_ekko-lifnr.
       IF sy-subrc NE 0.
         PERFORM protocol_update
           USING '303' 'Address of Vendor:' ekko-lifnr 'not found' space
         p_retco = sy-subrc.
         EXIT.
       ENDIF.
      end commented by sapnislina 21.12.06
       SELECT smtp_addr INTO CORRESPONDING FIELDS OF TABLE lt_recpt
            FROM adr6
           WHERE addrnumber = p_ekko-adrnr. "lw_adrnr.
        IF lt_recpt[] IS INITIAL.
          PERFORM protocol_update
            USING '303' 'Email address(es) does not exist for vendor'
            p_ekko-lifnr space space.
          p_retco = sy-subrc.
          EXIT.
        ENDIF.
        CALL FUNCTION 'CONVERT_OTF_2_PDF'
          EXPORTING
            use_otf_mc_cmd         = 'X'
          IMPORTING
            bin_filesize           = bin_filesize
          TABLES
            otf                    = otfdata[]
            doctab_archive         = lt_doc
            lines                  = lt_tline
          EXCEPTIONS
            err_conv_not_possible  = 1
            err_otf_mc_noendmarker = 2
            OTHERS                 = 3.
        IF sy-subrc <> 0.
        PERFORM protocol_update
            USING '303' 'PO Convertion from OTF to PDF failed'
                  space space space.
          p_retco = sy-subrc.
          EXIT.
        ENDIF.
    Get object description from mail title of output types
       SELECT SINGLE objdes INTO lw_objdes
              FROM tnati
              WHERE spras = sy-langu
              AND   kappl = nast-kappl
              AND   kschl = nast-kschl.
       CONCATENATE lw_objdes ekko-ebeln INTO lw_objdes SEPARATED BY
    space
        DATA L_TXT(255) TYPE C.
        DATA L_TXT2(255) TYPE C.
        CONCATENATE 'STO' EKPO-EBELN 'Created for' EKPO-WERKS '/'
    EKPO-LGORT
        'Supply Plant' EKKO-RESWK into l_txt separated by space.
        lw_objdes = l_txt.
        CONCATENATE 'STO' EKKO-EBELN INTO L_TXT2 SEPARATED BY SPACE.
        APPEND L_TXT2 TO LT_TEXT.
       APPEND lw_objdes TO lt_text.
    Instantiate
        CLASS cl_cam_address_bcs DEFINITION LOAD.
        CLASS cl_abap_char_utilities DEFINITION LOAD.
    insert by sapnislina 22.12.06
      DATA : CONTENT_OUT TYPE SOLIX,
             LINE_WIDTH_SRC TYPE I,
             POS_OUT TYPE I,
             POS_IN TYPE I,
             LEN_OUT TYPE I.
      DATA OBJBIN LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE.
      DATA : BEGIN OF CONTENT_IN,
                LINE TYPE TLINE,
                DUMMY TYPE TLINE,
             END OF CONTENT_IN.
      TYPES PDF_RAW TYPE X LENGTH 268.
      FIELD-SYMBOLS <PDF_BIN> TYPE PDF_RAW.
      DESCRIBE FIELD CONTENT_IN-LINE LENGTH LINE_WIDTH_SRC IN BYTE MODE.
      REFRESH lt_data.
      CLEAR CONTENT_OUT.
      POS_OUT = 0.
      LOOP AT OTFDATA INTO CONTENT_IN-LINE.
        ASSIGN CONTENT_IN TO <PDF_BIN> CASTING.
        MOVE <PDF_BIN> TO CONTENT_OUT-LINE+POS_OUT.
        ADD LINE_WIDTH_SRC TO POS_OUT.
        WHILE POS_OUT >= 255.
          APPEND CONTENT_OUT TO lt_data.
          CLEAR CONTENT_OUT.
          SUBTRACT 255 FROM POS_OUT.
          IF POS_OUT > 0.
            POS_IN = LINE_WIDTH_SRC - POS_OUT.
            MOVE <PDF_BIN>+POS_IN TO CONTENT_OUT-LINE.
          ENDIF.
        ENDWHILE.
      ENDLOOP.
      IF POS_OUT > 0.
      APPEND CONTENT_OUT TO lt_data.
      ENDIF.
    end inserted by sapnislina 22.12.06
    starting to create attachment to mail
        TRY.
           CLEAR send_request .
    Create persistent send request
            send_request = cl_bcs=>create_persistent( ).
    Build the document
            document = cl_document_bcs=>create_document(
                                i_type    = lc_type  "RAW
                                i_text    = lt_text  "def of output type
                                i_length  = '12'
                                i_subject = lw_objdes ).
    Attached the document object
            CALL METHOD document->add_attachment
              EXPORTING
                i_attachment_type    = 'PDF'
                i_attachment_subject = lw_objdes "definition of output
    type
                i_attachment_size    = '12'
                i_att_content_hex    = lt_data.
    completed first part to attached PO (pdf format) as attachment
    Now attach the PO related attachments to the mail..
    .... need to read from table DRAD and get all the attachment per PO
         at run time
         REFRESH: lr_po_pr."lt_return.
            CLEAR:   lr_po_pr,lw_return.
            MOVE  'ICP'  TO  lr_po_pr.
         CLEAR: lw_object.
    completed second part for PO related attachments
    Now prepare to send mail
    Add document to send request
         CALL METHOD send_request->set_document( document ).
    Get sender object
         sender = cl_sapuser_bcs=>create( sy-uname ).
    Add sender
         CALL METHOD send_request->set_sender
           EXPORTING
             i_sender = sender.
         LOOP AT lt_recpt INTO lw_recpt
                          WHERE NOT smtp_addr IS INITIAL.
          recipient = cl_cam_address_bcs=>create_internet_address(
    lw_recpt ).
    Add recipient with its respective attributes to send request
            CALL METHOD send_request->add_recipient
              EXPORTING
                i_recipient = recipient
                i_express   = 'X'.
            CLEAR recipient.
         ENDLOOP.
    Send the document
        CALL METHOD send_request->send
          RECEIVING
            result              = sent_to_all.
    Catch any exception
          CATCH cx_bcs INTO bcs_exception.
              CALL FUNCTION 'NAST_PROTOCOL_UPDATE'
                EXPORTING
                  msg_arbgb = bcs_exception->msgid
                  msg_nr    = bcs_exception->msgno
                  msg_ty    = bcs_exception->msgty
                  msg_v1    = bcs_exception->msgv1
                  msg_v2    = bcs_exception->msgv2
                  msg_v3    = bcs_exception->msgv3
                  msg_v4    = bcs_exception->msgv4
                EXCEPTIONS
                  OTHERS    = 1.
              p_retco = sy-subrc.
        ENDTRY.
      ENDIF.
      IF NOT result-tdfaxid  IS INITIAL OR                      " 422131
         NOT result-tdmailid IS INITIAL.                        " 422131
        CLEAR syst-msgv1.                                       " 422131
        IF NOT result-tdfaxid IS INITIAL.                       " 422131
          syst-msgv1 = result-tdfaxid.                          " 422131
        ELSEIF result-tdmailid IS INITIAL.                      " 422131
          syst-msgv1 = result-tdmailid.                         " 422131
        ENDIF.                                                  " 422131
        CALL FUNCTION 'NAST_PROTOCOL_UPDATE'                    " 422131
             EXPORTING                                          " 422131
                  msg_arbgb = 'VN'                              " 422131
                  msg_nr    = '095'                             " 422131
                  msg_ty    = 'I'                               " 422131
                  msg_v1    = syst-msgv1                        " 422131
             EXCEPTIONS                                         " 422131
                  OTHERS    = 1.                                " 422131
      ENDIF.                                                    " 422131
      IF result-userexit EQ 'C' OR
          result-userexit EQ 'E'.
        p_retco = '9'.
      ENDIF.
    ENDFORM.                               " ENDE
    end inserted
    Regards
    Nislina

    Hi Nislina,
    Could you please let me know how do you solve this issue.
    Code:
    if lt_binary[] is not initial.
    *     add attachment to document
             call method document->add_attachment
               exporting
                 i_attachment_type      = 'PDF'            
                 i_attachment_subject = 'My Attachment'
                 i_att_content_hex      = lt_binary.
      endif.
    Thanks & Regard's
    Sateesh

  • BLEED:  How can I tell it's embedded in my Press Quality PDF?

    When saving a Press Quality PDF from an Indesign document, I then open the PDF document but can't figure out how to tell if my bleed is there.  The document view is only the actual trim size.  I've looked at all the menu options but can't figure it out.  I don't want to send it to the printer without verifying it's there.  Thanks,
    Jim.

    Thank you!  My printer requested that I include 1/8" bleed for my book.  Now he'll get it.  Printing is a world of it's own.  Seems kind of complicated to me at times.
    Thanks again.  You were a great help.
    Jim.

  • Why are the colors (red mostly) in my Press Quality PDF file darker than Original AI file?

    Hi,
    I am new to CS5 and have been doing a lot of researching and testing saving AI CS5 files in "Press Quality" PDF format.  When I preview the PDF files in MAC's Preview application (will get Acrobat Reader as well) everything looks nice and crisp, but the colors are a bit on the dark side compared to my original AI files, namely the burgundy.  Needless to say, I am only using CMYK and the resolution has been set to High. 
    Any suggestions would be greatly appreciated.
    Thanks!

    Hi again John,
    Now I am sitting in front of the right computer and I just checked the CMYK profile in AI and it says: North America Prepress 2.  I found the following tutorial on the internet and this guy says that it is best to use a CMYK profile called BEST WORKFLOW which is supposed to accurately display colors across all platforms.  In the tutorial, he also added that if you do not see this profile listed then you should Load (directly from the CMYK profile window) it from your computer.  However, I was unable to locate this profile on my MAC and since this tutorial is based on AI CS2, I am unsure if I can use it.
    http://www.bing.com/videos/watch/video/adobe-illustrator-cs2-how-to-use-color-settings/85f 81f66adab4d48746e85f81f66adab4d48746e-562401182564?q=adobe+illustrator+cmyk+color+profiles &FROM=LKVR5&GT1=LKVR5&FORM=LKVR
    Which CMYK profile would you recommend that I use?
    Many thanks,
    Diane

  • I can not write in Hebrew And create effects It shows all distorted  When This problem solved?

    I can not write in Hebrew
    And create effects
    It shows all distorted
    When This problem solved?

    roeisarusi wrote:
    When This problem solved?
    Nobody knows.  iWorks apps have always had bugs that make them unsuitable for Hebrew/Arabic for most people.  Tell Apple here:
    http://www.apple.com/feedback/keynote.html

  • When attempting to open a hyperlink to a PDF file on the web from a Microsoft WORD for Mac 2011 (14.3.9) document, Safari 7.0 instead displays the file as text?

    When attempting to open a hyperlink to a PDF file on the web from a Microsoft WORD for Mac 2011 (14.3.9) document, Safari 7.0 instead displays the file as text?

    As seen in http://answers.microsoft.com/en-us/mac/forum/macoffice2011-macword/has-the-word- 2011-for-mac-invisible-toolbars/018a3ab6-0570-4ad5-abf8-5b6427fdde3e?msgId=e111b f0a-0e32-4fa3-9536-f349dad8439d
    and it worked for me:
    1. Quit Word
    2. In the Finder's menu bar, select Go > Go to folder and type or paste: ~/Library/Preferences/
    3. Click on Go
    4. Locate the preference file com.microsoft.Word.plist, then Option-drag it to the desktop to create a backup copy
    5. Go to Applications/Utilities and open Terminal
    6. Paste the following bold command at the $ prompt (it's a single line):
         defaults write com.microsoft.Word 14\\Toolbars\\Show_HIToolbar -boolean TRUE
    7. Press Return and then quit with Command Q
    8. Start Word and test. If the fix works, trash the backup file in the Desktop file. Otherwise, restore it.
    In the original source the author also mentions the change in Word 2008

  • Acrobat 9.4.4 Pro Crashes When Attempting to Open PDF Form

    OS: Win XP Pro SP3
    The  machine worked fine until Acrobat updated itself to 9.4.4 then the  problem started.  Crashes when attempting to open most PDF Forms - even  when freshly rebooted or repaired.  I originally thought it was related  to a browser or Outlook 2007, but later found that it does it under all  circumstances.  It is my General Manager's machine having the problem,  so I need to get this resolved ASAP.  Your experience and assistance is  much appreciated.
    My temporary fix was to uninstall 9.4.4 - Install 9.0  and turn off automatic updates - worked beautifully.  It would be nice to get to the bottom of this so we can update our CS4 products.
    Another user reported this problem on May 16, 2011 and no one has replied to his post.
    Thanks in advance.

    Please repost in the Acrobat Windows forum.
    http://forums.adobe.com/community/acrobat/acrobat_windows

  • Receiving User License Agreement Message When Attempting To Open PDF - 10.1.0

    Recently upgraded to Reader 10.1.0. When attempting to open a specific PDF document I receive the following dialog.
    This only occurs with one specific PDF, as I have opened other PDF's with the IE browser plugin, as well as PDF's saved to my local machine using Adobe Reader.  I can open the PDF if the document is saved first, and then opened through Reader by performing a File -> Open.
    Any ideas on how to correct the issue?  The application was deployed using enterprise deployment tools along with the Reader customization kit.  I did check the checkbox for Accept User License Agreement in the Customization wizard.

    I also was pushing the
    HKEY_LOCAL_MACHINE\SOFTWARE\Adobe\Acrobat Reader\10.0\Privileged
    THat didn't seem to have any effect.
    I think the other key you had might be the one causing your password protected issue. It is the only difference between mine and your setups from these posts.
    So it comes down
    1: useing the adobe website to upgrade to 10.1.0 breaks the reader integration in different ways.
    2: installing full version from ftp site fixes the issue except for password protected pdf if you have the
    HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Adobe\Acrobat Reader\10.0\FeatureLockDown set to 0
    changing back to 1 repairs this issue.
    Hmmmm maybe 10.2

  • Embedding fonts and images for printing (press quality PDF)

    I have a question about a document I have produced in InDesign that needs to go to the printers. They have told me to make sure it is a print ready document with all of the fonts and images embedded. When I convert an indd document for printing 'locally', I normally just use the Adobe PDF presets and select press quality. I thought ID works its magic and does everything required to make it print ready. Is there anything else I need to do regarding fonts and images to make the PDF ready for print?
    Thanks
    Mark

    Thank you.
    As to bleeds, the printers came back and said my pdf is okay but that yes, I need to set an extra bleed edge of minimum 3mm. Do I set this when converting to the print quality pdf or do I set this whilst working in the actual INDD document itself?
    Is the bleed then on every page regardless of the content?
    What are the steps for setting bleed and crop marks. Does that mean when I place an image for example on a page the image needs to hang slightly off the edges by 3mm or am I barking up the wrong tree?

  • Populated PDF form in Preview shows as blank when viewing

    I have a pdf template form that I have filled in.
    I did this in Preview and used 'save as' to create my copy.
    However, the thumbnail preview of the pdf shows as blank, and if i send it windows users or preview it in gmail, it also shows as blank.
    To start with I thought that I had accidentally saved the wrong version, but no, I can double click the pdf in Finder, and it opens in Preview with all the data present, exactly as I had saved it.

    What I have noticed is that if I send the pdf to another mac user, they can see all the info fine. If I send the output from Preview in gmail, and someone downloads it, they can only view the information if they click on the "highlight fields" button, but then it still doesn't look quite right, with loads of expander "+"s all over the form.
    When I tried opening the form in adobe reader from the link you provided, I get a different view again. I can examine each field and view the individual data items, but it is not possible to 'show all fields'

  • I am trying to create a slide show but QT Pro won't open now

    I am trying to create a slide show (Time Lapse Movie) from thousands of photographs and was told to buy QT Pro. After downloading QT 7 and QT Pro yesterday, the program would not operate correctly, although I was able to work with it somewhat. Today it started out Ok but then back to same as yesterday (will not open). Any advice would be greatly appreciated.
    Bob

    Export the slideshow out of iPhoto as a QT movie file via the Export button in the lower toolbar.  Select Size = Medium or Large.
    Open iDVD, select a theme and drag the exported QT movie file into the open iDVD window being careful to avoid any drop zones.
    Follow this workflow to help assure the best quality video DVD:
    Once you have the project as you want it save it as a disk image via the File ➙ Save as Disk Image  menu option. This will separate the encoding process from the burn process. 
    To check the encoding mount the disk image, launch DVD Player and play it.  If it plays OK with DVD Player the encoding is good.
    Then burn to disk with Disk Utility or Toast at the slowest speed available (2x-4x) to assure the best burn quality.  Always use top quality media:  Verbatim, Maxell or Taiyo Yuden DVD-R are the most recommended in these forums.
    If iDVD was not preinstalled on your Mac you'll have to obtain it by purchasing a copy of the iLife 09 disk from a 3rd party retailer like Amazon.com: ilife 09: Software or eBay.com.  Why, because iDVD (and iWeb) was discontinued by Apple over a year ago. 
    Why iLife 09 instead of 11?
    If you have to purchase an iLife disc in order to obtain the iDVD application remember that the iLife 11 disc only provides  themes from iDVD 5-7.  The Software Update no longer installs the earlier themes when starting from the iLIfe 11 disk nor do any of the iDVD 7 updaters available from the Apple Downloads website contain them. 
    Currently the only sure fire way to get all themes is to start with the iLife 09 disc:
    This shows the iDVD contents in the iLife 09 disc via Pacifist:
    You then can upgrade from iDVD 7.0.3 to iDVD 7.1.2 via the updaters at the Apple Downloads webpage.
    NOTE:  If you're running iPhoto 9.5 the export options will be different.
    OT

  • Adobe Reader cannot open pdf created by Firefox; "file is damaged"

    Firefox 4.0.1 on Mac Pro Intel using OS 10.5.8 will allow you to save a web page as pdf, using "Print" then "Save as PDF". If you do this you will save a file. If you attempt to open that file with Adobe Reader you get an error message that the file is damaged. Safari does not have this problem. Microsoft Explorer does not have this problem. It is unlikely that this is an OS problem. Adobe Reader is listed as the app to open pdf files. Is there a fix?

    1. I assume you have some PDF documents you have been keeping a long time. Look at their modification date. Is it what you'd expect (years ago) or is it all the same, recent?
    2. Has a TXT file appeared in the same folder as the PDFs?

  • I need to create a folio field that increments itself everytime you open the acrobat form

    Hi, I have a very simple form with a some fields the user should capture.
    The first field is folio number, that should be filled automatically when the user opens the form, with the last used folio number plus 1.  The next number available.
    I have been reading a lot of documentation but don´t know how should I do this calculation so that if someone opens the form now he gets number 1, the next person gets number 2, and so on.
    There is so much information javascript, formcalc, xml, etc.
    Can someone tell me which should be the easiest and more efficient way do to this?
    Thanks a lot!

    Have never done that before, but here are my initial thoughts on the topic:
    Suggestions: (reader extension/acrobat required)
    1) Call an external data source
    2) If the PDF is in the same place/pc all the time and will only be used from there, make it call a local flat file
    3) Maybe use the Date/Time/User as your unique number (if it doesn't need to increment by 1, but just something unique and identifiable)
    4) If the PDF is in the same place/pc all the time and will only be used from there.... use Global Folder level script - create a global variable

  • Why PDF hang when attempting to open or saved from bank site?

    HI,
    I have a user who tried to export word file from a bank into PDF, she encountered page hang as her screen try to open/saved excel. It only happens to this particular pc.
    When she attempt to save from ERP, it hangs.
    Also to note is that this hanging of PDF is not always, it only hangs when it is my user's first time trying to save/open any document document.
    I have tried to uninstall the pdf software, and reinstalled.
    I have confirmed that the windows and PDF version is the latest as of this posting,
    Please advise. Thank you.
    Regards Joshua Tay

    Hi vanncraw
    What Product are you using ?
    What is the Exact Error Message ?
    is it happening with all PDF Files ?

  • I am receiving an error message when attempting to open a pdf.

    It says I dont have permission and to contact owner or administrator. I am the administrator on this computer and all the file permissions are enabled and I even tried running adobe reader as admin. the file is encrypted but Im never asked for a password or anything.

    Hi Rickhoneyford,
    Does this issue occur with any pdfs you attempt to open or is this issue specific to this pdf?
    Regards,
    Rave

Maybe you are looking for

  • Too many results for query

    Hello, I'm using Oracle to teach my students database programming with VB.NET (ADO.NET). During my course, I introduce the DataAdapter Configuration wizard of Visual Studio for creating a connection and dataadapter. I'm using OleDb (from Microsoft) t

  • Compression to FLV for Banner Ad

    Looking for some compression feedback, as I cannot get the results dialed in thru Adobe Media Encoder CS4. Creating a flash banner ad, 11 seconds total, with 5 seconds of video from final cut. The size of the exported .mov is 784 KB, and I still have

  • Taking a lot longer to hook up iDisk with this latest update

    Every time I restart, it takes an awful long time for iDisk to show on my desktop, and while I wait for it to come up, if I do anything with the Finder, such as open the hard disk or try to access any of the menus, I get the spinning beach ball of de

  • Query regarding the People Tools installation for HRMS & Financials install

    Hi all, Greetings, After a lot of struggle, I was able to install Peoplesoft HRMS 9.1 on People Tools 8.50 ( had faced a lot of version conflict issues for almost 2 months after I was able to get up this). Now, the challenge is that the client wants

  • Detect iOs and Android in Adobe Muse

    Hi all, I have a website for downloading iPad and Android tablet Enterprise app. Now i have 2 buttons in it to download Android and Ios app and i need to change it to single button. Is there any way to do it using Adobe Muse.