Difference between CR XI dev R2 and Visual studio 2010 CR

I have been working upon CR XI dev R2 which supports 64-bit application in 32 mode only. Now i want to switch to Visual Studio CR2010 to make our application a full fledged 64 bit application. So for upgrading from CR XI R2 to Visual Studio CR 2010 what features will i have to compromise. or i will put it this way " will CR2010 be worth enough (apart from being 64-bit) and does it supports all the features provided by CR XI dev R2"
Thanks

See the link at the top of this forum for more info on features and functionality

Similar Messages

  • How to manage connectivity between Oracle 11g &9i Database and Visual Studio 2010 professional in window 7

    Hi,
     I am not able to resolve the error of
    “ORA-12514: TNS:listener does not currently know of service requested in connect descriptor”
    Below Link is the indication,  related to that error.

    Hi Surbhi.Gupta,
    Thank you for posting in MSND forum.
    According to your descriptiom, I suggest you could try the following blog to connect to Oracle from Visual Studio check your issue again.
    Reference:
    http://blogs.msdn.com/b/kaevans/archive/2009/07/18/connecting-to-oracle-from-visual-studio.aspx
    In addition, as you said the error message, I did some research about this error message. So I suggest you could refer then following thread to check your error, maybe you will get some useful message.
    http://dba.stackexchange.com/questions/36370/oracle-11g-listener-fails-with-ora-12514-and-ora-12505-errors
    However, since this issue is related to the third-party database oracle, so if possible, I suggest you could try to post your issue directly to this Oracle official website:http://www.oracle.com/us/corporate/contact/about-your-account-070507.html
    , you will get 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.

  • Has anyone experienced check-in conflicts between RoboHelp 9 and Visual Studio 2010?

    Here's a description of what happens when I try to edit the properties of more than one Single Source Layout (SSL) in a single RoboHelp session:
    Open RoboHelp 9 project in Visual Studio 2010.
    Edit the properties of a SSL named "Layout A". When prompted by RoboHelp, check out the .SSL file.
    Save and generate the output.
    Edit the properties of the SSL named "Layout B". When prompted to check the .SSL out from version control, click Yes. RoboHelp displays the Cannot Complete Operation dialog box: “The files in the list below could not be checked out from version control. Exclusive access to these files is required to execute the selected action.”
    Shut down RoboHelp, re-open the project, and can then edit Layout B. I have to do this for each layout whose properties I edit.
    As an experiment, check the .SSL for Layout C out of Source Control (“Check Out – Prevent other users from checking out and checking in”), edit the properties of the SSL, and click Check In All from RoboHelp. In Source Control, the file shows as checked in; in RoboHelp, the SSL shows as checked out (the red check arrow appears to the left). Checking everything in from within RoboHelp does not check in the SSL for Layout C, and when I try to edit the properties for Layout D, the Cannot Complete Operation dialog box appears.
    Since I'm working with five SSLs, this problem is a nuisance (but not a showstopper). Should I be following a different process here?
    Thanks for any assistance.
    Chayah

    It seems I was a bit liberal with moving the libraries linked to in the instant client, i.e. copying the lib file and the depending .dlls to another location.
    Running the executable within the instant client directory with all dlls present solved this. I didn't realize this because DependencyWalker told
    me everything was fine.

  • RoboHelp 10 and Visual Studio 2010

    The company I work for is thinking about buying RoboHelp 10 to create an offline user help system for a WPF Ribbon Application being developed in Visual Studio 2010. I have been tasked with finding the recommended output format from RoboHelp 10 AND the best viewer for Visual Studio 2010. CHM output format is not an option. I have searched the web and found nothing that addresses both products. Does anyone know the best output format to use AND/OR what is the best viewer? Any / all suggestions will be greatly appreciated.

    Visual Studio does have its own ability to create a help file. Here's the home page of Paul O'Rear's blog. http://blogs.msdn.com/b/thehelpguy/ You will also find information at http://www.helpware.net. You need to research that to find out if that would suit. This is not the forum for that topic.
    Aside from that, the first issue is where is the help going to reside? If it is on a web server, then WebHelp would be an option. That can also be run locally but you may encounter some issues if you need links to PDF files. If the help is going to be installed locally, what's the objection to CHMs? In RoboHelp 10 they can be skinned to look like WebHelp.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Difference Between a WAS dev consultant and EP dev consultant?

    Can anyone point out the major difference between a WAS developer and an EP developer?
    I would like to know the Diff with respect to Role/Work each of them is supposed to handle.
    I am very new to EP, but a bit confused with WAS Consultant as a developer.

    HI,
    Refer the following links
    All the exams and the topics covered are given
    <a href="https://websmp209.sap-ag.de/~sapidp/011000358700002412512003">Link1</a>
    <a href="http://www.sap.com/services/education/certification/exams.epx#technology">Link2</a>
    check out the technology exams link

  • Crystal reports integration with sql server and visual studio 2010

    when I am trying to open a crystal report  through code ( visual basic 2010 ) I get the error
    the report has no tables
    I am using SQL SERVER 2008 R2
    HERE IS THE CODE I WROTE 
    Imports System.Data
    Imports System.Data.OleDb
    Imports CrystalDecisions.CrystalReports.Engine
    Imports CrystalDecisions.Windows.Forms
    Imports CrystalDecisions.Shared
    Public Class frmRep
        Dim objConnection As New OleDbConnection("Provider=SQLOLEDB;Data Source=ASHRAF-PC\SQLEXPRESS;Integrated Security=SSPI;Initial Catalog=TEST")
        Dim objDataAdapter As New OleDbDataAdapter()
        Dim objDataSet As New DataSet()
        Private Sub CrystalReportViewer1_Load(sender As System.Object, e As System.EventArgs) Handles CrystalReportViewer1.Load
        End Sub
        Private Sub frmRep_Load(sender As Object, e As System.EventArgs) Handles Me.Load
            Dim cr As New ReportDocument
            objDataAdapter.SelectCommand = New OleDbCommand()
            objDataAdapter.SelectCommand.Connection = objConnection
            objDataAdapter.SelectCommand.CommandType = CommandType.Text
            objDataAdapter.SelectCommand.CommandText = "select * from bands"
            objConnection.Open()
            objDataAdapter.Fill(objDataSet, "bands")
            objConnection.Close()
            cr.Load("D:\MY VB 2010 PROJECTS\test2\test2\CrystalReport1.rpt")
            cr.SetDataSource(objDataSet.Tables("bands"))
            CrystalReportViewer1.ReportSource = cr
            CrystalReportViewer1.Refresh()
        End Sub
    End Class

    I suggest you post that question in a Crystal Reports forum.
    Markus

  • How can I get Visual Studio 2010 to work with Crystal Reports?

    Hi,
    My office upgraded to Windows 7 and Visual Studio 2010 and now I can no longer write front end programs to Crystal Reports version 10.   Does anybody know if there is a a workaround?   Also, our version of Crystal Reports is 32 bit but the new desktop machine I have is 64 bit so there may be issues accessing the Crystal Reports DLLs which are now located in the Programs (x86) folder.
    It's all such a gigantic mess that I don't even know where to begin.   Visual Studio 2008 had Crystal Reports in it so it was real easy.
    Dave

    Try searching first before posting. CR for Visual Studio 2010 download is available on the OverView tab. It's a free install, we don't ship in VS now, it's still a plug in so you can't use VS 2010 Express version, MS doesn't support plugins in Express versions.
    Runtime files will be version 13 and should update your app without issues.
    Install VS 2010/2012/2013 first and then run the first link in the download page. Don't instlal just the runtime redist MSI, it will not integrate into VS.
    Also, set your Project for x86 and not any CPU and use the full .NET Framework and not the client version.
    Don

  • ??? SDK 9.1 only support visual studio 2005? SDK XI only support visual studio 2010? I thought that adobe is a top product that uses the latest technology? Am I wrong???? SDK 9.1 only support visual studio 2005? SDK XI only support visual studio 2010? ...

    ??? SDK 9.1 only support visual studio 2005? SDK XI only support visual studio 2010? I thought that adobe is a top product that uses the latest technology? Am I wrong?
    I want to develop a plugin for adobe acrobat 9+10+11 do I need “SDK 9.1 and Visual studio 2005” +“SDK 10 and Visual studio 2008” +“SDK 11 and Visual studio 2010”
    Can’t I develop this plugin with visual studio 2013?

    The SDK is produced when the version of Acrobat is released, so if you insist on using obsolete SDKs for obsolete Acrobat you can hardly criticise the Acrobat 9 SDK for being out of date.
    To develop for Acrobat 9 (obsolete)+10+11 you can use the Acrobat 9 SDK but it may require some work and expertise to get it to work in all versions. Get the other SDKs for reference.

  • What is the difference between project workflow activities UpdateProjectProperty and UpdateTextProperty in visual studion 2012?

    Hello All,
    What is the difference between project workflow activities 'UpdateProjectProperty' and 'UpdateTextProperty' in visual studion 2012?

    Hi,
    Both are developed with .NET framework, per my knowledge, the biggest difference would be the environment they applied to: one for Windows platform, one for SharePoint platform:
    http://msdn.microsoft.com/en-us/library/vstudio/ms733615(v=vs.90).aspx
    http://msdn.microsoft.com/en-us/library/office/ms446847(v=office.14).aspx
    Best regards,
    Patrick
    Patrick Liang
    TechNet Community Support

  • Difference between web reports created in WAD & Visual Composer

    Hi All,
    Can anyone tell me
    1.The Difference between web reports created in WAD & Visual Composer.
    2.The Webreports created in Visual Composer is availble for normal users(users not having Visual composer).
    3.how to create web reports & Publish using Visual composer.
    Waiting for results.
    ThanKs in Advance,
    Basava Raju

    hi james..
    Check these.
    WAD: http://help.sap.com/saphelp_nw2004s/helpdata/en/1a/456a3badc1b315e10000000a114084/frameset.htm
    VC: http://help.sap.com/saphelp_nw2004s/helpdata/en/42/c2ba7f545e3116e10000000a1553f7/frameset.htm
    Visual Composer is a model-driven development tool that allows business experts to create and adapt analytical and free-styled applications without writing code. Visual Composer 7.0 is the General Availability (GA) release; Visual Composer 6.0 introduced the freestyle model-to-code creation of analytical appli- cations and it was intended as a preview tool for evaluation purposes.
    Visual Composer now connects to SAP NetWeaver BI via a Remote Function Call (RFC) rather than a Web service connection. The resulting communication between the portal and SAP NetWeaver BI works faster, especially in cases of large query results. With these added functionalities, users can create more user-friendly, powerful analytical applications using Visual Composer, such as Executive Dashboards.
    Visual Composers Features -
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/9326072e-0c01-0010-bc97-f72e93338101
    New Features of Visual Composer 7.0
    Visual Composer 7.0 is part of SAP NetWeaver Portal in SAP NetWeaver 2004s. This release focuses on SAP Analytics and offers significant changes from the previous Visual Composer release. The most notable changes include:
    Visual Composer now runs on the Java 2 Platform, Enterprise Edition (J2EE) Engine of SAP NetWeaver Application Server (SAP NetWeaver AS). Therefore, you no longer need Internet Information Services (IIS) 5, Microsoft SQL Server 2000, and Microsoft .NET Framework.
    Visual Composer now can generate iViews for Web Dynpro (the SAP NetWeaver programming model for user interfaces) and Adobe Flash Player 8 or higher in SAP NetWeaver Portal. You can create Internet applications by integrating Adobe Flex Server and Web Dynpro.
    Visual Composer now integrates BI content from SAP or non-SAP systems using BI Java Connectors (part of BI Universal Data Integration 7.0).
    /message/3240694#3240694 [original link is broken]
    /message/2958672#2958672 [original link is broken]
    These are the links which i followed.
    https://www.sdn.sap.com/irj/sdn/visualcomposer
    http://www.sap.com/platform/netweaver/components/visualcomposer/index.epx
    http://help.sap.com/content/documentation/netweaver/docu_nw_vc.htm
    VC - Install and Configure guide
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/1d55042e-0c01-0010-e3a3-b009c445ee23
    Preparing to Use Visual Composer
    http://help.sap.com/saphelp_nw04s/helpdata/en/44/429c8b709914bce10000000a155369/content.htm
    hope it helps..

  • Difference between Oracle developer suite 9i and 6i

    Hi -
    Can I know what's the release difference between oracle developer suite 9i and 6i , and what's new in oracle discoverer 9i in compare with last version , we have discoverer version of 4.1...
    I could not able to get from metalink anything like new features in 9i deve;oper suite.
    Existing oracle financial application 11.5.8 have their forms and reports in 6i version.
    What impact will have if changed with new version of application 11.5.10 in future .

    Oracle Developer Suite 9i is now called Oracle 9iDS. Oracle also sells Oracle 9iAS. You need to license iAS in order to run application created using iDS.
    9i is fully J2EE compliant. It offers improved integration between components. Its much more feature rich than 6i. See:
    http://www.oracle.com/ip/develop/ids/
    for more information.
    what's new in oracle discoverer 9i in compare with last versionThis question is best asked in Discoverer Forum.
    What impact will have if changed with new version of application 11.5.10 in future Reports offers backward compatibility between 6i and 9i reports with a few exceptions. See Oracle Reports Obsolescence plan on OTN:
    http://otn.oracle.com/products/reports/htdocs/getstart/whitepapers/movingto9i.pdf
    Regards
    Sripathy

  • Difference between SAP BI 7.0 and SAP Business objects

    Dear All,
        I would like to know what is the difference between SAP BI 7.0 and SAP Business objects.What Advantage will we have if we implement sap business objects rather then SAP BI 7.0.WOur management wants to implement

    Hi,
    Strategies for better reports, queries, Web reporting, formatting, dashboards, cockpits, planning, and performance management
    advantages of BO
    Crystal Reports XI is the latest version of the report writer from Business Objects. Local reports guru David McAmis takes the new version for a spin.
    Most developers might know Crystal Reports from versions included in Studio, Visual Studio.NET, and other popular developer IDEu2019s such as BEA Workshop, C# Builder, Delphi 2005, JBuilder, WebSphere.
    In this latest installment both report and application developers have something to be excited about as there are a host of new features for report design and integration. Hereu2019s a run-down of what you can expect in this release.
    What's New in Xcelsius version 4.5
    Xcelsius now provides the following new components:
    Candlestick and OHLC Chart components
    The open-high-low-close and candlestick charts are primarily used to display stock data. Each marker corresponds to the four values, which are represented as lines attached to the marker on the OHLC chart and as colors on the candlestick chart. Open displays the opening price of the stock. High displays the highest price the stock achieved on that day. Low displays the lowest price the of the stock on that day. Close displays the closing price of the stock.
    For more advantages go through the below link
    http://www.crimson-consulting.com/marketing/experience/knowledge/white_papers/cognos_tco.pdf
    For BI go throug hthe below link
    http://www.elegantjbi.com/Why-Business-Intelligence-better/business-intelligence-advantage.htm
    Regards,
    Marasa.

  • Administration differences between an As Java system and an As ABAP system?

    Hi, I'm not that familiar with SAP systems that are As Java based only, so apologies in advance if I ask real stupid questions here!!
    Can someone please explain how one logs onto an As Java only system?... ie without the ABAP stack does one still use the SAP logon pad or am I getting confused here totally???
    Also how does one do transports in an As Java system?
    If you could send me a document that explains the main differences between an As ABAP system and an As Java system, particularly the differences in administrating these systems that would be very useful. My email address is [email protected]
    Many thanks
    Ash

    Hi,
    Can someone please explain how one logs onto an As Java only system?.
    You can login through browser, use NetWeaver Administrator for most of your activities. There is also Visual Administrator/ Config tool etc these have seperate GUIs.
    It would not be easy to list out the options but i suggest you read understand info from help regarding the details below so that you can administer Java servers:
    Visual Administrator
    NetWeaver Administrator
    Config tool.
    SDM
    With the knowledge of the tools above you can start of administrating Java servers.
    Also how does one do transports in an As Java system?
    You install Portal on Java server and then do transports. You should be having a system administration role.
    Please do a search in help.sap.com and you will find loads of data on WEBAS Java administration.
    Thanks & regards,
    Vijith

  • Difference between cleared items,open items and all postings (FI).

    Hi experts,
    Can anybody tell me the difference between cleared items,open items and all postings for an account.
    While running corresponding bapis and transaction FAGLL03 (for GL) or FBL1N (for accounts payable) i found that in some cases all postings is less than cleared items or open items for a time period. How could it happen.According to my knowledge all postings should contain cleared items and open items.
    Please correct me..
    Thanks and Regards
    Arjun

    Hi Arjun,
    For every Billing Documnet created(VBRK/VBRP-VBELN) there will be an accounting document created in BSID/BSAD tables.
    OPEN ITEMS means the Billed/Invoice Amounts that are pending from Customers, i.e which we have to receive from Customers.
    CLOSED ITEMS means the AMOUNTS received from that customer.
    OPEN ITEMS : fetch data from BSID table Only
    CLOSED ITEMS : fetch data from BSAD only.
    ALL POSTINGS : fetch data from both BSID and BSAD.
    Hope this will help.
    Regards,
    Nitin.

  • The Difference between iphone Unlock T-Mobile and iphone Unlock Free-Sim

    As mentiond in the title my questions are:-
    - What is the Difference between iphone Unlock T-Mobile and iphone Unlock Free-Sim?!
    - Did they both work Internationally?!
    - For the Unlock T-Mobile should i use their sim or i can use any sim directly?!
    Thanks

    Unlocked means unlocked and you can use any sim card and keep changing them and the phone will never lock if it is unlocked.
    Sim free, means that the phone is sold at full price without a sim card, but the phone will lock to the first sim card that you put in it.  A sim free phone will work internationally, but you will have to use a roaming plan with your phone company because the phone will be locked, so you CANNOT change it to a local sim card.
    If you have an unlocked phone, you can use it internationally by inserting a local sim card and the phone should then work and you won't have to pay increased roaming charges as you would with a locked phone.
    If you buy a T-Mobile phone that is unlocked, DO NOT activate it with their sim card or the phone will lock to T-Mobile and you will have to approach them to get it unlocked.  Use it with another sim card straight away and it will remain unlocked.

Maybe you are looking for

  • Excessive Lag on Xbox Live, other Services ok. Fa...

    Hi, hope you can help. Since swtiching from TalkTalk at the end of February we;ve been getting an unusual and frustrating amount of lag on Xbox live during multi-player, and some PC Games.  The overall broadband speed is the same as it was before wit

  • Website access

    Hi All, Wondering if you can help me. I use the wireless connection at my college library to access the internet and up until the last couple of weeks I had no problems with accessing the internet. I am now getting the error message - cannot connect

  • Coherence3.6  Query Language in  c#  programs??

    I see Building Filters in Java Programs, import com.tangosol.util.QueryHelper QueryHelper.createFilter("homeAddress.state = 'MA' and workAddress.state != 'MA'") use c#,how do I ? no Tangosol.Util.QueryHelper ?

  • Table for Intransit-stock

    Want to know the table for intransit stock.  Intransit stock means, when we carry out movement type 641 against STO  and the receipt against the same in movement type 101 is not taken.  Till the receipt is not taken at movement type 101, this is call

  • RBDMIDOC doesn't execute when exit from transaction is not performed

    Hello Experts, I have configured the RBDMIDOC report in a job schedule for the IDoc HRMD_A. The schedule executes daily in the evening after business hours. Sometimes it happens that the HR person does not / forgets to exit from the PA30, PA40 transa