Wine Tricks: No "MS Visual C 2005 Runtimes" (Warcraft 3)

Ok, so I am trying to get warcraft 3 to work. It installed fine, but then when I went to play the game, it said it couldn't find the cd (even though it is in) I head over to the wineHQ site ( http://appdb.winehq.org/objectManager.p … n&iId=3126 ) and sure enough it says i will get the error unless I install: MS Visual C 2005 Runtimes with wine tricks.
So I download the winetricks, but I am looking down the list of programs you can install, and "MS Visual C 2005 Runtimes" is not on the list. There are some MS Visual C++ libraries, but those didn't help.
So either I am missing something that is obvious, or someone screwed up...
I installed everything that started with Microsoft Visual and it still doesn't work.
EDIT: I just went and downloaded the file from the M$ site:
http://www.microsoft.com/downloads/deta … 9c36f85647
I then did "wine vcredist_x86.exe". The error still occurs.
Last edited by Dethredic (2009-02-12 00:25:09)

How about patching the game with the latest patch (1.22a) ?
One of the changes is that the cd is no longer required to play the game

Similar Messages

  • Installation of Microsoft Visual C++ 2005 C Runtime and its impact

    Dear All,
    I am working with a client, and as a prerequisite, Microsoft Visual C++ 2005 C Runtime has to be installed on the client's servers in order for one of our products to work. 
    Since at the moment the client do not have this installed on their servers, and the fact that their servers have not been rebooted in a long time, they feel that there is a risk in installing Microsoft Visual C++ 2005 C Runtime if rebooting the server
    is required.
    Could anyone provide me with some insight into the following:
    1. If there is any impact on the OS (Windows 2003 R2) or the IIS (version 6.0) or any other MS products or applications by installing  Microsoft Visual C++ 2005 C Runtime
    2. If any common library will be written into during the installation and what is the impact
    3. If the server has to be rebooted after the installation
    4. What is an appropriate procedure for rollback (is it simply uninstalling “Microsoft Visual C++ 2005 C Runtime” and would a reboot of the server be required after the uninstall, etc.)
    Would anyone be able to provide any insight on the above?
    Many thanks in advance.

    1. Use reliable backup and preserve return path.
    2. Do pilot test on computer that is not part of your enterprise.
    3. Consider applications that may have different versions of MSC libraries. Here I can se the possible problem.
    Regards
    Milos

  • [IDCS3 WIN] Visual Studio 2005 SP1

    Hi Folks,
    Has anyone had success using Visual Studio 2005 SP1 to compile and run CS3 plug-ins?
    I'm having a troubles running ID CS3 plug-ins complied with Visual Studio 2005 SP1 and running under Windows Vista. I know SP1 is not officially supported, but I had it installed. Before I go through the downgrade dance, I would like to know if downgrading has a chance to solve this issue...
    The plug-in runs fine on Windows XP SP2 on the machine on which I compiled the plug-in. The plug-in does not run on a Windows Vista machine on which no compiler is installed.
    So, I have complied the BasicPanel project, and when run on a Windows Vista machine (of which I only have access to one), I get the following error (as seen in the Configure Plug-ins window for the plug-in). Plug-in Information window's Errors section reads:
    LoadLibrary failed. The application has failed to start because its side-by-side configuration is incorrect. Please see the application event log for more detail.
    After reading through a bunch of online information about this error, I'm still as confused as ever (I'm more comfortable with Mac than Windows). It seems like (maybe?) there might be an issue with the dlls that ID has installed versus the ones that my complied plug-ins are interested in. Maybe VS2005 SP1 has newer dlls than are installed in ID CS3 and that's where the trouble lies?
    Can anyone here shed any light on this for me?
    Thanks in advance!!!!!
    -- Jim

    Hi All!
    I create plug-ins for InDesign CS2 using Visual Studio C++ 2005 Expres Edition.
    The plug-in runs fine in the computer that the VS C++ 2005 ED is installed.
    But I get this error in computers where there is no VS C++ 2005 ED intalled:(xp sp2)
    LoadLibrary failed. The application has failed to start ...
    Thanks to your posts I come to the solution that installing,
    Visual C++ 2005 Redistributable Package (x86) on the machine that has no VS C++ 2005 ED intalled, really solved the problem.
    My Question is Has Any one solved the problem without having to install the Redistributable Package.??
    I read something about the manifest but I'm confused.
    Geting VS C++ 2003 really solves the problem, but It's hard for me to find I Licenced copy.
    Thank you!

  • How to get string value from database table using Visual Studio 2005?

    Hi,
    Im developing plugin in illustrator cs3 using visual studio 2005. I need to get the values eneterd in database. Im able to get the integer values. But while getting string values it is returning empty value.
    Im using the below code to get the values from database table
    bool Table::Get(char* FieldName,int& FieldValue)
        try
            _variant_t  vtValue;
            vtValue = m_Rec->Fields->GetItem(FieldName)->GetValue();
            FieldValue=vtValue.intVal;
        CATCHERRGET
        sprintf(m_ErrStr,"Success");
        return 1;
    Im using the below code to get the values.
    AIErr getProjects()
        char buf[5000];
        int i;   
        std::string  catName;
        ::CoInitialize(NULL);
        Database db;
        Table tbl;
        errno_t err;
        err = fopen(&file,"c:\\DBResult.txt","w");
        fprintf(file, "Before Connection Established\n");
        //MessageBox(NULL,CnnStr,"Connection String",0);
        if(!db.Open(g->username,g->password,CnnStr))
            db.GetErrorErrStr(ErrStr);
            fprintf(file,"Error: %s\n",ErrStr);
        fprintf(file, "After Connection Established\n");
    if(!db.Execute("select ProjectID,ProjectName from projectsample",tbl))
            db.GetErrorErrStr(ErrStr);
            fprintf(file,"Error: %s\n",ErrStr);
        int ProjectID;
        int UserID;
        int ProjectTitle;
        char ProjectName[ProjectNameSize];
        if(!tbl.ISEOF())
            tbl.MoveFirst();
        ProjectArrCnt=0;
        for(i=0;i<128;i++)
            buf[i]='\0';
            int j=0;
        while(!tbl.ISEOF())
            if(tbl.Get("ProjectID",ProjectID))
                fprintf(file,"Project ID: %d ",ProjectID);
                ProjectInfo[ProjectArrCnt].ProjectID = ProjectID;
                sprintf(buf,"%d",ProjectID);
                //MessageBox(NULL, buf,"f ID", 0);
                j++;
            else
                tbl.GetErrorErrStr(ErrStr);
                fprintf(file,"Error: %s\n",ErrStr);
                break;
            //if(tbl.Get("ProjectTitle",ProjectName))
            if(tbl.Get("ProjectName",ProjectName))
                MessageBox(NULL,"Inside","",0);
                fprintf(file,"ProjectTitle: %s\n",ProjectName);
                //catName=CategoryName;
                ProjectInfo[ProjectArrCnt].ProjectName=ProjectName;
                //sprintf(buf,"%s",ProjectName);
                MessageBox(NULL,(LPCSTR)ProjectName,"",0);
            else
                tbl.GetErrorErrStr(ErrStr);
                fprintf(file,"Error: %s\n",ErrStr);
                break;
            ProjectArrCnt++;
            //MessageBox(NULL, "While", "WIN API Test",0);
            tbl.MoveNext();
        //MessageBox(NULL, ProjectInfo[i].ProjectName.c_str(),"f Name", 0);
        ::CoUninitialize();
        //sprintf(buf,"%s",file);
        //MessageBox(NULL,buf,"File",0);
        fprintf(file, "Connection closed\n");
        fclose(file);
        for(i=0;i<ProjectArrCnt;i++)
            sprintf(buf,"%i",ProjectInfo[i].ProjectID);
            //MessageBox(NULL,buf,"Proj ID",0);
            //MessageBox(NULL,ProjectInfo[i].ProjectName.c_str(),"Project Name",0);
        return 0;
    In the above code im geeting project D which is an integer value. But not able to get the project name.
    Please some one guide me.

    As I said in the other thread, this really isn't the place to ask questions about a database API unrelated to the Illustrator SDK. You're far more like to find people familliar with your problem on a forum that is dedicated to answering those kinds of questions instead.

  • Getting "Couldnot find Installable ISAM" error in script task in SSIS 2005 when trying to open (.xlsx files) Excel 2007-2010 files using VB script in Visual Studio 2005

    Hi Experts,
    I am trying to open .xlsx file in script task of SSIS 2005. I am using the 32-bit AccessDatabaseEngine driver with the Connection string as "Provider= Microsoft.ACE.OLEDB.12.0; Data Source=xlsx file path; Extended Properties="Excel 12.0 Xml;
    HDR=YES"" in script task.
    When we debug the VB script in Visual Studio 2005 and encounters the statement app.open() it throws the error "Couldn't find installable ISAM".
    My SQL server version is 2005 SP2 DE
    OS is Windows server 2003 EE SP2
    Could anyone please let me know what is the resolution for this error?
    Thanks and Regards,
    Adesh

    Hi Adesh,
    First, make sure the package runs in 32-bit runtime mode (set Run64BitRuntime property to False) because you are using the 32-bit ACE OLE DB Provider. If it is not the case, the issue may occur due to the corrupted drivers or registry keys. You can try to
    reinstall the 2007 Office System Driver: Data Connectivity Components as Arthur suggested.
    Regards,
    Mike Yin
    TechNet Community Support

  • 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

  • OCI 9.2 libraries with Visual studio 2005

    I have a project which uses OCI version 9.2 to connect to the database. We are planning on upgrading the compiler from Visual Studio 2003 to Visual Studio 2005. Can we still use the same libraries or do we need new library versions compatible with the new compiler. If yes, where can I access the new libraries.
    TIA
    Bharat

    I've gotten OCI programs written in C using vs.net 2005 to work with Oracle 9i.
    However, a library written in C using vs.net 2005 fails to work from a C# 2005 program. It causes a C runtime failure. I have no idea why.
    But the same C library and C# program using vs.net 2003 works (ie. can successuflly connect to Oracle).

  • Error 1935 when try to install Microsoft Visual C++ 2005 Service Pack 1 for Windows 8.1

    When I install Grand theft auto IV true steam as the game requires Visual C + + 2005 but get an
    error message During The Installation 
    Error 1935 An error occurred During The installation of assembly 'Microsoft VC80 CRT.type = "win32."
    Version = "8.0.50727.4053". Public Key Token = "1fc8b3b9a1e18e3b." Processor architecture = "amd64" 
    And the game will not start without this package, I have tried downloading various 2005 + + + none
    of the versions have worked, I've also tried to install in safe mode but it did not work either. I have only 2010 + + + and 2012 + + + on the PC, I've tried to delete them and reinstall but 2005 sp1 does not work get the same error
    message, does anyone have a solution to this, searched the whole Google but there is not much information just for us who use windows 8.1, i got all the latest updates for win 8.1, Help appreciated I'm getting crazy.

    Sounds more like you may need the redistributable libraries rather than the Visual C++ development environment.
    http://www.microsoft.com/en-us/download/details.aspx?id=3387
    http://www.microsoft.com/en-us/download/details.aspx?id=18471 (64 bit)
    There also appears to be a security update...
    http://www.microsoft.com/en-us/download/details.aspx?id=14431
    -Noel
    Detailed how-to in my eBooks:  
    Configure The Windows 7 "To Work" Options
    Configure The Windows 8 "To Work" Options

  • Can VC 2005 Runtime SP1 patch be installed for Adobe Premiere V4?

    I have an HP Media Center PC (2005) running XP-Media Center. Have about 98 GB memory left.  I am trying to finish a slide show in Adobe Premiere Elements 4.0. Have run into the same Microsoft Visual C++ Runtime Library error that I see a lot of people are having with different Adobe programs. I am sort of an intermediate user and am wondering if and how I should try to install VC 2005 Runtime SP1 patch. I get confused trying to read about installing it and uninstalling prior versions etc.
    I have tried reinstalling my Premiere program and when it shows it is installing the library the light doesn't blink on my DVD tray.  Making me think that it must not be working on that section of the CD. Hope someone can help.

    Bernice,
    Thanks for the info. If you have Scaled the images to match, or nearly so, the Project's Frame Size, you have ruled that out.
    Now, a little bit of background. While certain "memory functions," like Windows Virtual Memory (Page File) do relate to "memory," the HDD is separate from RAM, which will be installed chips on the MoBo. Within some guidelines, there can be similarities, but in most, they are different.
    As for the pixel x pixel dimensions, your Project will have a Frame Size, say 702 x 480 for an NTSC DV Project. The pixel x pixel dimensions of your stills can be gathered from the Info Panel, with a still Selected, or from a program, like Photoshop/Photoshop Elements.
    Glad to hear that you defrag often.
    As for the Page File size, with a 32-bit OS, then I normally go with a static Page File (so it's the same size all the time), and at about 2x, or 2.5x that of my installed RAM.
    I do agree that Adobe's T/S could be improved upon, and they claim to be working on that. I have seen improvements, but they ARE slow. That is the way it is in a major corporation. Often, good things take so very much time.
    Hope that the forum can help you get this resolved.
    Good luck,
    Hunt

  • How to compile AnyConnect API with Visual Studio 2005?

    Gooday,
    I have downloaded anyconnect-win-vpnapi-2.5.3055.zip and am unable to build successfully examples.sln on a Windows XP SP2 platform. I would appreciate help in how to build examples.sln sucessfully. I get the following errors depending on the type of build using Visual Studio 2005 with service pack 1:
    1. Debug configuration for all - "Fatal error C1900: mismatch between 'P1' version '20060201' and 'P2' version '20050411'
    - appears a static lib file is out of date?
    - i downloaded and used as is so don't know how else to resolve it
    2. Release configuration for all - "Fatal error C1047: The object or library file '.\Release\PrivateApi.obj' was created with an older compiler than other objects; rebuild old objects and libraries' "
    Thanx,tom.

    You duplicated Java_Test_getWord. The function signature should read:JNIEXPORT jstring JNICALL Java_Test_getWord(JNIEnv *env, jobject obj) Regards

  • Visual Studio 2005 with SP1 for Windows 7 - 64 bit

    Hi,
    I am trying to install Visual Studio 2005 on a 64-bit platform (Windows 7). The version in about section reads Version 8.0.50727.42
     (RTM.050727-4200)
    I need to install the Service Pack 1 for Visual Studio 2005 but the installer available is for 32 bit (VS80sp1-KB932232-X86-ENU.exe)
    This does not install on 64 bit system. 
    How do I get Visual Studio 2005 with SP1 installed ? 
    P.S- On the network I work on, I can see a Windows 2008 (64 bit) system with the version of Visual Studio 2005 that reads  Version
    8.0.50727.762  (SP.050727-7600) but I dont know how that was installed. Any help would be
    appreciated.
    Thanks,
    Wilson 

    Hello WillisB,
    I think your concern is the name X86 here. Actually Visual Studio is x86 version and we do not have a x64 version Visual Studio. So if you install Visual Studio on X64 version, it is also available. And when you see this page
    http://www.microsoft.com/en-hk/download/details.aspx?id=7524 You can see the system requirements:
    Supported Operating System
                        Windows 7; Windows Server 2008; Windows Server 2008 R2; Windows Vista                
    Processor/RAM: 
    Vista hardware requirements.
    Required Software:  licensed copy of a Visual Studio 2005 and Visual Studio 2005 Service Pack 1.
    So please don't mind the name x86, the update can still be installed on Win 7 x64.
    By the way, to install Visual Studio 2005 on Win 7, please check YiChun's post on this thread:
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/f75d8ff2-bed4-473b-bc9c-6faf78c5d83a/installing-visual-studio-2005-pro-on-windows-7-pro-64bit?forum=vssetup
    "To apply Visual Studio 2005 on Windows 7, please check the following points step by step:
    - Download Visual Studio 2005 SP1 and install it
    Visual Studio® 2005 Express Editions Service Pack 1
    Visual Studio® 2005 Service Pack 1 for Standard or above edition
    - Download
    Visual Studio 2005 Service Pack 1 Update for Windows Vista and install it
    - When launch Visual Studio 2005, please run it with administrator privileges
      (Right-click the icon >> "Run as Administrator")"
    By the way, Visual Studio 2005 is out of our mainstream support, what about change to use some new version of VS? For example, Visual Studio 2013 Community version.
    Best regards, 
    Barry
    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 2005 crashes when referencing ALI 6.5 portal server API

    Visual Studio 2005 crashes when referencing ALI 6.5 portal server API
    We are building new portlets in .NET 2.0 to that access the ALI 6.5 server API and are experienceing the folowing scenario:
    I create a brand new project in Visual Studio (2005 with SP1 on Win2k3 R2 SP2) using the ALI Portal Project template that is provided with the application accelerator 1.1. This portlet will need to perform portal server searches so I begin by adding references to the following assemblies from C:\bea\alui\ptportal\6.5\bin\assemblies:
    openconfig.dll
    opencounters.dll
    opencache.dll
    openhttp.dll
    openssl.dll
    opentempfile.dll
    plumtreeserver.dll
    ptportalobjects.dll
    I then type in something like below to start up the portal server objects.
    protected void Page_Load(object sender, EventArgs e)
    IOKContext context = OKConfigFactory.createInstance("C:\\bea\\alui\\settings\\", "portal");
    PortalObjectsFactory.Init(context);
    this.Response.Write("Portal Objects Initiallized");
    Some moments later Visual Studio will crash. It has happened before I have entered any code, after I have started typing code and on builds. It seems intermittent but usually occurs within a minute of interacting with this Visual Studio project. I actually managed to build once and have had success accessing this page in Explorer to validate the portal server objects are getting initialized and referenced correctly.
    I thought this was a problem with my personal development environment. So I tried this on other machines: another Win2k3 ALI 6.5 dev portal server and another server with Visual Studio 2005 that I installed the 6.5 portal on just for testing this. The exact behavior listed above is occurring on three development machines here (crashing devenv.exe when portal references are made or loading a project with portal references). Since this does not seem to be isolated to a single development machine, is there any course of action that anyone would suggest to help solve this?
    thanks,
    Troy Rackley

    It turns out that this is only a problem with Visual Studio using the ALI templates or creating any projects using the "New... Web site" functionality of 2005. I was a ble to create a C#... ASP.net Web Application project and add the references to the idk and the local portal server APIs manually without devenv.exe crashes.
    So, the work around I have found if your projects needs to access both the portal server API and the remote API is to create the project with:
    New... Project... Visual C#... ASP.NET Web Application
    and NOT
    New... Web Site... ASP.NET Web Site (or ALI Portlet Project)
    Anyone know why this is the case?
    Thanks.
    Troy

  • 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

  • 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.

  • 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.

Maybe you are looking for

  • Pls help me.. unable to get past mac login sreen!!

    Hello people, This is my first post and after much searching i am praying someone can help..! I have a mac g5 dual, and i am having a really annoying problem, my mac keyboard is not working, sometimes some of the keys work but others dont, or none of

  • Replication of Equipment from R/3 to CRM

    Hi Experts I am writing because i have a problem in the replication of the equipment from R/3 to CRM. I can replicate the equipment well, but some information is missing in the transfering. Example: In R/3. Tx. IE03, The tab SerData have the Customer

  • MacBook Pro -Touchpad & Keyboard Frozen - Can't Unlock

    After last using my 13" MacBook Pro, I closed the lid to put it into sleep mode.  When I opened it back up the next morning, I get the screen display, but both the touchpad and the keyboard are frozen.  I can't type in my password and thus can't full

  • Firefox won't load on Mac and I have tried everything.

    Updating firewall settings, deleting old profile and creating new, reset FF, did the IPv6 thing. HELP!!!

  • IE9 and Flash Player issues..

    I have already tested my player and it is techincally working however instead of being in the correct place on the page - every site I go to with flash - the images end up in the top left corner displaying incorrectly. Does anyone have any idea how t