Visual Studio 2005, embedded Crystal Report problem

I am very new at .NET, and this is my first post to this forum.
I've created a Crystal Report within a project using Visual Studio 2005 Professional Edition, on a Windows XP machine.  I set the report as the ReportSource for a CrystalReportViewer on the main form.  I can see data in the report in design view when I right-click on any of the fields and click "Browse Field Data".  But when I preview the report, or run it in the application, all I see are the column headings and report title.  I am hoping I am leaving out something obvious.  I've researched this for two days without success. 
The report's detail section is NOT suppressed, btw.
FYI (although I think it might not be relevant, because I don't see the data when I preview it in Visual Studio either) the report is displayed in the application when a button is clicked, as follows:
    Private Sub cmdRunLog_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdRunLog.Click
            CrystalReportViewer1.DisplayToolbar = True
            cmdRunLog.Text = "Hide Run Log"
            cmdUpload.Enabled = False
            cmdReports.Enabled = False
            cmdManualRun.Enabled = False
            CrystalReportViewer1.Visible = True
            CrystalReportViewer1.Height = 600
            CrystalReportViewer1.Width = 1000
            CrystalReportViewer1.Left = 10
            Dim strReportSQL As String = "Select * From dbo.PositivePayRunLog"
            Dim DA As New SqlDataAdapter(strReportSQL, conPP)
            Dim DS As New DataSet
            'Variable to assign the report name
            Dim strReportPath As String
            DA.Fill(DS)
            strReportPath = "c:\Positive Pay\PositivePayRunLog.rpt"
            If Not IO.File.Exists(strReportPath) Then
                _ErrorText = "Unable to locate report file:  " & strReportPath
                ' Throw (New Exception("Unable to locate report file:" & vbCrLf & strReportPath))
                GoTo cmdRunLog_Click_Error
            End If
            Dim rptDocument As New CrystalDecisions.CrystalReports.Engine.ReportDocument
            rptDocument.Load(strReportPath)
            rptDocument.SetDataSource(DS.Tables(0))
            rptDocument.Refresh()
            CrystalReportViewer1.ShowRefreshButton = False
            CrystalReportViewer1.ShowCloseButton = False
            CrystalReportViewer1.ShowGroupTreeButton = False
            CrystalReportViewer1.ReportSource = rptDocument
end sub
I'm hoping that this is a common problem with an easy answer
Thanks,
John Sandin

>
Jason Everly wrote:
> Did you design the report using OLEDB or ODBC instead of against the schema of the dataset you are passing?  It could be seeing data from the database when browsing.
>
> Technically you should design the reports against the schema of the dataset you are going to be passing, not against ODBC or OLEDB.
>
> You can usually get away with passing datasets to a report created against OLEDB, but if issues occur then you need to redesign them against the ds schema.
>
> Jason
I have done both, but I was currently using OLEDB.
I redesigned the report to use a dataset containing the correct data.  Now,  when I browse the fields, I see nothing.  When I preview the report, I see what appears to be dummy data (a list of colors, etc).
But the GOOD news is:  When I run the report in the application, I see the correct data!
Thanks!  I think I'm good to go now.  I will also apply the other suggestions, and try to simplify things.

Similar Messages

  • Visual Studio 2005 deploy Crystal Report to Windows Server 2008 64-bit

    I've read a lot of posts here regarding deploying on a 64-bit server, but I'm still confused.
    We use Visual Studio 2005 to develop on a Windows XP machine.  We use the built-in version of Crystal that comes with VS2005. 
    We want to deploy the runtime to a Windows Server 2008 running 64-bit.  We want to deploy using the msi runtime components and not the merge modules.
    We end up with the message "An error has occurred while attempting to load Crystal Reports". 
    So, the question is, can we build & deploy a 64-bit version, and if so, what are we doing wrong here ?  At first glance, I don't see VS 2005 as listing Windows 2008 as a supported platform, so am I dead in the water right there ?  If that's the case .... then what are my options ?
    Any help or pointing me in the right direction would be greatly appreciated !
    Thank You,
    Wayne

    In a nut shell, the only two 64 bit versions of Crystal Reports are 10.2 (bundles with .NET 2005) and 10.5 (bundles with .NET 2008). All other versions of Crystal Reports are 32 bit only. For more info see [this|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/10d5fa88-2013-2c10-c9a5-f11963607d4e] article.
    Ludek

  • Sub report parameter prompt appears when running Visual Studio 2008 with Crystal Reports 2008

    Post Author: relliott
    CA Forum: .NET
    If I build a simple Crystal Report that contains another simple Crystal Sub Report, the report will print preview fine in Crystal 2008.  The problem happens when add this report to a Visual Studio 2008 Web Application Project and I build and debug the application, the Crystal Viewer is prompting the user for the parameter used to link the sub report to the main report.  This should never happen as the user is not supposed to see this parameter.  If I type in some value for this sub-report parameter prompt, the Crystal Report Viewer gives an error message about not finding the field.
    I was having the same problem in Vs2005 with Crystal 10 which is why I upgraded.  Business Object's official fix for this problem was published under their KB article number c2018840 and c2019047.  These hot fixes ended up causing general exception errors in Visual Studio so I scrapped these solutions.
    Support had me install SP0 for Crystal 2008 (which did not fix it).
    Any ideas?
    Any help is greatly appreciated.
    Thanks,
    Rich Elliott

    Hi Bontrager,
    Thank you for posting in MSDN forum.
    According to your description, I agree with pvdg42's suggestion, so I suggest you can try pvdg42's suggestion to install the version of
    Crystal Reports 10.5 to check this issue again.
    Reference:
    http://forums.asp.net/t/1236730.aspx?Which+CR+version+is+in+Visual+Studio+2008+
    In addition, since this forum is
    to discuss: Visual Studio WPF/SL Designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System, and Visual Studio Editor. So if you have any issue about the
    Crystal Reports, I suggest you can ask the issue to the
    SAP Crystal Reports website:
    http://scn.sap.com/community/crystal-reports/content?filterID=contentstatus%5bpublished%5d~objecttype~objecttype%255bthread
    as pvdg42 pervious suggestion, it will be better support.
    Thanks for your understanding.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Visual Studio 2008 using Crystal Reports 2008

    I'm trying to pass parameters to a Crystal Reports 2008 rpt file but keep getting a runtime message saying "Missing Parameter Values".
    Has anyone experienced this problem?
    Does anyone have a snippet of code where values are being passed from C#.Net to a crystal 2008 report.
    Thanks in advance....

    Hi Steven,
    You can select version and  download code samples from [here|https://boc.sdn.sap.com/codesamples]
    Here is code for parameters :
            string Reportpath = Server.MapPath("CrystalReport.rpt");
            ParameterFields boParameterFeilds = new ParameterFields();
            ParameterField boParameterFeild = new ParameterField();
            ParameterValues boParametervalues = new ParameterValues() ;
            ParameterDiscreteValue boParameterDiscreteValue = new ParameterDiscreteValue();
            ParameterRangeValue boParameterRangeValue = new ParameterRangeValue();
             CrystalReportViewer CR;
             CR =  new CrystalReportViewer();
             CR.ReportSource = CrystalReportViewer1.ReportSource;
             boParameterFeilds = CrystalReportViewer1.ParameterFieldInfo;
             boParameterFeild = boParameterFeilds["Country"];
             boParametervalues = boParameterFeild.CurrentValues;      
             boParameterDiscreteValue = new ParameterDiscreteValue();
             boParameterDiscreteValue.Value = "Canada";
             boParametervalues.Add(boParameterDiscreteValue);
            boParameterDiscreteValue.Value = "USA";
            boParametervalues.Add(boParameterDiscreteValue);
            boParameterFeild = boParameterFeilds["sales"];
            boParametervalues = boParameterFeild.CurrentValues;
            boParameterRangeValue.EndValue = "10000";      
            boParameterRangeValue.StartValue = "25000";
            boParametervalues.Add(boParameterRangeValue);     
            CrystalReportViewer1.ParameterFieldInfo = boParameterFeilds;        
    Hope this helps !!
    Regards,
    Shweta

  • Crystal report for visual studio 2005 dblogin problem

    Dear Sir,
    I am using Visual Studio 2005 and crystal reports for visual studio 2005 and sql server 2000.
    When I am running the project from my pc where it was developed and a local server with server authentication, report is opening but from client machine there is a new screen come before opening the report asking for login issue. my reports has subreports
    also.
    I am using dsn file to connect with server from crystal reports where dsn file contains as follows:
    [ODBC]
    DRIVER=SQL Server
    UID=sa
    PWD=sa
    DATABASE=HRISDB
    WSID=S-AGD-PAY01\HRSERVER
    APP=Microsoft Data Access Components
    SERVER=S-AGD-PAY01\HRSERVER
    so it is dynamic bcoz i need change server name sometimes.  my question is when same report want show user from their pc then below screen appears:
    database login
    server Name: C:\program files\HRIS\HRISDB.dsn
    Databse: HRISDB
    user id:
    PassworD:
    Integrated Security: it is checked and a finish button.
    (i am sorry bcoz screenshort is not attaching so I write above what in the diagloag box for you)
    then i need to uncheck the use integrated security and click finish then the reports come. THis is very annoying for my clients.
    Please help me how can I overcome it.
    It is mentionable that I didn't use any dblogin method in my code to like setdbloginforReport(). I think there is no problem bcoz the report show correctly. Just want to know how to overcome this screen.

    You know, this forum is for controls, apis, components for the user interface Windows Forms.
    Unlucky enough, Microsoft does not support Crystal reports anymore for many years.
    Try the Crystal reports forum for .Net
    http://scn.sap.com/community/crystal-reports-for-visual-studio 
    Success
    Cor

  • Crystal Report Dll problem with Visual Studio 2005

    I am using Crystal Reports with Visual Studio 2005. At one time there were two different version of Crystal Decision Dll in Global Assembly Cache (GAC). So I uninstalled both the versions and then only installed 10.2.3600.
    I am facing the following error when building my application in visual studio.
    The type 'CrystalDecisions.CrystalReports.Engine.ReportDocument' exists in both 'c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\arms website\301a5b02\e03ad7d9\assembly\dl3\c30f5560\00f92427_3857ca01\CrystalDecisions.CrystalReports.Engine.DLL'
    and
    'c:\WINDOWS\assembly\GAC_MSIL\CrystalDecisions.CrystalReports.Engine\10.2.3600.0__692fbea5521e1304\CrystalDecisions.CrystalReports.Engine.dll'
    I have only installed it in .Net Framework. For some reason it appears in the temp folder. I cannot delete it and when I renamed it after the next compile it came back again.
    I would appreciate any help.

    Thanks for the tip.
    I installed CR XI R2 with SP2 and 2.1
    There are few reports in the system they use to run fine but now when I try to run them I get the following error:
    Failed to open the connection. Details: [Database Vendor Code: 4060 ] Failed to open the connection. C:\DOCUME1\SSheikh\LOCALS1\Temp\ZGA370 {71BFCD35-F652-48C8-896D-B93229A4D2C2}.rpt Details: [Database Vendor Code: 4060 ]
    I understand that these reports run ok independently and on production machine as well; however when I try to run them from my development machine I get the above error.
    I would appreciate help to resolve this. The code of the report is with report developer and I need to know what settings do I need to change where to be able to run the reports. Also I use my machine for deployment of application on the production server.
    Thanks.

  • Limited features for crystal reports in visual studio 2005

    Post Author: jag
    CA Forum: .NET
    Hello All,
    I have problems in finding solution for the following problems in line graph in crystal reports in visual studio 2005.
    1)Cant customize the colour of line in the line graph. (line by series only i wanted not by group)
    2)Cant customize the width of line.
    3)Cant customize the line style display.
    4)Cant customize the trend line or target line.
    Can you please help in resolving these problems....
    Do i get any extended crystal report software for visual studio 2005 to get all features in crystal reports 10 r 11 versions?
    Do you recommend 3dgraphics macros is better and economical to get extended features of crystal reports in visual studio 2005?
    Can anyone please help me..iam in need of these solutions urgently....
    Thanks in advance for your time......cheers

    Post Author: Argan
    CA Forum: .NET
    I am not really familiar with all of the options for charting and what is or isnt in the bundled version.
    You can download the CR XI R2 developer edition eval from the website and see if it gives you the graph options that you want.  If it does then I think you can buy it at an upgrade price since you already have the bundled edition.

  • 156" width Crystal Report with Visual Studio 2005

    Post Author: kunchesm
    CA Forum: .NET
    Hi,
    I have a requirement to design a 156" width report (for exporting to Excel). And naturally i dont have printers to support this huge width reports (as these reports are not used for printing but just for exporting to Excel).
    One of the option which i have tried to design these reports is -
    - Installed MIcrosoft XPS Document writer and
    - Created a new server form (in Printers&Faxes>File>Server Properties) and assigned my custom width & Height for the paper size as per my requirement
    - Used this printer and form in my crystal report
    Now, my question... is there any better alternative or option to design huge width Crystal reports in Visual studio 2005? Any help in this regard is highly appreciated!
    Thanks & Regards
    ksm

    Hi Ganesh,
    So it all depends on how you created your WEB Project. If it was a CR Web App then no issues, if it was a WEB Form app then no issues except you need to copy the whole folder: C:\inetpub\wwwroot\VS2013WebsiteCR\aspnet_client
    to your app folder, maybe...
    If it was an empty WEB app then it may be an issue with permissions ( more on this soon once we do some testing, R&D may have provided a work around to get IIS Express to work, not sure about using IIS directly.
    Also search on Sessions and PostBacks, to get the second page you need to keep the session open/active. If not you may get nothing ot the same page everytime.
    Don

  • No images when deploying Crystal Reports for Visual Studio 2005

    Post Author: wcl
    CA Forum: Publishing
    Developed a ASP.Net web site that uses Crystal Reports for Visual Studio 2005, everything works fine locally.
    Following instructions from  http://support.businessobjects.com/downloads/merge_modules.asp#07 a deployment package has been created using CrystalDecisionsRedist2005_x86 merge module and the website has been installed.
    When it is deployed to a remote development server the report images are not displayed.  The report navigation works, it is the images that are not found when the report is displayed.
    Should the vs2005 key be entered some where on the remote server?

    Post Author: wcl
    CA Forum: Publishing
    Thnakyou very much for your quick reply.
    The directory has not been created by the merge module,  which folder should it be created in and what contetants should it have?
    <-edit>
    an example of an image it can not find is "/aspnet_client/System_Web/2_0_50727/CrystalReportWebFormViewer3/images/toolbar/upd.gif",  so does the folder '/aspnet_client/System_Web/2_0_50727/CrystalReportWebFormViewer3' need setting up?
    </edit>

  • Print crystal report viewer in visual studio 2005

    please help me.i installed visual studio2005 with web crystal report viewer.i create web site and installed that on windows server 2003 sp1 and iis7. user in etwork connect to server on remote desktop and execute web site. in my project user print resume . for doing that: i used stored procedure for getting information and pass to report document and it shows in crystal report viewer. for doing that i used printtoprinter(1,false,1,1)
    it shows correct but it shows this error :operation completed successfully and can not print. all printers are shared and all of them are hp 1018.
    this program print correct on my standalone system with printer hp deskjet 1220c.
    please help me.i spent a lot of time and i could not solve that.please please please help me.

    Please re-post if this is still an issue to the .NET Development - Crystal Reports Forum or purchase a case and have a dedicated support engineer work with you directly

  • XL Reporter - microsoft Visual Studio 2005 Premier Partner Edition

    Hi,
    When I right client a Report Definition and click Edit or Generate Report, I receive a pops up message (title Microsoft Visual Studio 2005 Premier Partner Edition) that "The feature you are trying to use is on a CD Rom or other removable disk that is not available'
    I did no installed Microsoft Visual Studio 2005 Premier Partner Edition.  So, I have no idea where that comes from, unless, it is supposed to be included in XL Reporter installation in order to run with Patch 36.
    I am using SAP 2005A SP1 Patch 36, XL Reporter Patch 29.  Anyone encounter that?

    Additional info, here is prerequisites before installation of XL :
    1. Your workstation has a minimum of 256 MB RAM (512 MB is recommended).
    2. The processor of your workstation is a Pentium III or higher.
    3. You have installed Microsoft Excel on your workstation. The following versions are supported:
    • Microsoft® Excel 2000 (SP 1 or higher is required.)
    • Microsoft® Excel 2002 (SP 1 or higher is required.)
    • Microsoft® Excel 2003 (SP 2 or higher is recommended.)
    4. You have installed Microsoft® .NET Framework 1.1 and Microsoft® MDAC 2.7 or higher.
    You can download both Microsoft .NET Framework 1.1 and Microsoft MDAC 2.7 or higher from www.microsoft.com. For more information on how to check for version information, see SAP Note 903032.
    Disclaimer: SAP is not responsible for the content of external websites.
    Is there any relation ship between .net framework with VS 2005 ? I think when installing SQL 2005, it is included VS and .net framework.
    Rgds,

  • Problem while Adding the SAP Web service in Visual Studio 2005

    Hi all,
    I have created the web service thru SOAMANAGER.
    Now I am just trying to access that web service in Visual Studio 2005.
    I am not able to access...
    Please give me the procedure , if any body knows.
    -Balajee Jeyaraj.

    - Start Tcode SOAMANAGER
    - Now it depends on your setup, you might have to press "Logon" and.......logon
    - Click tab "Business Administration"
    - Click "Web Service Administration"
    - Choose "Service" for "Search by"
    - Enter a search pattern (E g Z*) and press "Go"
    - Mark the line of your web service
    - Press "Apply Selection"
    - Click the link "Open WSDL document for selected binding"
    - your web browser opens.
    - copy and paste the link into Visual Studio.
    I'm always adding    &wsdl=1.1     at the end of the link.

  • Crystal report problem

    Post Author: ranganadhkodali
    CA Forum: Authentication
    Dear Group Members,
    I have a vary big problem with crystal report XI edition, I am
    unable to find the cause of the problem actually.
    I am using Crystal Report XI Developer version to build
    reports in my development system, which I am, using SQL server 2005 as a
    backend database and u201CUn-Typedu201D Pull
    model for generate reports, in that my system those are working very good.
    For distribute those reports to the other clients, I was
    prepared one small windows application in .net and I placed one shared
    directory. Application will show all report files placed under the shared
    directory by the user selection.
    If User selects one report, I am taking the selected report
    from the shared directory and open with the .net embedded crystal report
    viewer, while opening I was filling the
    server login information(By code itself).
    Any way application also working very well in my development
    system, for deploys this application I added crystal report redist package that
    is came with the visual studio 2008.
    When I run the same application, in deployed
    system, it showing login database dialog with empty database name, and one more
    thing is that database text box also showing like disable. So even I unable to
    give database credential with in dialog. I donu2019t understood what is the cause
    of the problem?
    Almost same problem was happen before 4 months back for some
    other project, @ that time I rebuild my report with the PUSh model, and it
    working well. But this case, I donu2019t have a chance to do like that, because daily
    I should generate some kind of reports, needs of management. That management
    staff will check reports from with that my distributed application. For these
    all things, I canu2019t rebuild and redistribute my application every time if I add
    new report. So that I placed one shared folder and, I keep update all changed
    reports files in that shared folder, my application will show them.
    What is the cause of the problem?
    Is it problem with connection? Then it should not work with
    in my development system also
    Then it probably problem with the deployment? Then I am able
    to view the initial report, problem came only when I refresh the data?
    If problems with deployment, then how it is works for push type reports, it giving problem
    for only pull type reports?
    thanks and regards Ranganadh Kodali

    Please visit:
    www.geocities.com/pmk16
    Regards,
    pmk16

  • Query Engine Error in Visual Studio 2005

    Post Author: Chris K
    CA Forum: Crystal Reports
    I created a report in Crystal 11 and have included it in a project created in Visual Studio 2005.  When I try to run the report in VS I get the message: "Query Engine Error: 'Error Code: 0x' Failed to open a rowset.  Error in File"  I can run the report in Crystal without any errors.  The report has subreports and parametes.  I am using a stored procedure in SQL 2005.  I have included may other reports in this project and not had any problems.  Any suggestions?

    Post Author: gandasi
    CA Forum: Crystal Reports
    I had an issue that sounds very similar - report worked beautifully in Crystal, but "failed to return rowset" when run from my application (which is not VS2005, but in my case that didn't matter).
    Turns out that I had not given execute rights to the stored procedure to the public group in SQL server. I guess when running the report in Crystal it was using my Windows Authentication to logon or something which was why that was running OK.
    I explicitly set the permissions on the stored proc to grant public execute, and the report would run from my app.
    Hope this helps
    Cheers

  • ODT 11.1.0.6.20 doesn't work under Visual Studio 2005 server explorer

    I tried to connect to an Oracle Server by Server Explorer of Visual Studio 2005:
    1) In Server Explorer I click with right mouse button on Data Connections and choose Add Connection...
    2) I click on Change...
    3) I choose Oracle Database in the left list
    4) I choose Oracle Data Provider for .NET under the bottom left drop down list called Data provider (I see .NET Framework Data Provider for Oracle and .NET Framework Data Provider for OLE DB too)
    5) Instead of the dialog window shown at this link [http://www.oracle.com/technology/obe/net11gobe/building.net/images/addconn04.gif] I see the dialog window shown at this other link [http://img231.imageshack.us/img231/8212/wrongvisualstudio2005se.png]
    6) If I try to insert a right connection string or simply click on OK I receive this message box: "An unexpected error occurred in the .NET Framework Data Provider for Oracle. Please contact the provider vendor to resolve this problem."
    If I try to redo all the operations I cannot see anymore the Oracle Data Provider for .NET under the bottom left drop down list called Data provider.
    My system configuration is:
    - Windows XP SP2 32Bit
    - Oracle 11g ODAC 11.1.0.6.21 with Oracle Developer Tools for Visual Studio (I installed all the packages with Instant Client too, the client works I tried with SqlPlus and Sql Navigator 6.1)
    - Visual Studio 2005 Version 8.0.50727.762 (SP.050727-7600)
    - .NET Framework 2.0.50727
    I can use .NET Framework Data Provider without any problems, but I need the new ODT 11.1.0.6.20 because I can insert stored procedures into .NET dataset visual designer and call from a TableAdapter.
    I hope someone can help me.
    Edited by: user5476796 on 8-mar-2009 12.30

    I downloaded ODAC 11.1.0.6.21 recently (two weeks ago).
    I forgot to tell you that I have Visual Studio 2003 Enterprise Architect (Italian language) installed too and I installed ODAC for this version too.
    In Visual Studio 2003 under Provider Tab of the Database connection I don't see any Oracle Data Provider, the only one I see is Microsoft OLE DB Provider for Oracle.
    These are the whole info on my Visual Studio 2005 (English language) installation:
    Microsoft Visual Studio 2005
    Version 8.0.50727.762 (SP.050727-7600)
    Microsoft .NET Framework
    Version 2.0.50727
    Installed Edition: Professional
    Microsoft Visual Basic 2005 77626-009-0000007-41514
    Microsoft Visual Basic 2005
    Microsoft Visual C# 2005 77626-009-0000007-41514
    Microsoft Visual C# 2005
    Microsoft Visual C++ 2005 77626-009-0000007-41514
    Microsoft Visual C++ 2005
    Microsoft Visual J# 2005 77626-009-0000007-41514
    Microsoft Visual J# 2005
    Microsoft Visual Web Developer 2005 77626-009-0000007-41514
    Microsoft Visual Web Developer 2005
    Microsoft Web Application Projects 2005 77626-009-0000007-41514
    Microsoft Web Application Projects 2005
    Version 8.0.50727.762
    Crystal Reports AAC60-G0CSA4B-V7000AY
    Crystal Reports for Visual Studio 2005
    Microsoft Visual Studio 2005 Professional Edition - ENU Service Pack 1 (KB926601)
    This service pack is for Microsoft Visual Studio 2005 Professional Edition - ENU.
    If you later install a more recent service pack, this service pack will be uninstalled automatically.
    For more information, visit http://support.microsoft.com/kb/926601
    Oracle Developer Tools for Visual Studio 11.1.0.6.20
    Oracle Developer Tools for Visual Studio Copyright (c) 2005, 2007
    SQL Server Analysis Services
    Microsoft SQL Server Analysis Services Designer
    Version 9.00.3042.00
    SQL Server Integration Services
    Microsoft SQL Server Integration Services Designer
    Version 9.00.3042.00
    SQL Server Reporting Services
    Microsoft SQL Server Reporting Services Designers
    Version 9.00.3042.00
    Update for Microsoft Visual Studio 2005 Professional Edition - ENU (KB954961)
    This Update is for Microsoft Visual Studio 2005 Professional Edition - ENU.
    If you later install a more recent service pack, this Update will be uninstalled automatically.
    For more information, visit http://support.microsoft.com/kb/954961
    AnkhSVN
    Please visit http://ankhsvn.tigris.org for more information
    Below is the version information for the various AnkhSVN components
    AnkhSVN 1.0.1.2734
    OpenSSL 0.9.8a
    Neon 0.25.5
    ZLib 1.2.3
    Berkeley DB 4.4.20
    Subversion 1.4.2
    Ankh 1.0.1Final
    apr-iconv 0.9.7
    apr-util 0.9.12
    apr 0.9.12
    VMDebugger
    For more information about VMware Inc, see their website at
    http://www.vmware.com
    For customer support, call 1-800-xxx-xxxx.
    Copyright (c) 2006 VMware Inc Inc.
    And these ones are the info of Visual Studio 2003 Enterprise Architect ITA:
    Microsoft Development Environment 2003 Version 7.1.3088
    Microsoft .NET Framewrok 1.1 Version 1.1.4322
    Microsoft Visual Basic .NET 69529-112-0307713-18498
    Microsoft Visual C# .NET 69529-112-0307713-18498
    Microsoft Visual C++ .NET 69529-112-0307713-18498
    Microsoft Visual J# .NET 69529-112-0307713-18498
    Crystal Reports per Visual Studio .NET AAP50GS0000GTU000ME
    Microsoft Application Center Test
    Oracle Developer Tools for Visual Studio .NET 11.1.0.6.20
    Visual Studio Analyzer
    AnkhSVN
    Edited by: fradelpo on 11-mar-2009 4.16

Maybe you are looking for

  • Cannot publish from iweb to iweb website

    Had to format hard drive and re-install OS. Suspect domain file is gone? I can see my website on .mac - but it does not show on iweb. when i publish from iweb, it tells me it's been published, but no changes on .mac - any ideas? help!

  • Multipage word report using template

    Hello I am using the report generation toolkit and would like to use a template with the New Report.vi.  The problem is that my report is multiple pages and I have no way of knowing how many pages until after the report has been made and so I cannot

  • Crop and Place Question :o)

    Hi all, I've been looking for an answer to this for weeks so fingers crossed someone will be able to help me. I create textures using PS and when a pack is finished I create a 'cover' picture to use to sell the texture packs. They look something like

  • Question about "Linked" pictures and how to get rid of them?

    I have recently upgraded from a 2011 MacBook Pro to a 2013 MacBook Pro and there is a picture under Users & Groups when you go to change the display picture under "Linked" that I can't get rid of, while that isn't really an issue even though I would

  • Adobe Photoshop error U44M1P7

    I am trying to download adobe photoshop windows for a second time and I keep recieving an error message "Error update failed U44M1P7". I have downloaded the update and still recieve the same message.