CR for VS 2010 always marks reports as modified when first opened in IDE

I recently updated from VS 2008 to 2010 and am having a couple minor issues with using CR in the visual studio IDE.  I'm on windows 7 home 64 bit and installed the v13 of CR for 2010.  I am compiling under .net 4.0 and when it asked me to convert I clicked yes.  The application is a windows form application as well.
First of all every time I open a report in visual studio, whether it is an old report or a brand new report, it gets the asterisk after the name meaning that there are changes that need to be saved even though I have not made any changes.
I save, close the report, reopen it, and there it is again, the asterisk appears saying the report is modified.  I've tried it many many times and it always opens every report modified no matter what I do.
The second problem I'm having is that if I open a form and add a crystal report from the toolbox by dragging the report over and dropping it on the form, it pops up a dialog box asking me to choose a ReportDocument.  I choose the report document I want to use from the drop down, click ok, and I get an error message box: "Not a ReportDocument derived class.".
I can manually create the report in code and everything works fine when the application is run, it just won't let me add it in the visual studio IDE to a form from the toolbox.
Thanks in advance,
Eric

I suspect this is related to a known issue;
If .NET 2008 and .NET 2010 are on the same machine, the CR assemblies from CR 10.5 (bundled with .NET 2008) and CR 13.x (CR2010) are pulled in. This issue will be resolved in SP 1 (ETA, end of February).
For now, the best option is to not have .NET 2008 and .NET 2010 side by side...
Ludek
Follow us on Twitter http://twitter.com/SAPCRNetSup
Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

Similar Messages

  • Why Visual Studio 2013 express edition always show repair or uninstall when I open it??

    I don`t know why my Visual Studio 2013 express edition always show repair or uninstall when I open it??
    I install it yesterday and it worked fine, but today when I open it, its says repair or uninstall all the time.... Anyone know why?
    Hellpppp

    Hi,
    I think your VS may have been corrupted. I suggest you click "repair" to repair your VS.
    If it can't solve your issue, please use ISO file to reinstall it.
    If you used a web installer, please download the ISO file from the website.
    http://search.microsoft.com/en-in/DownloadResults.aspx?q=Visual+Studio+Express+2013
    Before you reinstall it,please use this tool
    http://support.microsoft.com/kb/841290 to verify hash of the ISO. Any discrepancy would indicate that the file was corrupted.
    The sha1 value of ISO could be found in "Install Instructions".
    If you have made sure your ISO file have no problem, please reinstall it.
    If you have any further question, please feel free to let me know.
    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.

  • This morning I ask about the requirement to download the adobe Cs6 before i buy the product and the salesperson told me that i met the requirement for that particular software, so my surprise now when i open the file it says an error because my computer d

    this morning I ask to a sales person about the requirement to download the adobe Creative Cs6 before i buy the product and the salesperson told me that my computer met the requirement for that particular software, so my surprise now when i open the file it says an error because my computer doesn't meet this requirement,  my computer is a OS X 10.5.8 and the requirement  is OS X v10.6.8 or v10.7 what can i do?

    The requirements are online. For the Master Collection the requirements on Macs are:
    Mac OS
    Multicore Intel processor with 64-bit support
    Mac OS X v10.6.8 or v10.7
    4GB of RAM (8GB recommended)
    15.5GB of available hard-disk space for installation; additional free space required during installation (cannot install on a volume that uses a case-sensitive file system or on removable flash-based storage devices)
    Additional disk space required for disk cache, preview files, and other working files; 10GB recommended
    1280×900 display with 16-bit color and 512MB of VRAM; 1680×1050 display required and second professionally calibrated viewing display recommended for Speedgrade
    OpenGL 2.0-capable system
    DVD-ROM drive compatible with dual-layer DVDs (SuperDrive for burning DVDs; Blu-ray burner for creating Blu-ray Disc media)
    Java™ Runtime Environment 1.6
    Eclipse™ 3.7 Cocoa version (for plug-in installation of Flash Builder); the following distributions are supported: Eclipse IDE for Java EE and Java Developers, Eclipse Classic, Eclipse for PHP Developers
    QuickTime 7.6.6 software required for QuickTime features, multimedia, and HTML5 media playbackOptional: Adobe-certified GPU card for GPU-accelerated performance in Premiere Pro; see the latest list of supported cards
    Optional: Adobe-certified GPU card for GPU-accelerated ray-traced 3D renderer in After Effects; see the latest list of supported cards
    Optional: Tangent CP200 family or Tangent Wave control surface for Speedgrade
    Optional: 7200 RPM or faster hard drive (multiple fast disk drives, preferably RAID 0 configured, recommended) for video products
    Broadband Internet connection and registration are required for software activation, validation of subscriptions, and access to online services.* Phone activation is not available.
    You should have been given the correct information. Adobe offers 30-day money back guarantee.
    You can find return information here:
    Return, cancel, or exchange an Adobe order

  • Why has Apple decided that online orders for Macbook Air display and speak VO when first opened from the box? I"m guessing 1%or 2 % of your customers know what it is or want it.

    Why has Apple decided that online orders for Macbook Air display and speak VO when first opened from the box? I"m guessing 1%or 2 % of your customers know what it is or want it.

    You are not talking to Apple, we are just users like you.  Only Apple knows that answer.

  • I'm following Firefox Help for Windows XP on "clear cookies & cache." When I open Firefox & follow the Help steps (click on History, Tools, etc.) these aren't active links. I'm clicking on a Help display; no actions are executed. ???

    (On desktop PC) When I open Firefox & follow the Help steps (click on History, Tools, etc.), these aren't active links. I'm clicking on a Help display; no actions are executed. Cookies & cache aren't cleared.

    Make sure that you do not run Firefox in permanent Private Browsing mode.
    *https://support.mozilla.org/kb/Private+Browsing
    To see all History and Cookie settings, choose:
    *Tools > Options > Privacy, choose the setting <b>Firefox will: Use custom settings for history</b>
    *Deselect: [ ] "Always use private browsing mode"

  • Code for Outlook 2010 to mark an email Private

    I would like to provide our executives with an QAT button for marking an email Private.  Does anyone have code to share for a macro that will do that?  

    Hi,
    The suggestion is provided by Eugene is helpful.
    In addition, to make an email to private, we can set the
    MailItem.Sensitivity Property. Here is a sample for your reference:
    Sub CreatePrivateMSG()
    Dim aMailItem As MailItem
    Set aMailItem = Application.CreateItem(olMailItem)
    aMailItem.Sensitivity = olPrivate
    aMailItem.Display
    End Sub
    Then you can create an QAT button for this macro. Here ia en helpful link for the QAT customizaiton:
    Customize the Quick Access Toolbar
    Regards & Fei
    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.

  • I have multiple store purchase charges for an app but the Report a Problem Does Not Open a Description Window

    I go through the steps but the Report a Problem description option window does not open and it takes me back to the generic support page! 
    Please help.  [email protected]  There are multiple duplicate purchases of Angry Birds Space apps on 4/4/2007 and 4/1/2007.  Please help.
    Thank you
    Lewis and Katherine
    [email protected]
    [email protected]

    Try contacting  iTunes Store support using Express Lane -> https://expresslane.apple.com/
    Just click iTunes > iTunes Store > Purchases, Billing and Redemption. Then fill out the form to have them take a look at your account.

  • When i open a new tab even i have set the start page in "blank" babylon home page keeps coming on.always on new tab.never when i open firefox for the first time. what can i do to fix the problem?

    i tried to find any babylon programs on my computer but i didnt found something.

    '' get rid of babylon toolbar and get back home page"
    see the first answer, the one from the-edmeister in
    :https://support.mozilla.com/en-US/questions/860950

  • Ribon mising when first opening a list in Sharepoint 2010

    Hello.
    When opening a list in SharePoint 2010, I do not get the ribbon. If I click on a list item, the ribbon appears. Then I can come back to the original task I had in mind.
    Can you advise how to fix it so that the ribbon always appear when loading a list?
    Thanks a lot.

    Thanks dear Alex,
    Probably... I am not the programmer, but the user. The programmer told me that it was impossible to have the ribbon available unless an item of the list is clicked on first, so I wanted to investigate if that is true and if there is a way around it. Does
    not seem natural to have to open an item on the list before creating a new one.

  • I tried to make a smaller facebook photo more visible by trying to make it my screen saver and now i do not know how to get rid of. it always shows up on screen when i open my computer but is still small

    == Issue
    ==
    I have another kind of problem with Firefox
    == Description
    ==
    i tried to make a smaller facebook photo more distinct by hitting something to make it screen saver. it now shows up each time i open my computer but still is small. i cannot determined how to get rid of?
    <blockquote>Edited by moderator to remove all caps. Please don't yell. -T</blockquote>
    == This happened
    ==
    Every time Firefox opened
    == i tried to make a small facebook photo screen saver
    ==
    == Firefox version
    ==
    false
    == Operating system
    ==
    Windows XP
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.9) Gecko/20100315 Firefox URIAPRO[]
    == Plugins installed
    ==
    *-Default Plug-in
    *Adobe PDF Plug-In For Firefox and Netscape
    *Shockwave Flash 9.0 r28
    *The QuickTime Plugin allows you to view a wide variety of multimedia content in Web pages. For more information, visit the QuickTime Web site.
    *RealJukebox Netscape Plugin
    *RealPlayer(tm) LiveConnect-Enabled Plug-In
    *6.0.12.1040
    *Java Plug-in 1.5.0_01 for Netscape Navigator (DLL Helper)
    *DRM Netscape Network Object
    *Npdsplay dll
    *DRM Store Netscape Plugin

    This sounds more like a Windows question, than a Firefox question. When you say that an image shows up every time you open your computer, do you mean every time you turn on your computer, or every time you start Firefox?

  • Everytime i use firefox and open my facebook account, i'm always getting a black background when i open facebook picture, i need to click reload or refresh to view the pictures in normal setup. what do i need to do? please help

    when i always open my facebook pictures using mozilla firefox, the pictures always get a black background and i always need to reload the page to get the normal view of the pictures

    Clear the cache and the cookies from sites that cause problems.
    * "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    * "Remove the Cookies" from sites causing problems: Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]

  • I have been using xfinity for some time with no problem. Now when I open it, it shuts down. I have reset, restarted, and done a sync. I also deleted and reloaded to no avail

    I have been using the xfinity ap for some time with no problem. Now every time I open the ap it shuts down. I have updated software, reset, done a sync, rebooted to no avail any ideas

    My Xfinity App does the same thing.  Hope they are coming out with a app update.

  • Message for an invalid security certificate keeps popping up when I open firefox

    "fvd.kallout.com: 443 uses an invalid security certificate
    the certificate expired on 5/31/11
    this could be a problem with the servers configuration or it could be someone trying to impersonate the server
    if you have connected to the server successfully in the past the error may be temporary and you can try again later"
    This is what opens on my screen every time I have opened Firefox today. If I hit "cancel" the window closes, but I do not know what it means or how to permanently clear it, or if someone is trying to use my system illegally.
    Can you please tell me what my best next course of action is?
    Thank you,
    cemerrick

    The "<b>Fast Video Download</b>" extension has been reported to cause this issue.
    *Fast Video Download: https://addons.mozilla.org/firefox/addon/fast-video-download-with-searc/

  • I find FF3.610 works well when first opened. However, if I leave the PC on and unused for a while FF won't load. The hour timer shows then dissappears. At the same time I'm not able to open the volume control. Restarting sorts the problem.

    I am working a PC with Windows XP SP3
    I checked the site to read the advice to switch off Skype 4 if installed. It was, I did. No change.
    If I Ctrl+Alt+Del I don't see Firefox listed but when I finally switch off I get a "Firefox is not responding" notice.

    Dankeschon !

  • When first opening firefox I always have to click the icon twice before the browser opens.

    When I first turn on my laptop and click the firefox icon, it shows that it's working. After a few seconds nothing happens so I click the firefox icon again and then it will open but now I have 2 open browsers.

    You're right, you should be able to just start typing in either the built-in Firefox home page ("about:home") or the actual Google home page (https://www.google.com/). Are you using one of those, or a different page that has a Google search box?
    There are some add-ons to manage the home page and/or new tab page that may affect where the "focus" is in the browser. Could you try starting up Firefox in its Safe Mode? That's a standard diagnostic tool to bypass interference by extensions (and some custom settings). More info: [[Troubleshoot Firefox issues using Safe Mode]].
    I suggest doing this the next time you start Firefox. Simply hold down the Shift key when double-clicking the icon. You should be presented with a small dialog. Click "Start in Safe Mode" (''not'' Reset).
    Any difference? To return to normal mode, exit Firefox and start it again, not holding the Shift key.

Maybe you are looking for

  • How to update the sent mail using SO_NEW_DOCUMENT_ATT_SEND_API1

    I have a requirement to update/ append the sent mail like a trail.Since i am sending mails using SO_NEW_DOCUMENT_ATT_SEND_API1, how can i update new contents to sent mails using this RFC???Please help me.

  • I received an unknown error (1) when trying to restore my iPhone 4. What do I do now?

    I tried to upgrade my iPhone 4 with iOS 6 through wifi but the phone locked up. I tried to restore it on my Mac but an unknown error (1) popped up and won't let me restore it. Any advice?

  • Apex_item not found

    I am using apex_item in a select, but when submit page the result is one error "ORA-01403:no data found". put in the select plus and presents data. My select: SELECT APEX_ITEM.HIDDEN(1,ID) ID, APEX_ITEM.TEXT(2,ID) ID_DISPLAY, APEX_ITEM.TEXT(3,SESSAO_

  • Unknown error occured (-54) what am i supposed to do?

    i just downloaded the new itunes, but when i want to sync pictures from my notebook, it says there's an unknown error (-54) what am i supposed to do? now there's no pic in my iphone other than the ones in my camera roll...

  • Email for Order Confirmation

    Hey everyone, I am sending an Order Confirmation out to the Customer and I am blind copying myself on the email.  The email that I receive is different than the email that the customer receives.  How can that be possible?  Please let me know.  Also,