Create a pdf in flex

Hi, i wanna create a pdf or a doc in flex builder for a website, i was watching a tutorial on XPAAJ but they dont have it anymore.
i also tried fpdf where u create a pdf using php, but for some reason when i pass the data it doesnt create it.
Any ideas?
Thanks.

pls check out this link
http://sunilrana.wordpress.com/2010/01/01/to-create-pdf-in-flex
also download alivepdf from
code.google.com/p/alivepdf/downloads/list
Thanks
Happy New Year

Similar Messages

  • Create Custom PDF using Flex

    I posted this in an Acrobat forum, but I was wondering if
    Flex would work for this. Anyone have any thoughts? Thanks!!
    Hopefully someone can help me! I am a designer, not a
    programmer so I may be in over my head. My client has an archive of
    individual technical data sheet saved as PDFs. They would like a
    user to be able to go to a web page, select which products they use
    and have that automatically combined into one PDF file. Any ideas
    on where to start? Thanks!

    Hi there there's a library named AlivePDF that allows you to
    create PDFs on the fly. But if you're not a developer, and don't
    want to learn about Flex and AS3, then you'll probably couldn't be
    able to accomplish this.

  • Generating PDF from Flex BarChart

    Hello,
    I am new to Flex. Have been playing with creating Advanced
    Data Grid and Bar Charts for our application prototype and would
    like to explore how to create a PDF file of the BarChart or other
    charting components.
    The requirement is simple. We show the BarChart and a button
    to view it as a PDF. When the user presses the button, the PDF
    viewing dialog should come up and the user can opt to save the PDF
    or view it (the standard way a browser deals with the PDF).
    Have read blogs, this forum and LiveCycle docs but don't
    understand clearly how Flex communicates with
    LiveCycle ES (or PDF Generator) to display the PDF. Any ideas
    or tutorials that does this would be appreciated.
    Thanks,
    Kannan

    In order to generate a PDF document, you have to call a
    method on a Java remote object that uses the XFAHelper and pass it
    some arguments.
    I modified the PDFService example in the documentation so I
    can:
    1- specify any document as opposed to hardcoding the PDF
    template name
    2- write the PDF to a file as opposed to writing it in the
    user's session
    Here is the source:
    package com.mycompany.flex.remoteObjects;
    import java.io.File;
    import java.io.IOException;
    import org.w3c.dom.Document;
    import flex.acrobat.pdf.XFAHelper;
    import flex.messaging.FlexContext;
    import flex.messaging.util.UUIDUtils;
    public class PDFService
    public PDFService()
    public Object generatePDF(Document dataset, String
    PDFdocument) throws IOException
    // Open shell PDF
    String source =
    FlexContext.getServletContext().getRealPath("/pdfgen/" +
    PDFdocument);
    int index = source.indexOf("./");
    if(index != -1 )
    // Remove the ./ added by UNIX
    source = source.substring(0, index) + source.substring(index
    + 2, source.length());
    XFAHelper helper = new XFAHelper();
    helper.open(source);
    // Import XFA dataset
    helper.importDataset(dataset);
    // Create a unique ID
    String uuid = UUIDUtils.createUUID(false);
    source =
    FlexContext.getServletContext().getRealPath("/dynamic-pdf/" + uuid
    + "_" + PDFdocument);
    index = source.indexOf("./");
    if(index != -1 )
    // Remove the ./ added by UNIX
    source = source.substring(0, index) + source.substring(index
    + 2, source.length());
    // Create the file object
    File file = new File(source);
    // Save the file
    helper.save(file);
    // Close any resources
    helper.close();
    return (uuid + "_" + PDFdocument);
    pdfgen is the folder where my PDF template resides.
    dynamic-pdf is the folder where the generated PDF are saved.
    These two folders are located under flex.war at the first
    level.
    In Flex, I wrote a Cairngorm command that calls this remote
    object and displays the generated PDF:
    package com.mycompany.core.commands
    import com.adobe.cairngorm.commands.ICommand;
    import com.adobe.cairngorm.control.CairngormEvent;
    import com.adobe.cairngorm.business.Responder;
    import
    com.mycompany.core.business.GenerateAndOpenPDFDelegate;
    import
    com.mycompany.core.control.event.GenerateAndOpenPDFEvent;
    import com.mycompany.core.model.ModelLocator;
    import flash.net.navigateToURL;
    import flash.net.URLRequest;
    import mx.rpc.events.ResultEvent;
    import mx.rpc.events.FaultEvent;
    import mx.collections.*;
    import mx.core.Application;
    import mx.controls.Alert;
    public class GenerateAndOpenPDFCommand implements ICommand,
    Responder
    [Bindable]
    private var model:ModelLocator = ModelLocator.getInstance();
    public function GenerateAndOpenPDFCommand():void
    public function execute(event:CairngormEvent):void
    trace("Executing GenerateAndOpenPDFCommand...");
    var delegate : GenerateAndOpenPDFDelegate = new
    GenerateAndOpenPDFDelegate( this );
    var generateAndOpenPDFEvent : GenerateAndOpenPDFEvent =
    event as GenerateAndOpenPDFEvent;
    delegate.generateAndOpenPDF( generateAndOpenPDFEvent.pdfVO
    public function onResult( event : * = null ) : void
    var item:Object;
    var result:String = (event as ResultEvent).result as String;
    trace("GenerateAndOpenPDFCommand::onResult\n\n" + result);
    if (result)
    // Open the generated PDF in a new window
    navigateToURL(new URLRequest(ModelLocator.FLEX_URL +
    "dynamic-pdf/" + result), "_blank");
    // Hide the progress bar overlay
    Application.application.requestProgressBar.visible = false;
    Application.application.requestProgressBar.progressBar.source =
    null;
    Application.application.requestProgressBar.progressBar.label
    = this.model.languageDictionary["000012"];
    public function onFault( event : * = null ) : void
    // Hide the progress bar overlay
    Application.application.requestProgressBar.visible = false;
    Application.application.requestProgressBar.progressBar.source =
    null;
    // Debug
    Alert.show("GenerateAndOpenPDFCommand:\n\n" + (event as
    FaultEvent).message);
    FLEX_URL is created in this way some place else in the
    application:
    // Get the server URL from the Application's
    var server:String = Application.application.url;
    var index:uint = server.indexOf("Shell"); // Shell is the
    name of my app folder
    server = server.substring(0, index);
    // This is the flex.war/ URL
    ModelLocator.FLEX_URL = server;
    Of course, it would be better to save the PDF in the user's
    session as Adobe suggests, but I couldn't figure out how they use
    the PDFResourceServlet. First of all, I had to get its code.
    I had to decompile the java class files in the samples to get
    the source of the PDFResourceServlet as it is not in the
    documentation. Here it is:
    package com.mycompany.flex.remoteObjects;
    import java.io.IOException;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import javax.servlet.http.HttpSession;
    public class PDFResourceServlet extends HttpServlet
    public PDFResourceServlet()
    protected void doGet(HttpServletRequest req,
    HttpServletResponse res)
    throws ServletException, IOException
    doPost(req, res);
    protected void doPost(HttpServletRequest req,
    HttpServletResponse res)
    throws ServletException, IOException
    String id = req.getParameter("id");
    if(id != null)
    HttpSession session = req.getSession(true);
    try
    byte bytes[] = (byte[])(byte[])session.getAttribute(id);
    if(bytes != null)
    res.setContentType("application/pdf");
    res.setContentLength(bytes.length);
    res.getOutputStream().write(bytes);
    } else
    res.setStatus(404);
    catch(Throwable t)
    System.err.println(t.getMessage());
    private static final long serialVersionUID =
    0x7180e4383e53d335L;

  • Create a pdf from Flash

    I am developing a Flash/Flex based web tool that needs to output a
    pdf(which will contain dynamically created graphs) that will then be
    stitched to other pdfs and delivered as a single pdf.
    Does anyone have any suggestions about where I should start to create this?

    you can use fPDF server-side code to create a pdf.  that's the most satisfactory method.  there's also an unsupported component avaible that has limited ability to create a pdf.

  • Conversion of PDF from flex

    Hai
       I need to create pdf generation from flex.
       I tried with LCDS and there is no way to create XDP template.
       live cycle designer needs dotnet support.. but i need to do with j2ee..
       is any other approach to create pdf from flex with j2ee environment???
       thanks in advance...

    Hi there, there's a library called AlivePDF that allows you to create pdf files from Flex. Maybe that's what you're looking for.

  • Is there a way to create a PDF form that ANYONE can fill out and SAVE with their content?

    Is there a way to create a PDF form that ANYONE can fill out and SAVE with their content? By anyone, I mean someone who can download and use the free Adobe Reader, on either a Mac or PC. I have Acrobat Pro, and would like to be able to create forms that can not only be filled out and printed, but saved and emailed, which is not an option with the forms I have created to date. They can be filled out, but not saved, with Adobe Reader.
    TIA,
    Nancy

    To do what Dave indicated you need to do, it depends on what version of Acrobat you have:
    Acrobat 8: Advanced > Enable Usage Rights in Adobe Reader
    Acrobat 9: Advanced > Extend Features in Adobe Reader
    Acrobat 10: File > Save As > Reader Extended PDF > Enable Additional Features
    Acrobat 11: File > Save as Other > Reader Extended PDF > Enable More Tools (includes form fill-in & save)
    I wonder what it will be next time?

  • I am working in Adobe Acrobat 9 Pro and just created a pdf form from a MS Word document. I need to find out how to have a date field in my form which will update automatically. Can some one out there help me?

    I am working in Adobe Acrobat 9 Pro and just created a pdf form from a MS Word document. I need to find out how to have a date field in my form which will update automatically.

    Update automatically under which circumstances, exactly?

  • Can't create a PDF using "print" from Office 2010 w/ Acrobat 9.5.1 installed

    I've been working on a lengthy Word document for the past three days, upgrading most of the inserted images and straightening out the formatting. Converting the entire 180-odd page document every time I made a few updates is a bit time-consuming. I also noticed that when I converted the entire document as a whole, the quality of some (not all) of the images in the document was significantly degraded. So I'd been using the Adobe Acrobat printer selection in Word to create single page pdf files, and then used the documents tab in Acrobat to insert the new page and delete the undesirable page.
    This was working fine for two days. Then I was attempting to print a page, and didn't notice the "Creating a PDF Document" window, nor did I see the requested filename in the target folder. I attempted to print the page a second time, but nothing happened. After closing several open pages, I found the "Creating a PDF Document" pop-up. But the progress bar was stuck at about 20% and never moved. Eventually I closed the pop-up and attempted to print again. The pop-up reappeared but stuck at 20%. Rebooted and got the same. I rebooted again and went into Program and Features and ran repair on both Office 2010 and Acrobat. No change.
    I'm operating Win 7 (64 bit) w/ SP1 on an AMD E-350 1.60Ghz processor w/ 8GB of ram. I'm using Office Professional Plus 2010 build 14.0.6112.5000 (32 bit). I've included the System Report below. The only trick I have left is to uninstall and reinstall, but hoping for a more specific solution. Any help would be appreciated.
    Available Physical Memory: 4194303 KB
    Available Virtual Memory: 1511340 KB
    BIOS Version: ALASKA - 1072009
    Default Browser: C:\Program Files (x86)\Internet Explorer\iexplore.exe
    Version: 9.00.8112.16421 (WIN7_IE9_RTM.110308-0330)
    Creation Date: 2011/06/04
    Creation Time: 17:17:11
    Default Mail: Microsoft Outlook
    mapi32.dll
    Version: 1.0.2536.0 (win7_rtm.090713-1255)
    Graphics Card: AMD Radeon HD 6300 series Graphics
    Version: 8.17.10.1077
    Check: Not Supported
    Installed Acrobat: C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\Acrobat.exe
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:37
    Installed Acrobat: C:\Program Files (x86)\Adobe\Reader 10.0\Reader\AcroRd32.exe
    Version: 10.1.3.23
    Creation Date: 2012/04/04
    Creation Time: 01:53:54
    Locale: English (United States)
    Monitor:
    Name: AMD Radeon HD 6300 series Graphics
    Resolution: 1920 x 1080 x 60
    Bits per pixel: 32
    OS Manufacturer: Microsoft Corporation
    OS Name: Microsoft Windows Vista
    OS Version: 6.1.7601 Service Pack 1
    Page File Space: 4194303 KB
    Processor: AMD64 Family 20 Model 1 Stepping 0 AuthenticAMD ~1600 Mhz
    System Name: GARYSTOASTER-PC
    Temporary Directory: C:\Users\GARYST~1\AppData\Local\Temp\
    Time Zone: Eastern Standard Time
    Total Physical Memory: 4194303 KB
    Total Virtual Memory: 2097024 KB
    User Name: Garys Toaster
    Windows Directory: C:\Windows
    Installed plug-ins:
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\Accessibility.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:48
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\AcroForm.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:47
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\Annots.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:52
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\DigSig.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:47
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\EScript.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:51
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\IA32.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:51
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\ImageConversion.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:46
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\MakeAccessible.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:50
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\map2pdf\geo.api
    Version: 5.7.0.01
    Creation Date: 2011/06/08
    Creation Time: 12:35:30
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\map2pdf\geomark.api
    Version: 5.7.0.01
    Creation Date: 2011/06/08
    Creation Time: 12:35:30
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\map2pdf\jeo.api
    Version: 6.0.0.18
    Creation Date: 2011/06/08
    Creation Time: 12:35:30
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\PDDom.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:50
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\PPKLite.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:50
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\Preflight.api
    Version: 9.2.0 (065)
    Creation Date: 2012/04/19
    Creation Time: 22:26:45
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\reflow.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:49
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\SaveAsRTF.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:49
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\Search.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:57
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\TouchUp.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:49
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\Updater.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:48
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\weblink.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:48
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\WebPDF.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:45

    As far as the images are concerned, that may be a result of your choice of job settings. You may want to use the Press or Print option if the image quality is important. I assume you are talking about bit images in this case.
    As to the hangup, have you checked to see if AcroTray is active on your system? It may not be running as needed. In the meantime, try checking print to file and then opening that file in Distiller to complete the conversion to PDF.
    Before you ever try a reinstall, you need to do a repair first to see if that resolves the problem. There are a lot of unknowns about your exact process for the printing and your job settings that may be part of the problem. The rest of your system setup is useful in some cases, but did not help me see your problem.

  • I have created a PDF form with field but for some reason I cant type in them

    I have created a PDF form with field but for some reason I cant type in them

    May be that the text fields are read-only.

  • I have created a PDF form with multiple drop downs, all with the same drop down values. When I select a value from 1 of the drop down fields, it replicates in all of the others - which I do not want. How can I fix this?

    I have created a PDF form with multiple drop downs, all with the same drop down values. When I select a value from 1 of the drop down fields, it replicates in all of the others - which I do not want. Can I fix this?

    I'm fairly new to this, but I think it has to do with the way you have the drop downs named. Did you copy one then keep pasting it in each field? If so, that is the problem. You should rename each one with a different number: Dropdown1, Dropdown2, etc. I think that might solve the issue.

  • Creating a PDF from Word, endnote links jump to wrong page

    I have a Word file with a large number of endnotes.  In Acrobat 9.5.5 the endnote links jumped to the correct page.  In Acrobat XI, which I just upgraded to, all endnotes jump to the wrong page.  Somehow when converting the Word to PDF the calculation of what page to jump to is calculated incorrectly.  Is this a known problem?  I see other discussions on problems with endnotes but they are for different problems.  How can I resolve this.  I don't want to have to revert to Acrobat 9, but it worked.

    Well I tried that.  I set the printer driver to Adobe PDF.  I then selected all text and hit F9 to refresh all links and saved the file and then went to the Acrobat tab to create the PDF version.  Using the application and importing the file to create a PDF causes the same result.  I can now see a pattern of what is happening.  This has a large number of endnotes, 525.  There are probably 30+ endnotes links per page.  I noticed that all the endnotes links for the first page that has the links all point to the second page of endnotes in the endnote section (strange that it starts with the second page and not the first), then all the endnote links of the next page point to the third page of endnotes and it continues that way until the end. 
    Another way to describe this is that the first page of endnote links should point to endnote pages 1 through 4 but they all point to page 2.
    I checked and all the links in the Work doc are linking correctly.
    I wonder if version XI has been rewritten since version 9 and my case is too extreme for this version and it chokes.  I'm trying to rebuild part of the file from scratch and see if the problem goes away since there is a lot of history to this file and it started at least at Word 2007.  I'm using Word 2013 now and have converted the format to the 2013 level.
    I've sent in a bug report but have not heard anything and talked to customer service over chat but they don't seem to care enough to pass this to development even though it's easily reproducible.
    Thanks for your help.

  • I have created a PDF and password protected it for view. However, when reading the PDF in Adobe Reader app on the iPad the commenting and annotation options are not available. Is there a way to allow commenting and annotation in the app while password pro

    I have created a PDF and password protected it for view. However, when reading the PDF in Adobe Reader app on the iPad the commenting and annotation options are not available. Is there a way to allow commenting and annotation in the app while password protecting the document?

    Is there a setting that needs to be set to allow the annotation features?  I set password protection to open and then password for editing and set it to Any except page extraction, but it still did not give the annotation option

  • How can I create a pdf but not have it open in acrobat afterwards

    I want to be able to create a pdf file but not have it open up in acrobat after it is created.
    I am doing this in an Access application that outputs a report to a pdf and then faxes that pdf to a fax number associated with that report.  It might loop thru several hundred reports so I don't want to have close several hundred pdfs manually, plus I doubt my computer could even handle that many opened pdf files.  Is there someway of configuring acrobat so that it won't open after a pdf is created?
    Thank you
    Ben Tolsky

    Using VBA I open up a report and then use the following code:
    DoCmd.OutputTo acOutputReport, RptName, acFormatPDF, strFile, 0
    RptName is the name of the report
    strFile is C:\Reports\test.pdf
    It creates the pdf no problem, its just that it opens it up afterwards.  I would like it to not open up the pdf in acrobat because I want to loop thru several hunderd reports and fax them to different numbers.

  • Hyperlinks not converting when creating a pdf from Word 2010 to Adobe Acrobat 11.0.6

    First off, let me say that these are not table of contents hyperlinks.  I have created a document in Word 2010 (not a MAC) with hyperlinks to files residing on our company's intranet.  In Word the hyperlinks work great but when I create the pdf, the links do not work.  I have converted using both PDFMaker from Word and Create a pdf from within Acrobat.  Yes, I have all the boxes checked regarding saving links.  The links appear to work partially.  Meaning that when I hover the cursor over the link, the pointy finger appears but when I click I get a pop-up message telling me the file could not be opened.  Also, when I hover over the hyperlink, the address appears.  So, I think it knows there's a link and it tries to open but can't.  When I create the file within Adobe the link works - once.  When I click on the link I get a pop-up window asking me if I want to save my file before closing.  After my response the file closes and the linked file opens.  However, when I go back into the file and try the hyperlink again, I get the pop-up telling me the file cannot be opened.  HELP!  I am at my wits end.  After spending hours yesterday trying to research (I think I read every thread related to hyperlinks but I am not using a Mac, table of contents or Adobe 7 around which it seems all the prior questions revolve) and futily creating and recreating the pdf (as if doing the same thing repeatedly would somehow magically work) I am about to give up.  This is a document that will be published to our intranet for use by employees which cross-references other documents to which they can refer for additional information.  I would prefer to publish a pdf and not a Word document.  Any suggestions would be appreciated.

    Thanks for your input Bill. I've checked the preferences and "view large images" is turned on. It's not all of the images which are missing, only certain ones do not transfer over to PDF.

  • Creating a PDF that is customizable/interactive for different companies and representatives

    I am rather new to Adobe, however I am able to use most of the software (illustrator, indesign, Photoshop, LiveCycle)  just fine.
    My issue is I am not sure which program/technique I should use for an interactive PDF I need to create.
    I am trying to create a PDF document that will be around 50 pages.  This document I will distribute to representatives in my company who work for many different financial institutions.  I somehow want to create this PDF for them to be able to customize by inserting their financial institution's logo and date to the footer and insert their name to title page (and any other applicable pages).
    If possible, I was hoping there was a way to include a page where our representatives could select from a checklist which of the 50 pages of the PDF they wanted to include in their document.  The representatives also are not that tech savvy and think just telling them to delete the pages from the PDF could cause potential problems.  Also a checklist would be simple and look much more professional. 
    The representatives would not have access to any Adobe design software, so the final document would have to be some sort of interactive/customizable PDF through Acrobat. 
    I am kind of lost as to how I can create this PDF and so if anyone can point me in the right direction I would greatly appreciate it!  It's also possible I may be in the wrong program forum.  So apologize if I am.
    Thanks!

    This can be done using Adobe Acrobat yes.
    You need to decide how many uses this item will get. The reason is you have to specially enable the forms so that the users can use Reader to save the changes afterwards. These enabled files have use restrictions. You can send them to 500 people and they can use them as many times as they want or you can send them to as many people as you want but can only collect the item back 500 times.

Maybe you are looking for

  • CS4 project into CS5?

    Will a CS4 project open in CS5 (Maybe you could do a test on this Harm if you have time.) I would like to know so I can plan project migration to a new system. Answer would be good for the CS5 FAQ sub forum

  • Deposit containers from vendor

    Hi All, i have one issue as follows and request your help .. Some vendors charge a deposit for the containers that their products are sold in.  An example is our organisation  purchases 4 drums of solvent from a vendor.  The solvent price is $1.00 pe

  • Frames or not

    Hi We are a group of students who have to build a website using JSP as an assignment. Now there is a discussion in our group if we should use frames or not. We have about 16 beans that will be used throughout the website and we will probebly need ses

  • Can anyone please answer to these questions asap

    List the sequence of converting Employees (Person Related Info). ? How do you trace back a converted record from a staging table? What should be in place for converting Tax Book? Can you convert legacy GL data that is not balanced in to Oracle? In Or

  • I use OS X 10.6.8. Is there a substitite for Adobe Flash?

    As I say above, all I want to get rid of Adobe Flash and use another reliable application. Thanks for any help given.