Visual studio performance problem.

Asalam o alekom :
i use visual studio when i save changes in my  asp.net project it need to click CTRL+S three times to be saved and every time it take a little more time.

Hello,
This should be asked in Microsoft's ASP.Net forums:
http://forums.asp.net/
As Microsoft's ASP.Net forums are on a different platform, we cannot move the question for you.
Karl
When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
My Blog: Unlock PowerShell
My Book:
Windows PowerShell 2.0 Bible
My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

Similar Messages

  • Visual Studio 2013 problem setting localhost alias in IIS Express

    I'm trying to define an alias to localhost in development ambient in Visual Studio 2013.
    When I used previous versions of Visual Studio, I used the Visual Studio Development Server to debug and the only thing I needed to do was to change my hosts file adding this entry:
    127.0.0.1 localhost
    127.0.0.1 localhostalias
    I'm having problems to do this with VS2013. I've browsed all over the internet and I've tried the following things, but I'd like someone of you to tell me what am I doing wrong. I've obviously already changed the hosts file...
    In the web project Properties -> Web in the section Servers where IIS Express is selected as default, I tried changing http://localhost:53944 to http://localhostalias:53944 but an error is showed saying: "Unable to create the virtual directory. Cannot
    create the Web site 'http://localhostalias:53944'. You must specify "localhost" for the server name".
    I also tried changing the applicationhost.config which is located in <<Documents>>\IISExpress\config to 
    <site name="<<Site name>>" id="2">
    <application path="/" applicationPool="Clr4IntegratedAppPool">
    <virtualDirectory path="/" physicalPath="<<Site Path>>" />
    </application>
    <bindings>
    <binding protocol="http" bindingInformation="*:53944:*" />
    </bindings>
    </site>
    And when I opened the project it was changed to
    <site name="<<Site name>>" id="2">
    <application path="/" applicationPool="Clr4IntegratedAppPool">
    <virtualDirectory path="/" physicalPath="<<Site Path>>" />
    </application>
    <bindings>
    <binding protocol="http" bindingInformation="*:53944:*" />
    </bindings>
    </site>
    <site name="<<Site name>>(1)" id="3">
    <application path="/" applicationPool="Clr4IntegratedAppPool">
    <virtualDirectory path="/" physicalPath="<<Site Path>>" />
    </application>
    <bindings>
    <binding protocol="http" bindingInformation="*:53944:localhost" />
    </bindings>
    </site>
    Can someone help me?
    Thanks in advance,
    Camilo

    Hello Camilo,
    This forum supports  "setup and deployment of .NET Framework.", if there is something about the installation of .NET Framework, you can post it here. I read your post and I think you should post it under
    IIS forum instead.
    Regards,
    Barry Wang
    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.

  • ODT 10.1.0.2.0 on Visual Studio 2003 problem

    I have installed the ODT 10.1.0.2.0 on Microsoft Windows XP sp2, Visual Studio 2003 and database Oracle v9.2.0.7.0.
    I have create the example project like the example in http://www.oracle.com/technology/oramag/oracle/06-sep/o56odp.html, bat when I execute on the con.Open(); instruction I receive the error:
    "Eccezione non gestita di tipo "Oracle.DataAccess.Client.OracleException" in oracle.dataaccess.dll"
    "Informazioni aggiuntive: Errore di sistema."
    What's the problem?
    Thanks.

    Hi cshay,
    I've done what you asked me.
    When I don't check Tools -> Oracle Application Debugging, from the Visual Studio menu, there isn't ORA_DEBUG_JDWP in the environmental variables list of the devenv.exe process.
    When I check Tools -> Oracle Application Debugging, from the Visual Studio menu, there is ORA_DEBUG_JDWP in the environmental variables list of the devenv.exe process and his value is ORA_DEBUG_JDWP=host=XP175102;port=49152 .
    I've also tried to unset ORA_DEBUG_JDWP in the application code, in this case the devenv.exe process has ORA_DEBUG_JDWP=host=XP175102;port=49152, my application's process has ORA_DEBUG_JDWP without any value and OracleDebugger.exe process has ORA_DEBUG_JDWP=host=XP175102;port=49152. The application works without any errors, but I'm not able to debug oracle store procedure, it doesn't stop where I have set breakpoint.
    Bye.

  • Crystal Reports, version for Visual Studio 2010 Problem

    Dear all,
    I encounter a problem after installed the crystal report version for Visual Studio 2010. Once I call                              
                           ReportDocument.PrintToPrinter(1,False, 0, 0)
    The error message prompt:
    Report is unavailable(Index was out of range. Must be non-negative and less than the size of the collection. Parameter name:index)
    If I try
                             ReportDocument.PrintToPrinter(1,False, 1, 1)
    It can print the 1st page of the report.
    I also try to create a simple report. It works.
    After installed this version, my reports also encounter the same problem in Visual Studio 2008.
    My report has sub-reports. My PC is Windows XP.
    Anybody has idea on this issue!?

    Now you can set the various printer options using the PrintOutputController. I'm using a UI box to select the printer but your developer should be able to figure this out. If not you can include him in the e-mail, it would be fine to go direct. Of course you will stay in the thread:
         private void btnSetPrinter_Click(object sender, System.EventArgs e)
              System.Drawing.Printing.PrintDocument pDoc = new System.Drawing.Printing.PrintDocument();
                CrystalDecisions.ReportAppServer.Controllers.PrintReportOptions rasPROpts = new CrystalDecisions.ReportAppServer.Controllers.PrintReportOptionsClass();
              // Use the next line if you need to, you'll ahve to test. Depends on how the reports were saved.
                //CrystalDecisions.CrystalReports.Engine.PrintOptions.DissociatePageSizeAndPrinterPaperSize = true;
                //CrystalDecisions.ReportAppServer.ReportDefModel.ISCRPrintOptions.DissociatePageSizeAndPrinterPaperSize = true;
                //pDoc.DefaultPageSettings = pgSettings;
                PrintDialog dlg = new PrintDialog();
                dlg.Document = pDoc;
                if (dlg.ShowDialog() == DialogResult.Cancel)
                    MessageBox.Show("Cancel Button clicked", "RAS", MessageBoxButtons.OK, MessageBoxIcon.Information);
                    return;
                else
                    CrystalDecisions.ReportAppServer.ReportDefModel.PrintOptions MYPRTOpts = new PrintOptionsClass();
                    if (rdoCurrent.Checked)
                        pDoc.PrinterSettings.PrinterName = cboCurrentPrinters.Text;
                   // the next 3 lines may not be necessary.
                        MYPRTOpts.PrinterName = cboCurrentPrinters.Text;
                        MYPRTOpts.PaperSize = (CrPaperSizeEnum)
                            pDoc.PrinterSettings.PaperSizes[cboCurrentPaperSizes.SelectedIndex].Kind;
                        MYPRTOpts.PaperSource = (CrPaperSourceEnum)
                            pDoc.PrinterSettings.PaperSources[cboCurrentPaperTrays.SelectedIndex].Kind;
                        MYPRTOpts.PaperOrientation = CrPaperOrientationEnum.crPaperOrientationLandscape;
                        //MYPRTOpts.PageMargins.Bottom = .1;
                        //MYPRTOpts.PageMargins.Top = .1;
                        //MYPRTOpts.PageMargins.Left = .1;
                        //MYPRTOpts.PageMargins.Right = .1;
                    else
                        pDoc.PrinterSettings.PrinterName = cboDefaultPrinters.Text;
                        MYPRTOpts.PrinterName = cboDefaultPrinters.Text;
                        MYPRTOpts.PaperSize = (CrPaperSizeEnum)
                            pDoc.PrinterSettings.PaperSizes[cboDefaultPaperSizes.SelectedIndex].Kind;
                        MYPRTOpts.PaperSource = (CrPaperSourceEnum)
                            pDoc.PrinterSettings.PaperSources[cboDefaultPaperTrays.SelectedIndex].Kind;
                    rptClientDoc.PrintOutputController.ModifyPrintOptions(MYPRTOpts);
                    //MessageBox.Show("Printer set.", "RAS", MessageBoxButtons.OK, MessageBoxIcon.Information);
                    rptClientDoc.PrintOutputController.PrintReport(rasPROpts);
                    //MessageBox.Show("Printing report.", "RAS", MessageBoxButtons.OK, MessageBoxIcon.Information);
    Thank you
    Don

  • Visual Studio 2013 problem during develop basic SharePoint-hosted app

    Hi,
    i am begginer in developing Sharepoint apps using Visual studio 2013.
    I followed this instructions http://msdn.microsoft.com/en-us/library/fp142379.aspx for creating a basic SharePoint-hosted app.  
    When i tried to build my application (Step 10 in create and deploy your first Sharepoint-hosted app) i got the following error: 
    Error occurred in deployment step 'Install app for SharePoint': Sideloading of apps is not enabled on this site.
    What is the problem?
    thanks, Aphrodite

    http://blogs.msdn.com/b/josrod/archive/2013/02/04/quot-sideloading-of-apps-is-not-enabled-on-this-site-quot.aspx
    In order to publish a SharePoint hosted app to a site collection the site must be based on the developer site template or have the “Developer” Feature enabled on it.  The “Developer” Feature is marked as hidden in its definition so you must use PowerShell
    to enable the Feature. 
    Enable-SPFeature e374875e-06b6-11e0-b0fa-57f5dfd72085 –url
    http://sp.contoso.com
    Also check below:
    http://blogs.msdn.com/b/officeapps/archive/2013/12/10/enable-app-sideloading-in-your-non-developer-site-collection.aspx
    If this helped you resolve your issue, please mark it Answered

  • Where is the forum that is belongs to visual studio installation problems?

    Where is the forum that is belongs to visual studio 2013 installation problems?
    ->NH Kom<-
    My Website > System History > http://bit.ly/sys-his
    My App > Quick Links > http://bit.ly/quick-links
    My App's Website > http://bit.ly/quick-links-app

    They're over here.
    http://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=vssetup&filter=alltypes&sort=lastpostdesc
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • Visual Studio Compiler problem

    Hi guys,
    I'm trying to run the compiler for Microsoft Visual Studio 2005 as part of OPNET but receive this error when I try to run a simulation:
    "comp_msvc: Unable to execute compiler (Win32 error code: 2). Check that Visual C++ has been installed correctly, and that its BIN directory is included in the Path environment variable."
    My PATH environment variable has all the required directories, including BIN.
    Has anybody seen this before? Anybody know how I fix this?
    Any help would be appreciated. Cheers.

    I also experienced this, and the solution is in the environment settings are done.
    example
    C: \ Visual8 \ SDK \ v2.0;
    Initially I enter it in the environment, apparently because of the visual layout of my studio is in program files, so I changed my envorionment seleuruh related to visual studio installation into
    C: \ Program Files \ Microsoft Visual Studio 8 \ VC;
    Hope it helps

  • Visual Studio License Problem

    I have downloaded the Visual Studio COBOL version 2012.  When I attaempt to open a new project or an existing project I get a license error ' Unable to establish product license ' and the process completes without opening the project.  Please
    advise.

    Is this the product you are talking about?
    https://visualstudiogallery.msdn.microsoft.com/2dc18b05-6375-4eee-b511-476e8815115f
    If so, I suggest you ask about your issue in the Q and A tab at the link above.
    As stated in the description, this is a third party product from MicroFocus.
    I believe the license reference is for the license for the MicroFocus product, not VS. Here is their contact page:
    https://www.microfocus.com/forms/contactus.aspx

  • Is it possible to see a file that has been downloaded on running visual studio webtest.?

    Hi There,
    I'm not sure if this is the right place to post the query :)
    I'm new to visual studio performance testing. I created a webtest script using Visual Studio Ultimate 2013 for downloading a .pdf from a website. I gather from the response bytes that the script is doing its job.
    My question is where could I find the .pdf file if it is getting downloaded? or is it not downloading the file physically.
    Appreciate your support. Many thanks in advance. 
    Renjith

    I would not expect the file to be saved automatically in a web test. The file's contents will be in the "bodybytes" and "bodystring" of the relevant HTMLO response. So you can write some file writing code in a plugin.
    Here is a version of the plugin that I have used:
    public override void PostRequest(object sender, PostRequestEventArgs e)
    string body = e.Response.BodyString;
    if (body == null)
    e.WebTest.AddCommentToResult("No response PDF");
    else if (string.IsNullOrWhiteSpace(body))
    e.WebTest.AddCommentToResult("PDF is empty");
    else if (e.Response.BodyString.StartsWith("\x0d\x0a%PDF"))
    string fileName = "The_response.pdf");
    int bodyLength = e.Response.BodyString.Length;
    File.WriteAllBytes(fileName, e.Response.BodyBytes);
    string message = string.Format("PDF of {0} bytes written to file {1}", bodyLength, fileName);
    e.WebTest.AddCommentToResult(message);
    else
    e.WebTest.AddCommentToResult("Unknown file contents");
    Regards
    Adrian

  • Problems running .aspx and aspx.vb in DW (pages work correctly in MS Visual Studio 2013)

    I'm very confused and surprised I can't seem to find any postings on this problem. It's very peculiar so stay with me: I've designed a VB .Net webpage called Regstration_Form.aspx in Visual Studio 2013 (which is tied to a second form, Registration_Form.aspx.vb which contains the active visual basic script that processes data entered on the .aspx page). I've tested this page in Visual Studio 2013, AND IT WORKS AS IT IS SUPPOSED TO...the webpage looks clean, accepts the data entered on the page, and the buttons execute the visual basic script from the .aspx.vb page flawlessly. 
    NOW, I've designed an html website in Dreamweaver CS6 with multiple (passive) .html pages, and I want to integrate the .aspx/.aspx.vb pages with the others in Dreamweaver now that I have them working in VS 2013.  After all, Dreamweaver let's me (and proclaims to) save files as aspx files and support their functionality.  It seems to me I should be able to simply move them in to the Dreamweaver folder for the website (along with the config file in the root), but...here's what happens:
    (1) when I test run the aspx page from Dreamweaver, the browser webpage shows the html code in black-and-white (code view). It does not display the actual webpage.
    (2) (even weirder) If I change the .aspx page extension to .html, the browser (correctly) shows the webpage I've designed. BUT, now when I click the "submit" button to perform the active tasks (again, which work in VS 2013), the webpage changes from the correct webpage shown only moments earlier to now SHOWING THE ASPX.VB CODE.
    Put another way, dreamweaver displays html code if the page is .aspx, and displays .aspx.vb code if the .aspx page is changed to .html. Either way, my aspx pages are not being executed correctly by Dreamweaver, despite working perfectly well in VS 2013 and I cannot figure out why.
    I have enabled IIS on my computer.
    I have placed the config file in the root.
    I have enabled .NET functionality in Dreamweaver's "disabled features" folder.
    I'm stumped...does anyone have any ideas?
    Thanks!

    I don't work with ASPX sites.  But PHP sites need a local testing server defined in DW.
    Nancy O.

  • Problem with "View project-level information" permission when accessing build definition in Visual Studio Online

    Hi, 
    from some time all our team members are experiancing problems when acsessing list of builds on Visual Studio Online or when trying to edit build definition in Visual Studio. Error message suggests problem with missing View project-level information permission:
    "TF50309: The following account does not have sufficient permissions to complete the operation: XXXXXXXX. The following permissions are needed to perform this operation: View project-level information."
    I've checked permissions of my User account and Group. "View project-level information" is set to Allow on both levels. We didn't make any changes in security configuration recently. Does anyone faced similar problem?
    Short term solution was to add all users, to Project Collection Administrators Group, but it is not what we would like to live with.

    It seems that the problem was fixed and Project Collection Administrators permissions are no longer required. Great :-)

  • Problem on Windows 7 Home Premium cant open program for using codes like visual studio 2012

    I have problem my windows 7 Home Premium because of visual studio 2012..I can't open even in several times, I don't know what happen, and sometime it is so low to process whenksn it to open my laptop..Why is that pleas do reply..ASAP! tha

    Hi,
    According to your description, it seems like VS itself problem, you can try to repair this program through Control Panel for test. If no use, it would be better to post your question at VS forum for further assistance.
    Contact VS forum:
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/home?category=visualstudio%2Cvsarch%2Cvsdbg%2Cvstest%2Cvstfs%2Cvsdata%2Cvsappdev%2Cvisualbasic%2Cvisualcsharp%2Cvisualc
    Roger Lu
    TechNet Community Support

  • Installation Problem Visual Studio Express 2013 for Web on Windows 8.1

    Hi,
    I am new to Microsoft developing tools and I have spent the last two days trying to install VS Express 2013 for Web on my laptop that's running windows 8.1 (X64,Intel
    Core i5 3337U (1.80GHz)).
     I run it as an administrator and have enough space on the disk. However, I keep on getting the same error. 
    Microsoft Visual Studio Express 2013 for Web - ENU Fatal error during installation.
    After uninstalling and deleting the temp files, I get an additional error.
    Entity Framework 6.1.1 Tools for Visual Studio 2013
    User cancelled installation.
    In my log files here are some of the problems that I saw:
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\WebFrameworksTools\Servicing\5.0\VisualStudio12'; variable = 'AspNetWebFxTools_VS2013_Version'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\WebFrameworksTools\Servicing\5.0\VWDExpress12'; variable = 'AspNetWebFxTools_VWD2013_Version'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Classes\Installer\Dependencies\Microsoft.VS.Bliss_Core,v12'; variable = 'bliss_core_DetectKeyExists'
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'bliss_core_DetectKeyExists' to value 0
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Policies\Microsoft\SystemCertificates\AuthRoot'; variable = 'DisableRootAutoUpdate'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft Corporation\DataFxTools\12.0.0.0'; variable = 'EFTools_2013_VersionKey'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Help\v2.1\Setup'; variable = 'help3vs_49_DetectKey'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Help\v2.1\Setup'; variable = 'help3vs_49_DetectKeyExists'
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'help3vs_49_DetectKeyExists' to value 0
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'IEsvcVersionExists' to value 1
    [0354:1418][2015-02-23T13:55:12]i000: Setting string variable 'IEsvcVersion' to value '11.0.9600.17631'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\SystemCertificates\AuthRoot\Certificates\3B1EFD3A66EA28B16697394703A72CA340A05BD5'; variable = 'MicrosoftRootCertificateAuthority2010AuthRootExists'
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'MicrosoftRootCertificateAuthority2010AuthRootExists' to value 0
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'MicrosoftRootCertificateAuthority2010RootExists' to value 1
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\SystemCertificates\AuthRoot\Certificates\8F43288AD272F3103B6FB1428485EA3014C0BCFE'; variable = 'MicrosoftRootCertificateAuthority2011AuthRootExists'
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'MicrosoftRootCertificateAuthority2011AuthRootExists' to value 0
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'MicrosoftRootCertificateAuthority2011RootExists' to value 1
    [0354:1418][2015-02-23T13:55:12]i000: Setting string variable 'netfxfullredist_43_CBSValue' to value '1'
    [0354:1418][2015-02-23T13:55:12]i000: Setting string variable 'netfxfullredist_43_DetectKey' to value '4.5.51641'
    [0354:1418][2015-02-23T13:55:12]i000: Setting string variable 'NetFxFullRedist_InstalledRelease' to value '378675'
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'NetFxFullRedist_InstalledReleaseExists' to value 1
    [0354:1418][2015-02-23T13:55:12]i000: Setting string variable 'OS_BuildNumber' to value '9600'
    [0354:1418][2015-02-23T13:55:12]i000: Setting string variable 'ssceruntime_x64_msi_DetectKey' to value '4.0.8876.1'
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'ssceruntime_x64_msi_DetectKeyExists' to value 1
    [0354:1418][2015-02-23T13:55:12]i000: Setting string variable 'ssceruntime_x86_msi_DetectKey' to value '4.0.8876.1'
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'ssceruntime_x86_msi_DetectKeyExists' to value 1
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\SSDT\12.0\1033'; variable = 'ssdt_lang_detect_enu'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vs\Servicing\12.0\teamExplorerCore'; variable = 'teamExplorercore_DetectKeyExists'
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'teamExplorercore_DetectKeyExists' to value 0
    [0354:1418][2015-02-23T13:55:12]i000: Setting string variable 'VSComponentPathVariable' to value ''
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Updates\Microsoft Visual Studio 2013\vsupdate_kb2829760'; variable = 'vsupdate_DetectKey'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Updates\Microsoft Visual Studio 2013\vsupdate_kb2829760'; variable = 'vsupdate_DetectKeyExists'
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'vsupdate_DetectKeyExists' to value 0
    [0354:1418][2015-02-23T13:55:12]i000: Setting string variable 'webdeploy_x64_en_usmsi_902_DetectKey' to value '9.0.1764.0'
    [0354:1418][2015-02-23T13:55:12]i000: Setting string variable 'webdeploy_x86_en_usmsi_901_DetectKey' to value '9.0.1764.0'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Web Tools\Visual Studio 12'; variable = 'WebTools_VS2013_VersionKey'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Web Tools\Visual Studio 2013'; variable = 'WebTools_VS2013_VersionKey_2'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Web Tools\Visual Studio Express 12 for Web'; variable = 'WebTools_VWD2013_VersionKey'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Web Tools\Visual Studio Express 2013 for Web'; variable = 'WebTools_VWD2013_VersionKey_2'
    The last line of my log file contained this:
    [0354:1418][2015-02-23T14:02:26]i399: Apply complete, result: 0x80070643, restart: None, ba requested restart:  No
    I really need to have this up and running as soon as possible. Any help would be greatly appreciated. 
    Thanks!

    Hi,
    By the errors:
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\WebFrameworksTools\Servicing\5.0\VisualStudio12'; variable = 'AspNetWebFxTools_VS2013_Version'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\WebFrameworksTools\Servicing\5.0\VWDExpress12'; variable = 'AspNetWebFxTools_VWD2013_Version'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Classes\Installer\Dependencies\Microsoft.VS.Bliss_Core,v12'; variable = 'bliss_core_DetectKeyExists'
    It maybe a registry or administrator issue.
    Please install VS with administrator.
    What's more, it maybe a corrupt registry issue. And you can't install any version of Visual Studio, I think you can use the tool to fix problems that programs cannot be installed or uninstalled. It also can fix the corrupted registry keys.
    http://support.microsoft.com/mats/program_install_and_uninstall/en-us
    Best Wishes!
    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. <br/> Click <a
    href="http://support.microsoft.com/common/survey.aspx?showpage=1&scid=sw%3Ben%3B3559&theme=tech"> HERE</a> to participate the survey.

  • Crystal Report 13 Visual Studio 2010 SQL Server 2008 R2 ODBC Problem

    Hi Everybody,
    I am new in Crystal Report.
    I developed a web application in Visual Studio 2010, and my Database is SQL Server 2008 R2.
    I created reports using Crystal Report 13 in Visual Studio and my Operating System is Windows 7 32-Bit.
    I used ODBC Connection System DNS for my application.
    It is running fine even after Hosting on my local PC.
    But it creates problem when hosted on my Team Leader PC and Test Server.
    Their Configurations are same but only difference is "SQL Server 2008" Not R2
    The Error I am getting is "Failed to open the connection".
    When I Host the same on my another team member PC, I am getting the error like
    "Failed to open the connection. Details: [Database Vendor Code: 4060 ] Database Connector Error: ' [Database Vendor Code: 4060 ]' Failed to open the connection. Failed to open the connection. TestVr {CE268132-D2BD-43EC-BE45-0BCD847FBCDA}.rpt Details: [Database Vendor Code: 4060 ]"
    I tried various solution to fix this bug.
    But i am unable to do this and not getting any idea to fix this issue.
    If anyone can guide I will be thankful to him.
    All suggestions are appreciable.
    Thank you

    Hi,
    Please use the top right search box. for ex below search which will return many useful kb's, articlea and forum threads where simillar issues are discussed.
    [http://www.sdn.sap.com/irj/scn/advancedsearch?query=failedtoopentheconnection|http://www.sdn.sap.com/irj/scn/advancedsearch?query=failedtoopentheconnection]
    Most probably the issue is missing database client driver / provider.
    Install the driver used to connect the rpt to the db on the server and then create a 32 bit DSN with the same name as the dev machine..
    Hope this helps,
    Bhushan.

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

Maybe you are looking for

  • How to display a screen in selection-screen?

    hi friends, I have a requirement. I have one PNP database SELECTION-SCREEN in my report program. And i have created one more screen using screen painter. Now i hae to display that screen which i created using screen painter under PNP SELECTION-SCREEN

  • Homepage verizon yahoo has small size and print but ok with other browsers and other web sites ok

    The home page comes up reduced size with small print.Can not get it to change with minimize-maximize clicking.Works okay with other browsers. All other web pages ok including email.Using windows 7

  • Kernel Update to 3.10.9-1 Causes HIDs to load slowly.

    After preforming the latest kernel update (3.10.9), all of my USB keyboards and mice load after ~10 minutes. Here is the snipped dmesg output: [ 99.570290] usb 5-1: device descriptor read/64, error -110 -- SNIP -- [ 114.769866] usb 5-1: device descri

  • Can't install software that came with new Canon A540 digital camera

    The installation process gets as far as "preparing to install imagebrowser" then hangs up the whole computer until I force quit. When I force quit, I see the installer plus a "master installer" in red that says it is not responding. I really would li

  • Add 1 hour to a batch a photo?

    In the case I gather pictures from different cameras, and that all the cameras are not at the same time, is it possible to add/substract 1(or more) hour/minute and modify the metadata? I use to use ACDSee wiht my PC but I am wondering whether iPhoto