Mask the reported OS version to report back as 10.5 instead of 10.6?

So I have this application used for work that only runs on 10.5 (guess it was made some time back).
Im running 10.6.3 and when I open it it reports that I'm running the wrong OS which is fair enough.
a friend mentioned that it could be possible to somehow mask the reported os version and to get it running under 10.6 but didn't provide any other details.
is this possible or is their another way round this?
Cheers

If a program doesn't run on 10.6, it's not because it's throwing a tantrum because the number isn't right. It's because the software is not compatible with 10.6. A lot of things changed under the hood in 10.6, and that broke some older programs. Your only option if it doesn't work with 10.6 is to get an upgrade for that software or to run it on a machine with 10.5.

Similar Messages

  • If i restore my iphone to my last back up i did, will it be in the same IOS version i had backed it up before?

    if i restore my iphone to my last back up i did, will it be in the same IOS version i had backed it up before?

    No, it will keep the same iOS version it has now.
    Michael.

  • Bug Report: Process Version sometimes reports "nil"

    I think this occurs mostly if not always when Process Version is 2003 - sometimes I read "nil" as process version develop setting, sometimes it reads "2003"(i.e. 5.0, if I remember right)  - seems to be sort of random / intermittent.
    I'm talking about the photo:getDevelopSettings function, 'ProcessVersion' key.
    Rob

    Post Author: Bandi
    CA Forum: Crystal Reports
    Hi Shannara,
    It sounds like your patience with Crystal 11 is running thin
    Not sure if this will help, but I had a similar issue a while ago.  Speed was woeful to say the least.  The way I fixed it was to right click on the desktop, then go to properties -> Settings tab -> Advanced button -> Troubleshoot tab and fiddled with the Hardware acceleration slider.   Not sure what was causing the issue, but that sorted it for me.
    Hope it helps,   Anthony

  • Need specific version of Report Builder

    Hello all,
    I'm trying to get a version of Report Builder to match exactly with the version my client has, but I'm not sure where to find it. I have Report Builder 6i (ver. 6.0.8.11.3), and my client says he has ver. 6.0.8.27.0. Is there a patch out there to upgrade mine to match his version? If not, is there any other way to get the same version?
    On a related note, what was the last-released version of Report Builder 6i?

    Problem solved, here's the solution:
    I found the patch on metalink.oracle.com
    The patchset I needed was: 4948577

  • Newbie Question: How to find Forms/Reports Server Version

    Hello,
    Is there a way to easily find out what is the patchset installed for the Forms and Reports Server. I know that presently using AS 9i rel1 and Forms 6i, but how do you find out more information on the installed patches on Windows? thanks

    Please see these threads.
    how to find the developer version
    Re: how to find the developer version
    Report Builder version
    Re: Report Builder version
    Form patch set level
    Re: Form patch set level.
    Always search the forum before posting similar questions.
    Thanks,
    Hussein

  • How do I uninstall the 9.0 version we hate it! I want 7.0 back how do I get it back again.

    Although we haven't had many problems with the new update we HATE it how can we uninstall the 9.0 version and go back to the 7.0

    There is no "official" supported way to do so. If you FULLY understand the INCREDIBLE RISK this poses:
    Uninstall Firefox 9 and DO NOT check the remove personals settings
    Download 7.0.1 -> ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/7.0.1/win32/en-US/
    Install 7.0.1
    You are MUCH better off explaining what it is you don't like...

  • Plugging in iphone and itunes is telling me to download the 64-bit version.

    when i plug my iphone into my computer, itunes keeps telling me to go download the 64-bit version. so i uninstalled itunes and went and downloaded the 64-bit version. i went back into itunes, and it told me the same thing. i'm using a windows 7.

    I have a similar problem. When I plug in my iphone it told me to uninstall and download the 64-bit version. When I did that, the 64-bit version wouldn't open because my "library was created with a newer version of iTunes". It appears I can either have my library OR I can sync with my iPhone, but not both. I haven't been able to find answers for this problem.
    It's a brand new PC laptop, running Windows 7. Any other specs I should mention?
    I would appreciate any suggestions anyone can offer me.

  • An error occurred during local report processing.The definition of the report '' is invalid.The definition of this report is not valid or supported by this version of Reporting Services. he report definition may have been created with a later version of R

    Hi,
    I am trying to create rdlc file programmatically. Using Memory Table as dataset. Here is my code
    ' For each field in the resultset, add the name to an array listDim m_fields AsArrayList
      m_fields = NewArrayList()
      Dim i AsIntegerFor i = 0 To tbdataset.Tables(0).Columns.Count - 1
          m_fields.Add(tbdataset.Tables(0).Columns(i).ColumnName.ToString)
      Next i
      'Create Report 'http://schemas.microsoft.com/sqlserver/reporting/2008/01/reportdefinition'http://schemas.microsoft.com/sqlserver/reporting/2010/01/reportdefinition' Open a new RDL file stream for writingDim stream AsFileStream
      stream = File.OpenWrite("D:\MyTestReport2.rdlc")
      Dim writer AsNewXmlTextWriter(stream, Encoding.UTF8)
      ' Causes child elements to be indented
      writer.Formatting = Formatting.Indented
      ' Report element
      writer.WriteProcessingInstruction("xml", "version=""1.0"" encoding=""utf-8""")
      writer.WriteStartElement("Report")
      writer.WriteAttributeString("xmlns", Nothing, "http://schemas.microsoft.com/sqlserver/reporting/2010/01/reportdefinition")
      writer.WriteAttributeString("xmlns:rd", "http://schemas.microsoft.com/SQLServer/reporting/reportdesigner")
      writer.WriteStartElement("ReportSections")
      writer.WriteStartElement("ReportSection")
      writer.WriteElementString("Width", "11in")
      writer.WriteStartElement("Body")
      writer.WriteElementString("Height", "5in")
      writer.WriteStartElement("ReportItems")
      writer.WriteStartElement("Tablix")
      writer.WriteAttributeString("Name", Nothing, "Tablix1")
      writer.WriteElementString("Top", ".5in")
      writer.WriteElementString("Left", ".5in")
      writer.WriteElementString("Height", ".5in")
      writer.WriteElementString("Width", (m_fields.Count * 1.5).ToString() + "in")
      writer.WriteStartElement("TablixBody")
      ' Tablix Columns
      writer.WriteStartElement("TablixColumns")
      ForEach fieldName In m_fields
          writer.WriteStartElement("TablixColumn")
          writer.WriteElementString("Width", "1.5in")
          writer.WriteEndElement() ' TableColumnNext fieldName
      writer.WriteEndElement() ' TablixColumns' Header Row
      writer.WriteStartElement("TablixRows")
      writer.WriteStartElement("TablixRow")
      writer.WriteElementString("Height", ".25in")
      writer.WriteStartElement("TablixCells")
      ForEach fieldName In m_fields
          writer.WriteStartElement("TablixCell")
          writer.WriteStartElement("CellContents")
          writer.WriteStartElement("Textbox")
          writer.WriteAttributeString("Name", Nothing, "Header" + fieldName)
          ' writer.WriteAttributeString("CanGrow",  True)' writer.WriteAttributeString("Keeptogether", True)
          writer.WriteStartElement("Paragraphs")
          writer.WriteStartElement("Paragraph")
          writer.WriteStartElement("TextRuns")
          writer.WriteStartElement("TextRun")
          writer.WriteElementString("Value", fieldName)
          writer.WriteStartElement("Style")
          writer.WriteElementString("TextDecoration", "Underline")
          writer.WriteElementString("PaddingTop", "0in")
          writer.WriteElementString("PaddingLeft", "0in")
          writer.WriteElementString("LineHeight", ".5in")
          ''writer.WriteElementString("Width", "1.5in")''writer.WriteElementString("Value", fieldName)
          writer.WriteEndElement() ' Style
          writer.WriteEndElement() ' TextRun
          writer.WriteEndElement() ' TextRuns
          writer.WriteEndElement() ' Paragraph
          writer.WriteEndElement() ' Paragraphs
          writer.WriteEndElement() ' TexBox
          writer.WriteEndElement() ' CellContents
          writer.WriteEndElement() ' TablixCellNext
      writer.WriteEndElement() ' TablixCells
      writer.WriteEndElement() ' TablixRow'writer.WriteEndElement() ' TablixRows          Do not close Rows tag here colse it after details'End of Headers'Details Rows'writer.WriteStartElement("TablixRows")         Since Rows tag in header is not closed not need to open fresh tag
      writer.WriteStartElement("TablixRow")
      writer.WriteElementString("Height", ".25in")
      writer.WriteStartElement("TablixCells")
      ForEach fieldName In m_fields
          writer.WriteStartElement("TablixCell")
          writer.WriteStartElement("CellContents")
          writer.WriteStartElement("Textbox")
          writer.WriteAttributeString("Name", Nothing, fieldName)
          '  writer.WriteAttributeString("CanGrow", True)'  writer.WriteAttributeString("Keeptogether", True)
          writer.WriteStartElement("Paragraphs")
          writer.WriteStartElement("Paragraph")
          writer.WriteStartElement("TextRuns")
          writer.WriteStartElement("TextRun")
          'writer.WriteElementString("Value", fieldName)
          writer.WriteElementString("Value", "=Fields!" + fieldName + ".Value")
          writer.WriteStartElement("Style")
          writer.WriteElementString("TextDecoration", "Underline")
          writer.WriteElementString("PaddingTop", "0in")
          writer.WriteElementString("PaddingLeft", "0in")
          writer.WriteElementString("LineHeight", ".5in")
          ''writer.WriteElementString("Width", "1.5in")''writer.WriteElementString("Value", fieldName)
          writer.WriteEndElement() ' Style
          writer.WriteEndElement() ' TextRun
          writer.WriteEndElement() ' TextRuns
          writer.WriteEndElement() ' Paragraph
          writer.WriteEndElement() ' Paragraphs
          writer.WriteEndElement() ' TexBox
          writer.WriteEndElement() ' CellContents
          writer.WriteEndElement() ' TablixCellNext
      writer.WriteEndElement() ' TablixCells
      writer.WriteEndElement() ' TablixRow
      writer.WriteEndElement() ' TablixRows'End of Details Rows
      writer.WriteEndElement() ' TablixBody
      writer.WriteStartElement("TablixRowHierarchy")
      writer.WriteStartElement("TablixMembers")
      writer.WriteStartElement("TablixMember")
      ' Group
      writer.WriteElementString("KeepWithGroup", "After")
      writer.WriteEndElement() ' TablixMember' Detail Group
      writer.WriteStartElement("TablixMember")
      writer.WriteStartElement("Group")
      writer.WriteAttributeString("Name", Nothing, "Details")
      writer.WriteEndElement() ' Group
      writer.WriteEndElement() ' TablixMember
      writer.WriteEndElement() ' TablixMembers
      writer.WriteEndElement() ' TablixRowHierarchy
      writer.WriteStartElement("TablixColumnHierarchy")
      writer.WriteStartElement("TablixMembers")
      'writer.WriteStartElement("TablixMember")ForEach fieldName In m_fields
          writer.WriteStartElement("TablixMember")
          writer.WriteEndElement() ' TablixMemberNext' writer.WriteEndElement() ' TablixMember
      writer.WriteEndElement() ' TablixMembers
      writer.WriteEndElement() ' TablixColumnHierarchy
      writer.WriteElementString("DataSetName", "tbdataset")
      writer.WriteEndElement() ' Tablix
      writer.WriteEndElement() ' ReportItems
      writer.WriteEndElement() ' Body
      writer.WriteStartElement("Page")
      ' Page Header Element
      writer.WriteStartElement("PageHeader")
      writer.WriteElementString("Height", "1.40cm")
      writer.WriteStartElement("ReportItems")
      writer.WriteStartElement("Textbox")
      writer.WriteAttributeString("Name", Nothing, "Textbox1")
      writer.WriteStartElement("Paragraphs")
      writer.WriteStartElement("Paragraph")
      writer.WriteStartElement("TextRuns")
      writer.WriteStartElement("TextRun")
      writer.WriteElementString("Value", Nothing, "ABC CHS.")
      writer.WriteEndElement() ' TextRun
      writer.WriteEndElement() ' TextRuns
      writer.WriteEndElement() ' Paragraph
      writer.WriteEndElement() ' Paragraphs
      writer.WriteEndElement() ' TextBox
      writer.WriteEndElement() ' ReportItems
      writer.WriteEndElement() ' PageHeader
      writer.WriteEndElement() ' Page
      writer.WriteEndElement() ' ReportSection
      writer.WriteEndElement() ' ReportSections' DataSources
      writer.WriteStartElement("DataSources")
      writer.WriteStartElement("DataSource")
      writer.WriteAttributeString("Name", Nothing, "tbdata")
      writer.WriteStartElement("DataSourceReference")
      writer.WriteEndElement() ' DataSourceReference
      writer.WriteEndElement() ' DataSource
      writer.WriteEndElement() ' DataSources'DataSet
      writer.WriteStartElement("DataSets")
      writer.WriteStartElement("DataSet")
      writer.WriteAttributeString("Name", Nothing, "tbdataset")
      writer.WriteStartElement("Query")
      writer.WriteElementString("DataSourceName", Nothing, "tbdata")
      'writer.WriteElementString("CommandText", Nothing, "/* Local Query */")
      writer.WriteElementString("CommandText", Nothing, "TableDirect")
      writer.WriteEndElement() ' Query'Fields
      writer.WriteStartElement("Fields")
      ForEach fieldName In m_fields
          writer.WriteStartElement("Field")
          writer.WriteAttributeString("Name", Nothing, fieldName)
          writer.WriteElementString("DataField", fieldName)
          writer.WriteElementString("rd:TypeName", fieldName.GetType.ToString)
          writer.WriteEndElement() ' FieldNext
      writer.WriteEndElement() ' Fields' rd datasetinfo
      writer.WriteEndElement() ' DataSet
      writer.WriteEndElement() ' DataSets
      writer.WriteEndElement() ' Report' Flush the writer and close the stream
      writer.Flush()
      stream.Close()
      'Convert to StreamDim myByteArray AsByte() = System.Text.Encoding.UTF8.GetBytes("D:\MyTestReport2.rdlc")
      Dim ms AsNewMemoryStream(myByteArray)
      'Supply Stream to ReportViewer
      ReportViewer1.LocalReport.LoadReportDefinition(ms)
      ReportViewer1.LocalReport.Refresh()When I open rdlc in designer I get following error"Data at the root level is invalid."When I run the aspx I get following error
    An error occurred during local report processing.
    The definition of the report '' is invalid.
    The definition of this report is not valid or supported by this version of Reporting Services.
    The report definition may have been created with a later version of Reporting Services, or contain content that is not well-formed or not valid based on Reporting Services schemas.
    Details: Data at the root level is invalid. Line 1, position 1.
    Can anybody guide me?

    Hi Wendy Fu,
    Thanks for your feed back. I could see Microsoft.ReportViewer.ProcessingObjectModel.dll to add as reference to my project. Actually I can open generated rdlc in designer, at run time I get error. I could not make out where is the exact mistake out of three
    options flashed.
    The definition of this report is not valid or supported by this version of Reporting Services.
    The report definition may have been created with a later version of Reporting Services
    or contain content that is not well-formed or not valid based on Reporting Services schemas
    Details: Data at the root level is invalid
    My web config has following references
    <add assembly="Microsoft.ReportViewer.WebForms, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845DCD8080CC91"/>
    <add assembly="Microsoft.ReportViewer.Common, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845DCD8080CC91"/>
    May be I have to change these versions to 9 or 10.
    First I will try adding Microsoft.ReportViewer.ProcessingObjectModel.dll .
    Once thanks for your reply.
    Races

  • An error has occurred in the script on this page ( Crystal Reports Product Version - 11.5.7.770)

    Post Author: sampolo
    CA Forum: Crystal Reports
    I am running Crystal Reports Product Version - 11.5.7.770, On MS windows Server 2003 R2 standard Edition SP2
    But every time I launch Crystal Reports I am getting the following error message..
    An error has occurred in the script on this page
    Line: 360
    Char: 30
    Error: Unspecified error.
    Code: 0
    URL: http://www.businessobjects.com/products/reporting/crystalreports/start/designer/default.asp
    Do you want to continue running scripts on this page? YES or No..
    ========================
    I have try this following fix with no success...can someone help?
    http://support.microsoft.com/kb/895608
    http://technicalsupport.businessobjects.com/cs/forums/permalink/606/5889/ShowThread.aspx

    Post Author: sampolo
    CA Forum: Crystal Reports
    Well I found a temporary fix for this issue. I put the http://www.businessobjects.com/ as a trusted site in IE!!
    First, get the URL of the site to trust. For example, " http://www.businessobjects.com/
    .Next, Click on the "Tools" menu and select "Internet Options". Click on the "Security" tab.
    Click on the green circle with a white check marked "Trusted Sites". In the space provided, enter the URL of the site (you'll probably want to uncheck the box requiring SSL, which is a high-security link, for all sites). Click the "Add" button. Continue entering sites until you have them all entered, then click OK as needed. If you find another trusted site later, simply go back to this menu item and enter the data.

  • Not able to see the crystal reports XI version in the IE 7 and IE 8

    Hi Team,
    I am using web based application developed in VB,ASP,SQL SERVER,Crystal Reports(XI). I am able to see the Crystal Reports in IE 6. But i am not able to see the reports in IE 7 and IE 8. While clicking on the reports button it is showing the  red X image top left cornor.
    I am using CrystalActiveX viewer11 version for viewing the reports.
    In IE 6,if the client using fiirst time for vieiwing the reports,it will ask the Activexviewer control prompt and says ok,it will display the reports.
    Thanks and Regards
    Eshwar

    Thanks your advise.But we are using following crystal reports (XI) version and we don't have CRXI with R1 and R2.
    CurrentVersion:11.0.0.895 ( CR Developer and Product Type:Full)
    Crystal Reportviewer11 configured in the IIS which is version (5.0). and configured the virtual folder to C:\Program Files\Common Files\Business Objects\3.0\crystalreportviewers11\.
    Our web application code also configured in the IIS at same level.
    When the user wants to see the reports through the application,it will ask the Plugin of Crystal Report Viewer and user will download this plugin and it will save in the IE plug ins.It will ask only first time viewing the reports for the next onwards it will not ask or prompt of the Activex control.
    So please suggest me, is there any upgrade version of this Crystal Reportviewer11 needs to be installed or any browser setting need to be configured for IE 7 and IE 8.
    waiting for your reply.
    Regards
    Eshwar

  • How to check the report builder version from the rdf file

    Hi,
    I have a rdf file but I don't the developer using which version of report builder to develop the rdf file. So, does anyone knows how to check the rdf file is developed by which version of report builder?
    When I try to use the notepad to open the rdf file, it shows the string "ROS.60050". So, does it means that the rdf file is developed by Oracle report 6i?
    Besides, do anyone knows if Oracle report 6i are still offer from Oralce (as I know, the latest verison of oracle report is 11g). So, in case Oralce not offer oracle 6i and I need to buy oracle report 11g, do u know it is compatiable or I need to do the migration from 6i to 11g?
    Thanks!

    Hi,
    The ROS version you are seeing in the RDF file does not mean the version where that RDF was developed. I am not aware of a way to check this but something that may help is that when you try to open a RDF developed in a higher version
    of Reports with a lower version of Reports builder the following warning will be displayed
    Warning. Opening a report saved with a newer version of Reports Builder.
    Functionality may be lost. Continue?
    "You tried to open a report with a version of Reports Builder older than the version used to
    create the report. If the report uses functionality unavailable in the older version, that
    functionality will be eliminated from the report.
    Regarding Oracle Developer 6i. This version is not supported any more. Regarding how to upgrade Reports 6i to 11g and what to have in mind during the upgrade please review the following documentation.
    References
    http://docs.oracle.com/cd/E24269_01/doc.11120/e24478/toc.htm
    How To Migrate Forms and Reports From 6i and/or 9i To 11g? (Doc ID 1275515.1)
    Hope it helps.
    Regards, RZ

  • How do I Create multipage Web-ready reports in the evaluvatio​n version of DIADEM?

    I need to create a multi page web report. How do I do this using the evaluvation version of DIADEM? Does Diadem support web-based reports?

    Hi SriramSharma
    In DIAdem REPORT, the 4th panel of the left hand side, you create multi-page reports from 2D&3D graphs, tables, pictures and texts.
    When you save this templete is stores into an XML based file formate that DIAdem reads called TDR. This is so you can resue these templates with what ever dataset you want.
    However you also have the choice from the file menu in DIAdem REPORT (4th panel) to export to an HTML report.
    After you have desinged you template, and are displaying data, select "HTML Export" from the file menu in DIAdem REPORT. This will save your file in a format that is compatible with web browsers.
    Let me know if you have any additional questions
    Thanks
    Tom Ferraro
    DIAdem Product Manager
    512-683-6841

  • Upgrading the report version from Crystal Reports 10 to Crystal Reports 11 without REDESIGN

    Post Author: Chakradhar
    CA Forum: Upgrade to XI 3.0
    HI All, Please provide a solution for this.. Is there any way to upgrade the version of a report without redesigning the report? If we upgrade the report without redesign, dont we lose the special features of the new version? Actually i want to the change the report version from Crystal Reports 10 to Crystal Reports 11. Thanks..

    Post Author: rodneyaz
    CA Forum: .NET
    I'm having the same issue.  Worked fine for me in XI, but stopped working when I upgraded XI to XI R2.
    Please post a follow-up if you get this resolved!  Thanks!
    RodneyAZ

  • Ive installed the 1.4 JDK, but java -version still reports 1.2

    Ive installed J2SE 1.4 sdk, but have installed osme other applications that have installed some older JRE's and SDK's. Now when i issue the java command "java -version" it reports
    C:\>java -version
    java version "1.2.2"
    Classic VM (build JDK-1.2.2_008, native threads, symcjit)
    how can i correct this ?

    If you have both jdk installed put 1.4 version in autoexec.bat ahead of 1.2 in the line

  • Hi when I open each application for mac office, the app closes and it pops up the following error: Microsoft Error Reporting log version: 2.0  Error Signature: Exception: EXC_BAD_ACCESS Date/Time: 2014-03-27 14:14:52 +0000 Application Name: Microsoft Exce

    Microsoft Error Reporting log version: 2.0
    Error Signature:
    Exception: EXC_BAD_ACCESS
    Date/Time: 2014-03-27 14:14:52 +0000
    Application Name: Microsoft Excel
    Application Bundle ID: com.microsoft.Excel
    Application Signature: XCEL
    Application Version: 14.1.4.111121
    Crashed Module Name: libTIFF.dylib
    Crashed Module Version: unknown
    Crashed Module Offset: 0x000078ae
    Blame Module Name: MicrosoftComponentPlugin
    Blame Module Version: 14.1.4.111121
    Blame Module Offset: 0x0000d9fc
    Application LCID: 1040
    Extra app info: Reg=en Loc=0x0410
    Crashed thread: 0

    Hi mattiaprodomo,
    If you are having issues with an app that unexpectedly closes on launch, you may find the following article helpful:
    OS X Mavericks: If an app freezes or quits unexpectedly
    http://support.apple.com/kb/PH13975
    Regards,
    - Brenden

Maybe you are looking for

  • ITunes 9 library can't find location of any songs...

    Recently my family just upgraded our iMac Tiger to Snow Leopard, and purchased a second external drive with 1 TB space. I already have a storage drive that holds my music, movies, podcasts, photo documentation for art, etc. The 1 TB external drive wa

  • Where is the mod_jk2.dll?

    hello I'm trying to install jk2 connector. My problem is that in the .zip distribution on Jakarta site, I can't find the mod_jk2.dll that must be given to httpd.conf in Apache. Instead of it, I find a mod_jk2.so, which is the Unix/Linux equivalent. I

  • Changing document type for invoice

    hi i posted invoice with doc type vendor invoice in detailed tab then i reverse it credit memo by mistake i used doc type vendor document then i again invoiced with doc type ven invoice now i want to change the doc type of reverse from vend doc to ve

  • Mass change of PO's

    HI Gurus, is there a mass way to change some old PO's. The things we want to change are, setting the delivery completed indicator, closing out the line items etc. Thanks Anusha

  • Scanjet in mac os 10.10

    Hi there, I'm using a HP Scanjet 8270 with Mac OS 10.9 and I can't find inforation wether it would work in the next OS 10.10. Does anyone has some information about this topic? Cheers This question was solved. View Solution.