VS 2010 app looking for CR Runtime v 11.5.3700

Someone at my company developed a piece of simple C# console app code (below) to create .rpt files in a folder to be emailed later.
They did this work on a machine with Visual Studio 2010 and Crystal Reports v 11.5. The created application will be installed on our client's Windows Server 2008 R2 machine.
ReportDocument doc = new ReportDocument();
doc.Load(DOC_PATH);
CrystalReportExtensions.ApplyCredentialsFromConnectionString(doc, Con);
CrystalReportExtensions.ApplyCustomParameter(doc, string.Format("[Table Name].DOC_ID={0}", DOC_ID));
doc.ExportToDisk(CrystalDecisions.Shared.ExportFormatType.PortableDocFormat, EXPORT_FILE);
When I run the application on the Windows 2008 R2 Server, it doesn't work because it cannot find the correct version of the Crystal Reports Engine, so it throws that error. In fact, when I look under C:\Windows\Assembly on the server, I see that it does not have any version of Crystal assemblies installed.
So, I tried to find the correct runtime to install so that the application could create the .rpt files and everything would work, but I cannot find the correct version. I have found 10.2, 10.5, 13.0, and many other things that wouldn't even begin to install. The phone support for Crystal is not equipped to handle these types of questions. They can only provide general knowledge and links to downloads for runtimes, which are often incorrect or not useful.
What do I need to do to get this to work?
1. Is there indeed a CR runtime for v 11.5.3700?
2. If not, then what can I do to install another runtime and reset the VS references to that version?

The use of the version 11.5 runtime with VS 2013 is NOT supported.  Here's what needs to happen:
1.  The developer needs to download the latest version of the Crystal for VS install executable here:  http://scn.sap.com/docs/DOC-7824.  You'll also need one of the runtime installs from this page for the machine where the application will be deployed.
2.  The application needs to be set to reference the version 13.x Crystal assemblies instead of the 11.5.x version.  Then it needs to be recompiled.
3.  The appropriate version of one of the Crystal for VS runtime installs needs to be installed on the machine where the application will run.
-Dell

Similar Messages

  • [Solved] System fully up-to-date, apps look for old libs

    Even though the system is fully updated from a fresh mirror, apps look for older libs: e.g. irssi and wget look for libssl.so.0.9.8, building wget with makepkg wants libgmp.so.3 (the latest is 10). ldd run on said apps returns the newer lib versions, e.g. "libssl.so.1.0.0 => /usr/lib/libssl.so.1.0.0".  The newer libs are present in /usr/lib/. I've reinstalled the whole toolchain, problematic libs and apps. I've removed ld.so.cache and run ldconfig - it shows libssl.so.1.0.0, not libssl.0.9.8 too.
    I have no idea why apps still want older libs. Any ideas will be appreciated.
    -edit-
    Fixed the typo.
    Last edited by lucke (2010-04-25 16:33:35)

    liticovjesac wrote:I have the same problem with eina-audio-player.
    Since you got it from aur, you have to rebuild it yourself.

  • I can not get apple air play to work. I have down loaded three diffrent apps looking for a solution none of them were the right one. I spent over $10 in these apps. Can I get a refund. Do I need apple tv to run air play?

    I can not get apple air play to run from my iTunes to my WiFi reciever.
    I have spent money on 3 different apps looking for a solution.
    None have worked. Can I get a refund?
    Do I need apple Tv to work Air Play?

    About AirPlay and Airplay Mirroring
    AirPlay Mirroring requires a second-generation Apple TV or later, and is supported on the following Mac models: iMac (Mid 2011 or newer), Mac mini (Mid 2011 or newer), MacBook Air (Mid 2011 or newer), and MacBook Pro (Early 2011 or newer). For non-qualifying Macs you can try using Air Parrot.
    Several Apple Articles Regarding AirPlay
    Apple TV (2nd and 3rd gen)- How to use AirPlay Mirroring
    How to set up and configure AirPort Express for AirPlay and iTunes
    iTunes- Troubleshooting AirPlay and AirPlay Mirroring
    iTunes- Using AirPlay
    Apple TV (2nd and 3rd gen)- Understanding AirPlay settings
    About AirPlay Mirroring in OS X Mountain Lion
    iTunes 10- About playing music with AirPlay
    Troubleshooting AirPlay and AirPlay Mirroring
    Using AirPlay
    Thanks to the $15 Beamer, AirPlay streaming is still possible on Macs  that do not support Airplay and mirroring.
    Other solutions are the Air Parrot, StreamToMe, and AirServer.

  • Making an Arch Linux wiki-reader Android app - Looking for some advice

    Hey guys, hopefully this is an ok place to post this. I've just finished a beginning Java course and I'm starting on the next one. I'm learning Java with the intention of creating Android applications as a hobby. Since I've found myself accessing the wiki from my phone on many occasions, and this doesn't seem overly difficult, I think this is a good place to start.
    I've been playing with this idea for a couple of weeks and I'm trying to determine the best way to approach this. I'm looking for any pointers/advice from a development standpoint and any (potential) user feedback as well.
    So far, with the help of other Archers, I have come up with the following three options:
    1) Obvious choice- Connect to the actual wiki online
    Pros:
    +Always up to date
    +Small application size
    Cons:
    -More difficult to strip current style and "mobilize" layout (there is a lot of clutter and links to outside of the wiki)
    -More permissions that other choices
    -Requires internet connection
    2) Use the arch-wiki-docs package
    Pros:
    +Offline
    +Easier to add css styles
    +Hopefully would require zero permissions
    Cons:
    -Application would be large ~40MB (Maybe it could be reduced by removing non-english languages?)
    -Not up to date, but pretty close
    3) Use the arch-wiki-lite package
    Pros:
    +Offline
    +Small application size
    +Hopefully would require zero permission
    +More of a native android application feel instead of a dedicated webpage reader
    Cons:
    -No links to other pages
    -Would need to create style/layout from scratch
    -Not really sure how this would work (Searching, etc)
    -Not up to date, but pretty close
    Right now I'm leaning towards the second option, but only if I can figure out an automated way to strip down the html pages and remove the non-english pages. I'm thinking that I'll start with an English only version, then add international support (or a second version) later on if people want it. What are your thoughts?

    Thanks for the response!
    rickeyski wrote: 1. Any app you make will require you to generate your own layouts android uses xml layouts there are webviews, which provide some of this functionality if you need to use html, however this will require online access.
    The arch-wiki-docs package is in HTML and I'm using WebView to read it locally. The arch-wiki-lite package is a text file. Maybe I could import it into a database? Either way, using that package will require me to create the whole layout.
    rickeyski wrote:  2 you could use a wrapper like phonegap, but that would me writing everything in html, css, javascript and you will use virtually none of your java.
    I've used Titanium Studio before, which I think is pretty similar to Phonegap, but I do want to make this one with Java.
    rickeyski wrote: 3. 40 mb is a huge app, granted its before compression, but its also before all of your code and layouts to make it work.. You would be limiting yourself to only the newest androids, don't know which phone you have in mind, but might not be a problem for you.
    40MB is the compressed size. The html docs are over 100MB uncompressed. I think I could significantly reduce the size by removing the non-english pages, but I can't figure out a systematic way to find them. There are 3551 pages and they use names like 00000965.html, 00000967.html, 00000968.html, 00000974.html, etc. (Of those 967 isn't english, but the other three are.)
    rickeyski wrote: 4. the biggest plus is the android docs and examples apps are very good, start reading.
    Yup. I've been reading through those a lot. They are a big help.
    Last edited by ioos (2012-02-11 23:11:05)

  • My ipod touch 3rd gen freezes when using the itunes app looking for podcasts

    When looking at podcasts with my Ipod touch's itunes app, when i attempt to download podcasts from the nerdist podcast, the itunes app freezes and shuts me out for a minute or two. This only happens on some podcasts but not all.

    Okay so, with some patience and some tinkering... It appears to be a problem with the most popular podcasts.  Maybe something to do with so many people downloading it at the same time?  Anyway, I've found you just have to wait it out.  Keep your itouch active and from going to sleep and eventually it will load the podcasts and you will be able to download them.  On average it takes me anywhere from 2 to 8 minutes to get my most popular podcasts, I just keep it on the screen and keep it from going to sleep

  • Free Apps looking for VPP in Apple Config

    We have a small cart of iPads that were managed by iTunes in the past (creating a master/back up) but now we have Apple Configurator (AC).  Our media specialist dowloaded apps that were free back then but as of today are paid apps.  When he tries adding them to AC it is prompting him for VPP codes. He is using the same Apple ID that he used before.  Any way around this? 

    Unfortunately I don't think there is a way around this I saw a post a few days ago from gyrhead who said this: Configurator communicates with the store in regards to paid apps and VPP codes.  Even if you were able to deploy them on the day they were free the next time you went through a preparation or supervision cycle they would not install.

  • Email to music app, looking for guidance

    Hello!
    I am very new to working with the iPhone SDK, xcode, and objective C. Most of the stuff I do is physical computing. Anyway, I'm working on a really simple media player that would interface with an iPhone. I'd like to use the iPod and Web capabilities of the iPhone as a media provider. In essence, the program checks a gmail account for new messages that contain song or artist requests, search the iPod library for them, and adds them to a playing playlist. So the program would run something like this:
    Play Playlist X
    Check gmail for new messages
    If there are new messages check subject against variable Y
    If subject matches variable Y use email message contents (a song or artist name) to search iPod library
    If email message matches a song or artist add it to Playlist X
    Repeat
    So I think the music searching and playing should be fairly straight forward given the AddMusic sample code, but the Check Gmail is catching me up. I've found a PHP and Python API online, but nothing about doing this on the iPhone. Would it be easier to use a generic POP / IMAP API? Is something like this even possible?
    Thanks for any advice, pointers, or tips you can give!
    Matthew

    mbmosher8 wrote:
    Ah, now copyright law is something I am familiar with, and there is no way that playing music I own on a device I own would be a copyright violation. No one is sending the device files, just text.
    Ah, I misunderstood.
    I can't write the exact code for you, because I don't know how to, but I would start like this:
    1. Access the user's music library (I'm assuming that it'll return an NSArray or NSDictionary, or some other searchable set/collection).
    2. Grab the data from the email (Maybe have the names be comma-separated, and so the "read" command, whichever you choose to use, would loop and stop itself when it gets to the comma + whitespace)
    3. Search the music library, based on the data from part 2 using the Spotlight APIs
    4. Create a playlist (no idea how to do this).

  • II am looking for information on iPad and iPhone apps and Mac software that are "top of the line" for academic research. The most current and comprehensive information I have found is dated July 2010.

    I am looking for information on iPad and iPhone apps and Mac software that are "top of the line" for academic research. The most current and comprehensive information I have found is dated July 2010.

    PogoPossum,
    My area of interest is in business and economic history. There is a considerable amount of reading and charting. Until the iPad hit the streets, I only considered stacks of books, journals, and downloaded documents, all marked up with highlighters, underlines, and marginal notes.
    Most of my PC based work involved MS Office, Endnote, and MS OneNote.
    What I would like to do with the iPad and MacBook are the same things (Office, Endnote, OneNote) and add the ability to read and markup all forms of printed materials from books to pdf to webpages.
    I cut my teeth on an iPod Touch and have tried a lot of the note taking and reading apps. Without a camera the standard iPod Notes works for short quick notes and long think pieces. I just emailed the content and downloaded the stuff to my PC. Obviously, I do not want to continue at this "non-integrated" level of work.
    Does this help?
    Dick

  • App is looking for old version of runtime engine

    I have an app that came with a datalogger that was (presumably) written in Labview 7.X. Whe it runs, it wants me to point it to lvruntimeeng 7.1.1.
    I have LV 8.2 already on the machine, and I can't find the file it's looking for.
    I really need to use this datalogger.
    Any ideas?

    From what I can tell, the KB article is about "Executable Version (7.1.1) Doesn't Match Resource File (7.1) Check Your Configuration", while this thread is about the inability to install the 7.1.1 runtime if 8.2 is already installed on the same machine.
    I don't think the KB applies in this case. Did you post the wrong link?
    LabVIEW Champion . Do more with less code and in less time .

  • Looking for a Trade Show app

    Was at a trade show back in November 2010 and saw someone using the iPad to take down customer information and send their contact info, not having an iPad at the time i didn't think to ask what the app was called.
    I'm looking for an app that will allow prospects to input their contact information and possible check a few boxes of products they would be interested in, once they hit submit it would then send me and email with their information and a thank you email for signing up with my contact information included in it sent to their email. Does anyone know of an app that would allow me to do this?
    Matt

    I don't know of any existing Apps, but it sounds more like something a simple web-based HTML form would be more than suitable for. As long as the iPad has a net connection (which it would need to have to send an email) you just host the web-page on your companies web-site and view it in Safari on the iPad.
    You can even make it look like a proper app by hiding the Safari toolbars and saving it as a web-app.
    This is something someone with moderate web development skills could put together and customise it to look as you want and contain whatever checkboxes, form fields you want.
    Here's Apple's information on creating web-pages optimised for iPad/iPhone Safari:
    http://developer.apple.com/library/safari/#documentation/appleapplications/refer ence/safariwebcontent/OptimizingforSafarioniPhone/OptimizingforSafarioniPhone.ht ml
    You could also use a pre-built library such as:
    http://www.jqtouch.com/
    http://jquerymobile.com/
    http://www.sencha.com/products/touch/

  • Looking for a variable client financial app

    Can anyone help I have down loaded loads of apps and I can't find anything that does what I need it to.
    So here is the problem I have a business where my clients pay changeable amounts on a  regular basis for example monthly, quarterly or 6 monthly I am looking for a app that not only reminds me what's due and when but an app that allows me to see set months and keep a track of who has paid and who I still need to chase.
    Any ideas much appreciated I don't mind paying for a app if it will definitely do what I want it to.

    I've recently become a big fan of OneSwarm - http://oneswarm.cs.washington.edu - I like that it supports remote access.
    But I'm definitely interested to see what this thread brings up!
    Last edited by hAyZe (2010-01-11 20:50:45)

  • I am looking for macbookpro mid 2010 HDD exact specs so that i can upgrade it to 1TB. PLEASE HELP ME  about OEM apple brand or which one is better.Thanks

    I am looking for macbookpro mid 2010 HDD exact specs so that i can upgrade it to 1TB. PLEASE HELP ME  about OEM apple brand or which one is better?.Thanks

    clintonfrombirmingham Your information is not correct.
    http://kb.sandisk.com/app/answers/detail/a_id/8142/~/difference-between-sata-i,- sata-ii-and-sata-iii
    I have a sata II samsung 5400 rpm and i am only able to transfer at 85 read right speed.
    On my main drive sata III ocz agility 3 ssd i get 120 mb read and 180 write.
    Neither of these come close to the 300 mb promised. So it wont matter if he got sata II or III
    The speed came from Blackmagic Disk Speed Test

  • Am looking for a nascar in car radio app?  anyone know what it is calledor where I can get?

    Anyone know what app allows me tolisten to nascar in car radio?

    Tried to delete it but was told could not because it was in use.  Went to get info and found that it was listed as an email attachment with a date of Apr 18, 2010.
    Open your Mail. Move the file to the Trash. Quit Mail. Now empty the Trash.
    When you can't empty the trash when you see the "file is in use" dialog, you need to quit the app that the file is associated with, then empty the Trash.
    I was looking for images in All Images that I didn't need and could delete.
    Be careful of deleting images. They might be icons associated with certain apps like iChat or PhotoBooth.
    The file size is 4kb.
    Most system icons are about 4kb in size.
    I don't think this is malware related.

  • Looking for a Darknet/Secure BBS app

    I have been a fan of Haxial KDX for the longest time, but due to the bugs, etc., I would like to move on.  I'm looking for a secure darknet/bbs styled program that supports chat, filesharing, and of basic user management (who can login, who can't, etc..).  I have been asking this question all over the web, and haven't gotten (or found) a single response.  Waste has never worked right for me, by the way.  I would definitely prefer it to be open source, which is why I thought it best to post here.  Please help out, or at least direct me somewhere where I should ask... Thanks.
    As an aside, the guy who wrote KDX and Hotline (Adam?? Hinckley) claimed on the Haxial website that he is willing to sell the project.  I wouldn't mine purchasing and restarting the KDX Project, but I've been unable to get in contact with him.  So...if you are him, or know him, or own the rights to Haxial KDX and all related projects...$$$$$
    Last edited by xen0blade (2010-01-12 13:18:15)

    I've recently become a big fan of OneSwarm - http://oneswarm.cs.washington.edu - I like that it supports remote access.
    But I'm definitely interested to see what this thread brings up!
    Last edited by hAyZe (2010-01-11 20:50:45)

  • Looking for a simple, standalone desktop app for web stats

    Well, I see they've changed the forums here again. SIGH.
    Anyway, a certain web host has eliminated AWStats from it's shared hosting. So I used Webmaster Tools. And now they've changed, and no longer display the simple visitors and hits. Google Analytics is way too complex for what I need, as are many of the stats programs I've looked into.
    I can download the daily Apache log files, that's no problem. Just looking for a small standalone program to import these and show the data like AWStats.  Any suggestions? The only other options would be to go to a different web host. Not a big deal overall, but I would rather not deal with the hassle, especially the migrating the database.

    Not sure of standalone 'desktop' apps. But check out http://www.openwebanalytics.com/ and Web Analytics in Real Time | Clicky  - they're both very intuitive and easy to use with a lot more simplified stats than Google Analytics.

Maybe you are looking for

  • How to solve delay in a program with data aquisition and processing

    Hello, I am a starter in Labview programing. I am working on a system which contains a roller, a piston and a A/D cart which is from Data Translation Inc (DT304). I am using labview to get speed data of the roller (which is voltage first then be co

  • Need help with the Vibrance adjustment in Photoshop CC 2014.

    Need help with the Vibrance adjustment in Photoshop CC 2014. Anytime I select Vibrance to adjust the color of an image. The whole image turns Pink in the highlights when the slider is moved from "0" to - or + in value.  Can the Vibrance tool be reset

  • First-Logon Times Are Unacceptable in Windows 10

    So far, we have found several issues with Windows 10 Enterprise, but our biggest issue -- by far -- is with the time it takes to logon a new user for the first time.  This was also an issue in Windows 8.1 and is also the reason we largely skipped Win

  • Long pauses

    Hi, I'm trying to tune the JVM options for a JAVA app that requires low pauses. After playing around with several diferent combinations I still can not get a setup that will not give an occasional very long pause. Here's an example of a long pause fr

  • 'Use Memory Analysis' of WebiProcessing in HP-IA64

    Hi. I have a question about 'Use Memory Analysis' option of WebiProcessingServer. According to Administrator's Guide, this option prevents memory curruption when BOE works as 32-bit application. (maxmum memory setting is limited to 2000MB) Then in my