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

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 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$_"}})

  • Type of license to be purchased for Visual Studio 2013 to be used with Visual Studio Online Subscription

    Dear Sir/Madam,
    For commercial use, I have subscribed for Visual Studio Online. To work with .NET code on my local machine, what type of Visual Studio license do I need to purchase/install locally. It gives me two options to download on home page. 1) Visual Studio
    2013 Community Edition 2) Visual Studio 2013 Ultimate Edition
    I am more interested to that can I use "Visual Studio 2013 Community Edition" with VS Online subscription for commercial use? If not then what type of Visual Studio edition do I need to purchase to use with VS Online subscription?
    Thank you
    Uday

    Hi,
     For Best answer to your question, i would suggest you contact a Support Professional from the Microsoft Billing Department.
     You can create a free Support ticket for the same here :
    http://azure.microsoft.com/en-in/support/options/
     Or you can also contact a Microsoft Licensing Specialist : 1-800-426-9400, Monday through Friday, 6:00 A.M. to 6:00 P.M. (Pacific Time)
    Regards,
    Nithin Rathnakar.

  • Visual Studio licence required?

    Is it possible to use the Oracle tools with one of the "free" Visual Studio distributions?  If so, could it be used as an alternative development environment for SQL Developer?
    thanks,
    Michael

    Oracle Developer Tools will not work with Visual Studio Express Edition since that edition does not allow "Add-ins".
    So the answer is yes, you need a Visual Studio license to do what you are requesting. You can still use the Express Edition if you are only hand coding .NET code that uses ODP.NET.

  • Visual Studio Visual Basic 6.0 Professional - License

    Hi,
    As per the information available online, Visual Basic 6.0 is not supported by Microsoft. 
    Query: This product (Visual Basic 6.0 Professional) was being used with Windows XP and now as part of migration will be moved to Windows 7. Can you please confirm if we need license for this ?
    Thanks !
    Regards,
    Sunny.

    Hello Sunny,
    As you already see, VB 6.0 is not longer supported by Microsoft. And it is also not officially supported to be installed on Win 7.
    If you installed it on Win 7, we cannot provide you any help if you meet any problem. Not to say the licenses. It will be better for you to choose a version of Visual Studio that is supported on Win 7, like Visual Studio 2008, Visual Studio 2010 and
    so on.
    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 Online incorrectly assigns stakeholder licenses to MSDN subscribers

    We recently added on our Active Directory for Visual Studio Online. This has caused numerous challenges including a few folks with valid MSDN subscriptions stilling showing as stakeholders and thus preventing the ability to check in code. This has become
    so disruptive we started scaling licenses in Azure to be able to check in code.
    When I log into msdn.microsoft.com, I see the below error text. 
    Duration (Pacific Standard Time): <label id="datestart" style="margin:0px 10px 0px 0px;padding:0px;border:0px;outline:0px;line-height:14.9760007858276px;background:transparent;">Thursday, March 5, 2015 12:20:00
    PM</label>
    To (Pacific Standard Time): <label id="dateend" style="margin:0px 10px 0px 0px;padding:0px;border:0px;outline:0px;line-height:14.9760007858276px;background:transparent;">Friday, March 6, 2015 7:00:00 AM</label>
    Impact:
    - There may be intermittent service interruptions
    User Action:
    - We are working to get this issue resolved. Thank you for your patience.
    This message is incomplete and I do not know if the challenges we are facing are related to the outage.
    What is the current MSDN downtime problem and where can I go to get more detail in the future?
    Any ideas why our eligible MSDN subscribers are still showing as stakeholders (if not related to the MSDN downtime problem)?

    Hi smmullen,
    Since this thread is more related to Visual Studio Online, I will move it to the right forum for a better response. 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.

  • License - crystal report for visual studio 2010

    Hi Engineers
    i have a licensed version of visual studio 2010. but vs 2010 not included crystal report. i had download crystal report from SAP website,
    My question is
    if i deployed my .net windows application to my customer ,  take any license for crystal report for visual studio 2010 version?????????.
    crystal report for visual studio 2010 is a free version for developement and deployement???????????? tell me please
    If its not a free version tell me the price for crystal report for visual studio 2010 version.
    tks Engineers
    A.Lemudhas

    I'm still having problems with this registration issue.
    I'm using InstallShield 2011 for the installation setup.
    I've included the CRRuntime_13_0.msm file.  (That is the only MSM file I included, are the others needed also?)
    I've included the Microsoft Visual C++ 2005 SP1 Redistributable Package (x64 and the x86 versions)
    I have tried to do a test install on both a 64bit and a 32bit Windows 7 computer and it keeps giving me the crtslv.dll failed to register error on both computers.  I thought it might just be due to the 32 bit MSM causing the problem on the 64bit computer, but I can't even get it to install on a 32bit computer.  (On the 32bit computer, I even removed the x64 bit version of the MS C++ 2005 Redistributable just to make sure it wasn't causing a problem).
    Can anyone give me any more suggestions?
    I need our application to be installed on both 32bit and 64bit computers.  Is only having the 32bit MSM going to cause me problems?  I'm not real familiar with trying to include the runtime exe's instead of the MSM and knowing which one would need to be installed on a particular type computer.

  • The license for Visual Studio has expired.

    Hi everybody,
    Well, that's the thing. We were using VS2013 Professional with a Microsoft License, but one month ago, an advice was sent to my e-mail telling me that the license that we were using will expires in 30 days.
    We decide to remove it, and install the new VS13 Community edition. I've registered in visualstudio.com and everything works fine. The last week I began to implement my own script in order to compile automatically the project. The problem comes when once
    I call from my .bat file the vs compiler (devenv.com), my script spits me this pharagraph:
    Microsoft Visual Studio 2013 Version 12.0.31101.0.
    Copyright (C) Microsoft Corp. All rights reserved.
    The license for Visual Studio has expired.
    Class not registered.
    Looking for object with CLSID: {6C4024E7-5DEC-4EEC-B3F9-55B3F3AD1E9E}I think that some license file of my old VS2013 professional is still being referenced by the VS community, but I don't why.Has anyone suffered this kind of situation? Of course, I've removed the old vs2013 professional, and every related stuff, but something is going wrong.How can I remove every single license file of VisualStudio from my computer.Please Help!ThanksJuan,

    Hello Juan,
    “I think that some license file of my old VS2013 professional is still being referenced by the VS community, but I don't why.”
    It is possible that some shared components left on your OS, for example, please see here:
    https://support.microsoft.com/kb/2771441?wa=wsignin1.0
    So if you want to remove all components, please do the following:
    1. Use the /force command to remove Visual Studio fisrt, it will also remove shared components
    2. Refer to the tool
    http://blogs.msdn.com/b/astebner/archive/2005/07/01/using-msiinv-to-gather-information-about-what-is-installed-on-a-computer.aspx after you uninstalled VS. It will list all installed components on your OS, if you still find any VS related components, remove
    them by using the command msiexec /x <product code>.
    Then I think you've performed a clearn uninstall and please check whether you still get this error.
    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.

  • 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

Maybe you are looking for

  • After 6 months of no trouble, "this disk cannot be mounted"

    I've had a time capsule connected and working with my white MacBook for over 6 months. I'm at college, and when I disconnect my MacBook to go home and then come back, there has been no trouble getting the Time Capsule to work again. However, yesterda

  • Buttons in External SWF's

    Using Flash CS3 AS2.0 I need to know if it is possible to make a button in an external swf. file loaded in a Main .fla to link to another frame or label in another external swf. movie. If so, how do I do it? I have a main flash file for my website wi

  • Can I create my own logical unit of work (LUW)?

    Good day, everyone! This is an off-shoot to a Why does the NOCOMMIT parameter not work in HR_INFOTYPE_OPERATION? yesterday in this forum. It appears that the FM I'm calling is going to do a commit, no matter what.  The only thing I can tell is that t

  • K7pro Bios doesn't detect my DVD drive

    Hi, I'm very desapointed, so I try to contact directly the MSI home forum from France. I use a K7 pro (6195) since 4 years  + AMD Athlon 600 MHz 128 Mo ram and Win 98 2nd Ed I bought a TOSHIBA DVD driver SD M1612 a year ago Up to today, it was detect

  • Hashing denial-of-service attack -- is CF vulnerable?

    The recent announcement of major vulnerabilities in many web application platforms to a hashing DOS attack has much of the internets abuzz: http://arstechnica.com/business/news/2011/12/huge-portions-of-web-vulnerable-to-hashing-de nial-of-service-att