Report exported in Crystal Reports 9 won't work in Crystal Reports XI R2

Hello,
I have a .NET client that has been using Crystal Reports 9 for some time to generate reports and then exporting them to Crystal Reports format (.rpt), and saving the report including the data so that the user can open it at a later time and preview/print. This has been working fine so far.
Now we're in the process of updating our system to Crystal Reports XI R2. When a user selects an old report (that was originally created in CR9) to preview, CR XI prompts the user to submit a value for a string parameter that was originally submitted to the report when it was generated in CR9 but the value was set as either Nothing or the empty string. If we try to print the report then CR XI throws this error (probably because of the same parameter):
CrystalDecisions.CrystalReports.Engine.ParameterFieldCurrentValueException: Missing parameter values. ---> System.Runtime.InteropServices.COMException (0x8004100E): Missing parameter values.
at CrystalDecisions.ReportAppServer.Controllers.ReportSourceClass.GetLastPageNumber(RequestContext pRequestContext)
at CrystalDecisions.ReportSource.EromReportSourceBase.GetLastPageNumber(ReportPageRequestContext reqContext)
--- End of inner exception stack trace ---
at CrystalDecisions.ReportAppServer.ConvertDotNetToErom.ThrowDotNetException(Exception e)
at CrystalDecisions.ReportSource.EromReportSourceBase.HandleException(Exception exception)
at CrystalDecisions.ReportSource.EromReportSourceBase.GetLastPageNumber(ReportPageRequestContext reqContext)
at CrystalDecisions.CrystalReports.Engine.FormatEngine.PrintToPrinter(Int32 nCopies, Boolean collated, Int32 startPageN, Int32 endPageN)
at CrystalDecisions.CrystalReports.Engine.ReportDocument.PrintToPrinter(Int32 nCopies, Boolean collated, Int32 startPageN, Int32 endPageN)
Is there a solution to this? I've tried to submit a value to the parameter in code and then exporting the report again but that doesn't work. Any help appreciated.

Hello,
Currently the FP is not available from our public site, it should be soon though.
Here's a link to get to our download page. If it asks please agree to download the authentication certificate.
https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/bobj_download/main.htm
Thank you and sorry for the delay.

Similar Messages

  • I just renewed my Adobe Export PDF online and it won't work.  Help!

    I received an email saying that I successfully renewed my subscription for the Adobe Export PDF but when I try to convert a PDF to a Word document it comes back an error.
    Please help.

    Hi wheelingandable,
    It can a little while for an order to process fully. If it's been a while since you renewed your subscription, then make sure that you're signed in to the ExportPDF service. What happens when you log in directly to cloud.acrobat.com/exportpdf?
    Please let us know how it goes.
    Best,
    Sara

  • Exporting a crystal report as PDF and Attaching to an email via code - Filename Issuses?

    Post Author: alynch
    CA Forum: .NET
    I need to export a crystal report as a pdf and send it out via email.  I have created a subroutine that works but the attached filename come up as "untitled.txt" so the receiving machine believes it is a text file.  If I rename it on the recipients machine to a ".pdf" I can open it with acrobat and it looks OK.  Does anyone know how to rename the file as a pdf prior to sending it out? 
    Thank You.
    al
    I have included a copy of the subroutine:
    Dim repdoc As New CrystalDecisions.CrystalReports.Engine.ReportDocument()
    Dim diskOpts As New CrystalDecisions.Shared.DiskFileDestinationOptions()
    Dim ExpOpts As CrystalDecisions.Shared.ExportOptions
    Dim MailOpts As New CrystalDecisions.Shared.MicrosoftMailDestinationOptions()
    repdoc = Me.CrystalReport11
    repdoc.Load("C:\Documents and Settings\User\My Documents\Visual Studio 2005\Projects\WindowsApplication3\WindowsApplication3\CrystalReport1.rpt")
    ExpOpts = repdoc.ExportOptions
    With ExpOpts
    .ExportDestinationType = CrystalDecisions.[Shared].ExportDestinationType.MicrosoftMail
    .ExportFormatType = CrystalDecisions.[Shared].ExportFormatType.PortableDocFormat
    End With
    With MailOpts
    .MailMessage = "Message"
    .MailToList = "enter email adress here"
    .MailSubject = "Attached is a PDF file - .net Export test "
    End With
    ExpOpts.DestinationOptions = MailOpts
    Try
    repdoc.Export()
    Catch err As Exception
    MessageBox.Show(err.ToString())
    End Try
    End Sub

    Post Author: Knight
    CA Forum: .NET
    I had this same problem today, here's what I used. Its built in 2 parts. Step one loops throught and exports PDF copies of a traking report. Step 2 builds an email list from a SQl query and sends it.STEP ONE:Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click        'Declare the some variables        Dim row1 As DataRow        Dim brokerID As String        Dim brokername As String        Dim brokerEmail As String        Dim shipdate As String        Dim crParameterFieldDefinitions As ParameterFieldDefinitions        Dim crParameterFieldDefinition As ParameterFieldDefinition        Dim crParameterValues As New ParameterValues()        Dim crParameterDiscreteValue As New ParameterDiscreteValue()        Dim crParameterFieldDefinitions1 As ParameterFieldDefinitions        Dim crParameterFieldDefinition1 As ParameterFieldDefinition        Dim crParameterValues1 As New ParameterValues()        Dim crParameterDiscreteValue1 As New ParameterDiscreteValue()        Dim CrReport As New CrystalReport1() ' Report Name         Dim report As ReportDocument = "O:KNIFormats_ReportPrivateSMStageShipmentInfo"        Dim CrExportOptions As ExportOptions        Dim CrDiskFileDestinationOptions As New DiskFileDestinationOptions()        Dim CrFormatTypeOptions As New PdfRtfWordFormatOptions()        Dim SHIPDATE123 As String        SHIPDATE123 = _month & "/" & _day & "/" & year        Dim db As String        db = System.Configuration.ConfigurationSettings.AppSettings("Datalogin")        Dim sqlCon As New SqlConnection        sqlCon.ConnectionString = db        Dim strsql1 As String        strsql1 = "SELECT     tblSOOrd_Hdr.BrokerCd, tblSO_Ord_Hdr.BrokerName, tblSM_Ship_Hdr.ShipDate "        strsql1 &= "FROM         tblSO_Ord_Hdr INNER JOIN tblSM_Ship_Hdr ON tblSO_Ord_Hdr.Locale = tblSM_Ship_Hdr.Locale AND tblSO_Ord_Hdr.OrdNo = tblSM_Ship_Hdr.OrdNo AND "        strsql1 &= "              tblSO_Ord_Hdr.RlsNo = tblSM_Ship_Hdr.RlsNo INNER JOIN tblSys_Cust_Broker ON tblSO_Ord_Hdr.BrokerCd = tblSys_Cust_Broker.BrokerCd "        strsql1 &= "GROUP BY tblSO_Ord_Hdr.BrokerCd, tblSM_Ship_Hdr.ShipDate, tblSO_Ord_Hdr.BrokerName "        strsql1 &= "HAVING      (tblSM_Ship_Hdr.ShipDate = '" & SHIPDATE123 & "') "        Dim da1 As New SqlDataAdapter(strsql1, sqlCon)        Dim worktbl1 As DataTable        worktbl1 = New DataTable("tblEmail")        da1.Fill(worktbl1)        da1.FillSchema(worktbl1, SchemaType.Source)        If worktbl1.Rows.Count > 0 Then            For Each row1 In worktbl1.Rows                brokerID = CStr(row1("BrokerCd")).Trim                brokername = CStr(row1("BrokerName")).Trim                shipdate = CStr(row1("ShipDate")).Trim                CrReport.Load()                crParameterDiscreteValue.Value = shipdate                crParameterFieldDefinitions = CrReport.DataDefinition.ParameterFields                crParameterFieldDefinition = crParameterFieldDefinitions.Item("ShipDate")                crParameterValues = crParameterFieldDefinition.CurrentValues                crParameterValues.Clear()                crParameterValues.Add(crParameterDiscreteValue)                crParameterFieldDefinition.ApplyCurrentValues(crParameterValues)                crParameterDiscreteValue1.Value = brokerID                crParameterFieldDefinitions1 = CrReport.DataDefinition.ParameterFields                crParameterFieldDefinition1 = crParameterFieldDefinitions1.Item("Broker")                crParameterValues1 = crParameterFieldDefinition1.CurrentValues                crParameterValues1.Clear()                crParameterValues1.Add(crParameterDiscreteValue1)                crParameterFieldDefinition1.ApplyCurrentValues(crParameterValues1)                CrDiskFileDestinationOptions.DiskFileName = "c:Test_Folder20" & _year & "-" & _month & "-" & day & "" & brokername & ".pdf"                CrFormatTypeOptions.FirstPageNumber = 1 ' Start Page in the Report                 CrFormatTypeOptions.LastPageNumber = 1000 ' End Page in the Report                 CrFormatTypeOptions.UsePageRange = True                CrExportOptions = CrReport.ExportOptions                With CrExportOptions                    .ExportDestinationType = ExportDestinationType.DiskFile                    .ExportFormatType = ExportFormatType.PortableDocFormat                    .DestinationOptions = CrDiskFileDestinationOptions                    .FormatOptions = CrFormatTypeOptions                End With                Try                    CrReport.Export()                Catch err As Exception                    MessageBox.Show("DID NOT EXPORT")                End Try            Next            MessageBox.Show("All PDF's exported succesfully")        End If    End SubSTEP 2: Private Sub Button3Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click        Dim row2 As DataRow        Dim SHIPDATE123 As String        SHIPDATE123 = _month & "/" & _day & "/" & year        Dim db1 As String        db1 = System.Configuration.ConfigurationSettings.AppSettings("Datalogin")        Dim sqlCon As New SqlConnection        sqlCon.ConnectionString = db1        Dim strsql2 As String        strsql2 = "SELECT     tblSOOrd_Hdr.BrokerCd, tblSys_Cust_Broker.BrokerName, tblSM_Ship_Hdr.ShipDate, tblSys_Cust_Broker.ContactEmail "        strsql2 &= "FROM      tblSO_Ord_Hdr INNER JOIN tblSM_Ship_Hdr ON tblSO_Ord_Hdr.Locale = tblSM_Ship_Hdr.Locale AND tblSO_Ord_Hdr.OrdNo = tblSM_Ship_Hdr.OrdNo AND "        strsql2 &= "          tblSO_Ord_Hdr.RlsNo = tblSM_Ship_Hdr.RlsNo INNER JOIN tblSys_Cust_Broker ON tblSO_Ord_Hdr.BrokerCd = tblSys_Cust_Broker.BrokerCd "        strsql2 &= "GROUP BY  tblSO_Ord_Hdr.BrokerCd, tblSM_Ship_Hdr.ShipDate, tblSys_Cust_Broker.ContactEmail, tblSys_Cust_Broker.BrokerName, tblSys_Cust_Broker.Email_ASN "        strsql2 &= "HAVING    (tblSM_Ship_Hdr.ShipDate = '" & SHIPDATE123 & "') AND (tblSys_Cust_Broker.Email_ASN = 1) AND (tblSys_Cust_Broker.ContactEmail <> '') " Dim da1 As New SqlDataAdapter(strsql2, sqlCon) Dim worktbl2 As DataTable worktbl2 = New DataTable("tblEmail12") da1.Fill(worktbl2) da1.FillSchema(worktbl2, SchemaType.Source) Dim brokerID As String Dim brokername As String Dim brokerEmail As String Dim shipdate As String If worktbl2.Rows.Count > 0 Then For Each row2 In worktbl2.Rows brokerID = CStr(row2("BrokerCd")).Trim brokername = CStr(row2("BrokerName")).Trim brokerEmail = CStr(row2("ContactEmail")).Trim shipdate = CStr(row2("ShipDate")).Trim Dim mail As New MailMessage Dim att As String att = "c:Test_Folder20" & _year & "-" & _month & "-" & _day & "" & brokername & ".pdf" 'set the addresses mail.From = New MailAddress("[email protected]") mail.To.Add(brokerEmail) mail.Attachments.Add(New Attachment(att)) 'set the content mail.Subject = "Shipment Tracking report from Knox Nursery for " & SHIPDATE123 mail.IsBodyHtml = True mail.Body = "
    " mail.Body &= "This shipment update has been requested by:
    "                'send the message                Dim smtp As New SmtpClient                smtp.Send(mail)                ' MessageBox.Show("No Records Found", "Failed to send", MessageBoxButtons.OK, MessageBoxIcon.Stop            Next        Else            MessageBox.Show("No broker have opted in", "No Emails Sent", MessageBoxButtons.OK, MessageBoxIcon.Information)        End If        MessageBox.Show("Emails sent... ", "Emails Sent", MessageBoxButtons.OK, MessageBoxIcon.Information)    End Sub

  • Export Arabic Crystal Report To PDF

    Hi,
    I am using JRC component to build crystal reports in English & Arabic. All works well except exporting Arabic crystal report to PDF?
    Crystal File Format Schema: 12.0.0
    I was reading another 3 years old thread and this was stated there:
    "If you are using the Java Reporting Component, you will not be able to see Arabic characters in your PDF document because the JRC does not support font embedding, and only works with a specific character set when exporting to Adobe" Any from SAP can you please confirm that does this still hold true? And are there any chances or plan to add support in future?
    Regards
    SC

    Please disregard that part of the previous message.
    As mentioned earlier, it depends on which of our products you are using to export the report.  If you are using the Java Reporting Component, you will not be able to see Arabic characters in your PDF document because the JRC does not support font embedding, and only works with a specific character set when exporting to Adobe.
    If you are using the Crystal Reports designer or BusinessObjects Enterprise SDK to export the report, you will need to ensure you have the character set installed on the same machine; for BOE SDK it needs to be on the machine with all of the services.

  • Unable to export from Crystal Report - font OCR A STD

    We currently  have Crystal Report version 11.5, but I am having the issue of not being able to export the Crystal report file to PDF due to the report has font OCR A STD.  Error message is 'Failed to Export Report.'  Are there any options to resolve this issue?

    Hi Don,
    For my report I am using .ttf font only, But it's giving the same issue while exporting report to pdf
    Please help me.
    Thanks,
    Nitesh

  • Invalid export DLL or export format when export  with Crystal Reports 2008

    Hi,
         We have an serious issue while exporting the crystal report into excel. We are able to export into all type in our development environment. But when we tried to export from our server all exports working except the excel. However when we restart the IIS the excel export also working for sometimes and again we are facing the same problem.
    Development environment:
    .Net 2008
    Crystal report 2008
    SQL Server 2008
    +Server Environment:+
    IIS7.0 in Classical mode
    Crystal report 2008 runtime without any SP
        We chosen Classical mode to avoid the error 'an error occurred on the server. printing will be stopped' after a successful print. It is an known issue and I'm curious to know is there any fix available to resolve this issue. Because we prefer Integrated mode.
        Earlier we dont face the excel export problem and we encountered after the SP3 installation. So we uninstalled it from server and we just installed only the run-time. But still we are facing the same problem. we could not able to conclude the cause of this issue because classical mode may create this issue?
    This is a very critical issue to us, so if anyone has the solution please help me.
    Thanks

    Hello,
    Not clear, did you mean when you install SP 3 it worked?
    Use Process Monitor or Fiddler to see what is failing. With out an error message or any other error from IIS logs or Event Viewer logs anything could be the cause.
    Thank you
    Don

  • How to enhance the Excel export from Crystal Reports

    Hello,
    I am new in Crystal Reports and I wonder if it is possible to enhance the Excel export from Crystal Reports with post-processing that would be applied to the Excel exported file.
    By example, is it possible to freeze the window panes, so rows and columns are frozen in place on the screen?
    Is there any possibility to obtain the file exported to excel to work with.
    Or maybe there is some ways to parametrize the Excel export from Crystal Reports?
    Any suggestions are welcomed.

    If you are using Crystal Reports 2008 you can use the Report Application SDK that is now available.
    It has a object called PrintOutputController that has an export method that allows you to get access to the exported file before you send it to the user.
    Check the Developer library and the samples for details.
    <a href="/blog/10">Rob&#39;s blog - http://diamond.businessobjects.com/robhorne</a>

  • Wanted to know that can we export the Crystal report in .rtf file

    Hi,
    We are using your u201CCrystalu201D product version 8.5, We have  a valid license .
    Our license number is u201CA6A50-0910000-H410031.
    We are facing some problem while creating the report.
    We want to know that, do you have any functionality to export the report in .rtf format.
    Because here we are not able to export the crystal report in .rtf file.
    If this is possible then please help me.
    Thanks in advance..
    Thanks and Regards,
    Abhineet

    If this is a report creation question, post to the Report Design forum:
    SAP Crystal Reports
    Ludek

  • Exporting 'drillable' Crystal Reports

    I have produced some 'drillable' Crystal Reports that I can export as Crystal Reports.
    We would like to distribute these reports to wide audience so I've looked at exporting these as PDF but when I do the report is no longer 'drillable', is there a way around this?
    I believe that there is a free Crystal Reports viewer that we could distribute to those receivieng this report but is this the best option for handling this if we need to export and distribute this report as a Crystal Report?

    You can use Crystal Reports Server - or Enterprise to distribute the reports but exporting to other formats does not mean that those applications automatically inherit Crystal functionality (drill-down for example).
    As for 3rd party tools that would be up to you to research.

  • My Microsoft Office won't work! Here is the error report. Microsoft Error Reporting log version: 2.0  Error Signature: Exception: EXC_BAD_ACCESS Date/Time: 2015-03-04 12:04:03  0000 Application Name: Microsoft Word Application Bundle ID: com.microsoft

    My Microsoft Office won't work after upgrading to the newest OS from Apple! HELP!!!!!!
    Microsoft Error Reporting log version: 2.0
    Error Signature:
    Exception: EXC_BAD_ACCESS
    Date/Time: 2015-03-04 12:04:03 +0000
    Application Name: Microsoft Word
    Application Bundle ID: com.microsoft.Word
    Application Signature: MSWD
    Application Version: 14.4.8.150116
    Crashed Module Name: unknown
    Crashed Module Version: unknown
    Crashed Module Offset: unknown
    Blame Module Name: MSXML
    Blame Module Version: 14.4.8.150116
    Blame Module Offset: 0x00003125
    Application LCID: 1033
    Extra app info: Reg=en Loc=0x0409
    Crashed thread: 0

    If your startup disk says it is full, you need to remove some of your stuff.
    Either move some documents/movies/pictures to an external drive (if you want to keep them), or delete them from your startup drive. Then, empty the Trash.
    If you move them to an external, you will still have to delete them from the internal drive.
    That won't fix Office (I don't think), but it will make everything run better. You need a minimum of 10GB free (more would be better).
    You might need to reinstall Office. It should work without problem (well, at least as little problem as Office can muster).

  • Exporting from Crystal Enterprise 10 to Excel

    Post Author: alcancrystaluser
    CA Forum: Exporting
    Hi,
    When Trying to export a report in Crystal Enterprise 10.0 to Excel , the column headings are not displayed but replaced by an empty row.
    However, the download is working well when I do it in Crystal report X on my workstation.I have checked the option Simply page header. All the other options are unchecked.
    Has someone find the same problem or has an idea to resolve it?
    Thanks

    Post Author: hamish_sco
    CA Forum: Exporting
    I normally use these settings, which work pretty well; Excel Format:  CustomOptions:  Column width based on - Detailsthen the following boxes ticked;Export Object FormattingMaintain Relative Object PositionMaintain Column AlignmentExport Page Header and Footer CheersHamish

  • Cannot export to Editable (RTF) export format Crystal Repor 7

    When I try to export the Crystal Report to the RTF format is presented the following error message:
    "The Report was not exported. The selected export format may be disable on the server"
    Someone knows how to solve it?

    Hi Jonathan,
    Of course, we use Crystal Report 7, the application is based on the web and was developed by ASP, it is on 2 servers, one of them operating normally and the other displays this error, the environments are identical.
    Regards,
    Marcelo

  • Disc image file exported from Encore CS4 won't work

    Hello,
    I have a problem concerning the export of a disc image file in Encore CS4. I recently upgraded to CS4 and wanted to continue my project which I started editing with CS3. While working with CS3 I already did image files from this project for burning and testing the DVD. Back then it worked with no problems.
    However, since using the CS4 version Encore does the image without any problem, but I can't use the image file in any way afterwards. I mounted it with Daemon Tools as I did before, but the DVD won't play in any software DVD player I have installed (Media Player Classic, Windows Media Player, Nero Showtime) nor can I access the file structure over a file manager. Nevertheless NeroInfoTool and ImgBurn say there is a DVD in the virtual drive. Then I exported the DVD project into a folder and now I can see the files in the file manger but again no player will play it.
    Has anyone experienced this before and is able to help? It would be very appreciated since I don't want to downgrade back to CS3 :-)
    It's Encore CS4, Version 4.0.1.048 on a 2,8 GHz HT CPU, 2 GB RAM, Nvidia Geforce 6800 UT, lots of HDD space, XP + SP3.
    Thank you,
    Chris...

    Hey,
    thank you both. As I said no player accepts the project exported to a folder. It doesn't matter if I point the player to the video_ts.ifo or just the folder - it won't play. As a consequence I re-installed Encore CS3 in which exporting worked fine and guess what - the exported image and folder output doesn't work either. Since it worked before in CS3 it comes down to the conclusion that either I did some editing to the project that screwed the project or Encore CS4 did. Checking for mistakes in the project and previewing in inside CS4 everything seems fine. So might it be CS4 that ****** up the project file??? I mean it's full of strange bugs so it could easily be that. I even updated my Daemon Tools yesterday and it won't make a difference.
    Or could it be something else I haven't considered yet? Any ideas? I just don't want to build the whole project again which might not even work if it's some other error. This is a desperate call for help
    Thanks,
    Chris...

  • I purchased the package that allows you to export PDF files into Word files.  Whenever I try to export the PDF into a Word file it never works...  I don't know if there's something key that I'm missing but I'm pretty bummed I paid for it and it won't work

    I purchased the package that allows you to export PDF files into Word files.  Whenever I try to export the PDF into a Word file it never works...  I don't know if there's something key that I'm missing but I'm pretty bummed I paid for it and it won't work.  Can anybody help me out?

    Hello,
    I have paid for this service for a year and it never worked on my computer.  I just renewed and it finally converted the file but it will not let me edit it.  I join you in being bummed.  Either I get help with this or I am asking for a 2 year refund.   My intention was to be able to edit a pdf in MS Word. 
    pfierrorob

  • Can't export to thumbdrive.  I have saved to a folder on the desktop, and it still won't work.  Do I need to change a setting?

    Can't export photos to a thumbdrive.  I have saved them to a folder on the desktop, and it still won't work.  Do I need to change a setting?

    I have saved them to a folder on the desktop, and it still won't work.
    What still won't work?  You have the photos in a folder on the Desktop, right?  So what happens when you drag that folder onto the thumbdrive? Many such drives have a slider lock switch.  Make sure it's not in the locked position. 
    Otherwise give us more detailed info on your setup and issue.
    OT

  • When i export to PDF, the file won't open automatically

    When i export to PDF, the file won't open automatically, i have to open the folder and look for the created file... Acrobat 9.1, sap 2007...any suggestion?

    Hi........
    Go to Administration--> System Initialization --> General Setting --> Path Tab.....
    Check whether this below path has been defined if not then define it if yes then redefine.......
    C:\Program Files\SAP\SAP Business One\Attachments\
    Hope this will help you....
    Regards,
    Rahul

Maybe you are looking for

  • Ipod Classic audiobook settings

    I have placed audiobooks onto my Ipod Classic 160G, I have managed to put into one long book on my Itunes but not on my ipod. It shows each track seperate (and theres roughly 500 tracks per book) and wont skip onto the next one no matter not if I tur

  • Dashcode DataSource Computed Properties/Bindings

    Hi guys. I've been working with Dashcode widgets for a while now, but since moving to 3.0 and being introduced to the Data Source/Binding model, I'm still unconvinced that it can do what I need it to. I've read through the documentation but it does n

  • Problem with Scenario 2 using SP16

    I have problem when trying to deploy to my local environment.. The deploy gives me the following error.. I should mention that I have JDI installed on another server (something other than my dev box).  I should also mention that I have configured "Ru

  • Clock-in Clock-out corrections using ESS

    Hi, When we change the Time data using Clock-in, Clock-out corrections in ESS, it is not appearing in 2011 (Teven table).  When will this, gets updated to the table and  is there any tiem limit set for the updation ?? Thanks & Regards, Vidhya T.R

  • How to disconnect a USB device that auto-connects to my iMac

    I have a third-party device that gathers medical data that can be uploaded to my computer via USB. Now, however, I want to upload it to a web-based application application that runs only on Windows. I run Windows 7 on a virtual machine via Parallels