Error Message 0x800a1391 - JavaScript runtime error: 'bobj' is undefined

I have a project which I upgraded from Visual Studio 2012 and the version of Crystal Reports for Visual Studio that worked with VS 2012.  I upgraded the project to Visual Studio 2013 and waited for Crystal Reports to be released for VS2013.  Once it was released, I installed Support Package 9 (V13.0.9.1312) on my Windows 8.1 64 bit machine that is running Visual Studio 2013.  I copied the crystalreportviewers13 folder to the root level of my project. 
Everything compiles fine.  However when I run the project and attempt to view my report, I receive the following error message:
After I click continue, I get the following error message:
Any assistance would be greatly appreciated.

See this post:
Crystal Reports does not load aspnet_client files to proper IISExpress directory
Also, see this:
CR for VS 2013 Web Report Images display as "X"
- Ludek
Senior Support Engineer AGS Product Support, Global Support Center
Canada
Follow us on Twitter

Similar Messages

  • Photoshop Elements 10 will not open.  I get Error message that says "Runtime Error!" and closes.  What do I do?

    Help.  Photoshop Elements 10 will not open.  I get Error message that says "Runtime Error!" and closes. What do I do?  What does it mean?  I bought Elements 10 at a retail store.  It did work for a while.

    Hi,
    Can you post back with the following.
    1.  The full Model No. and Product No. of the notebook ( from the service tag underneath your notebook ) - see Here for a further explanation.
    2.  The full version of the operating system you are using ( ie Windows 7 32bit ).
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • HT1222 I tried to download Itunes update 11.1.4 to my windows xp desktop computer. Somehow, It was not succesful. Now , I cannot open Itunes. It gives error message of R6034-runtime error. How can I resolve it?

    Hi,
    I tried to download Itunes update 11.1.4 to my windows xp desktop computer. Somehow, It was not succesful. Now , I cannot open Itunes. It gives error message of R6034-runtime error. How can I resolve it?

    Click here and follow the instructions.
    (99025)

  • When ever I reboot my device, I get an error message that says, "runtime error info.plist not found". What is this, how does it effect my ipod and how do I correct this error?

    I have an ipod touch 64gb. Lately, I discovered an error message on the lockscreen that says "Runtime Error Info.plist not found". What is this, will it effect my ipod, how does it effect my ipod and how do I correct the error? (I see the error message when I power up my ipod and when I reboot).

    Follow  this article:
    How to restart the Apple Mobile Device Service (AMDS) on Windows

  • TS5376 I have been trying to install Itunes for the past 1.5 days without success.  The method outlined here did not work and gave me the same error messages as before  Runtime error R6034 and  also error 7

    I tried the latest Apple fix to resolve the installation issues of iTunes 11.1.4 and had no success at all.  This was the fix that asked you to remove .dll files and place them on the desktop before unistalling and reinstalling iTunes.  I followed the procedure exactly and obtained the same results as before.
    Namely,
    Runtime Error: R6034 -An application has made an attempt to load the C runtime library incorrectly
    iTunes was not installed correctly.  Error 7.
    At this point, after spending 1.5 days attempting to install iTunes I am giving up.  Hopefully, someone will come up with a fix that really works and I will install it then.

    Hi
    I had the same problem on my PC's with Win 7 and Win XP.
    I solved it this way:
    - De-install iTunes, best with a special tool, like, for example "Your Uninstaller" from Ursoft. Any other un-installer will do the job, provided it cleans the registry of traces from iTunes
    - De-install "Apple Mobile Device Support". This seems to be the culprit. It is a sub-program of iTunes. But if you just de-install iTunes this sub-program stays in your PC. If you still have it on your PC and you try to update to 11.1.4, it will cause these problems.
    - De-install also "Apple Application Support", but I am not sure it is really necessary, but de-installing does no harm, since it will be re-installed automatically.
    - De-install also "Apple Software Support", but I am not sure it is really necessary, but de-installing does no harm, since it will be re-installed automatically.
    - Re-start your PC
    - Download the latest version of iTunes from the Apple webpage and install it.
    For me this worked on both of my PC's.
    Regards
    goletto

  • 0x800a1391 - JavaScript runtime error

    I'm attempting to find out how to resolve the following error: 'PAPADDINGXXPADDING..." is undefined.  This is on a Windows 8.1 system running IE 11 version 11.0.9600.16518  with update version 11.0.3 and ASP.NET/MVC in Visual Studio 2013 using
    the .NET 4.5.51641 runtime.  Works fine in Google Chrome.  I saw a reference which indicated it might be a compatibility setting (tried turning it off, did not fix) or that it might have to do with JSON or that the DOCTYPE was not specified (which
    it appears to be).  Anybody have a solution that works???

    Hi,
    in chromium, display the Developer Tool>Console tab, I expect the same error will be displayed.
    an 'undefined' error means a js variable has (well) not been assigned.
    eg.
    var foo.bar='foobar';
    var sentence=foo + '.bar is not fubar';
    ('foo' is undefined).
    In IE, f12>Emulation tab, make sure that your page is using 'Edge' mode.
    Regards.
    Rob^_^

  • Error message "Microsoft JScript runtime error '800a138f'"

    What does this mean? I have a macbook pro and when I log into the site that I get this message on I have no problem on the macbook pro. On my new iMac is where I'm having the trouble.
    How do I fix this?

    Hi Rama,
    Thanks for the response, I tried installing the Adobe SVG viewer 3.0
    It gave me the message Installation failed saying that
    The system cannot find the specified file, for
    Software\Netscape
    Software\realnetworks
    Software\Adobe
    but still the error seems to be no longer coming.
    I am still not able to see any Element types available when I select the "Elements" tab. Could you suggest where I might be going wrong.
    I checked the IE version it is 6.0 SP1
    Regards
    Anurag
    Message was edited by: Anurag  Khungar

  • Gettting 0x800a139e - JavaScript runtime error: SecurityError on creating websocket object in .js page

    Hi Team,
    I am creating a websocket object in the existing webapplication I have. When creating the object with url :    var url = 'ws://localhost:4334//WebSocketServer.ashx?name=Satya'; getting error  . 0x800a139e - JavaScript runtime error: SecurityError.
    var ws;
    var message ;
    var messageVal;
    function $(id) {
        return document.getElementById(id);
    function wireEvents() {
        $('sendChat').addEventListener('click', function () {
            message = $('message');
            ws.send(message.innerText);
            messageVal=message.innerText;
            message.innerText = '';
        $('btnCancelChat').addEventListener('click', function () {
            ws.close();
    function Chat () {
        wireEvents();
        var conversation = $('conversation');
        var url = 'ws://localhost:4334//WebSocketServer.ashx?name=Satya';
        //var url = 'ws://https://127.0.0.1:444/WebSocketsServer.ashx?name=Satya';
        ws = new WebSocket(url);
        ws.onerror = function (e) {
            conversation.appendChild(createSpan('Problem with connection: ' + e.message));
        ws.onopen = function () {
            //conversation.innerHTML = 'Client connected <br/>';
        ws.onmessage = function (e) {
            conversation.appendChild(createSpan(e.data.toString()));
        ws.onclose = function () {
            conversation.innerHTML = 'Closed connection!';
    The same works fine if i create a new application i access as a HTML page on page load.
    Can any one help me on this?
    Thanks,
    Satya Chenna

    http://forums.asp.net/
    The JavaScript section is at the above forum.

  • Javascript Runtime Errors

    I keep getting Javascript Runtime Errors when I visit certain web pages and it's stopping me from viewing some pages of a website. What can I do about these errors so I can browse websites without any trouble?
    Here is a screenshot of the error. Usually I get a different error, like a box actually pops up and says there is a java script error etc..., but I can also view the error another way.
    http://img.photobucket.com/albums/v630/Izzy_K/error.jpg
    Message was edited by:
    nuwogu
    Message was edited by:
    nuwogu

    this is not a Java problem but rather a javascript one !!!
    this error means that the browser your are using doesn't support a javascript object or a method.
    try firefox, IE (5x, 6x and 7x if possible).
    As I previously said, you can't handle this problem. contact the webmaster or web developer to report the javascript problem and to know the recommended browser.

  • My iTunes program is giving me a message that says, "Runtime error" and wont open iTunes. How do I fix this?

    My iTunes program is giving me a message that says, "Runtime error" and wont open iTunes. How do I fix this?

    Try the following user tip:
    Troubleshooting issues with iTunes for Windows updates

  • HT1926 won't download itunes, get error message concerning C runtime library

    tried to update itunes, now it doesn't want to install itunes, keep getting an error message that C runtime library is not installed correctly

    Follow the below procedure if you are using a Windows based PC.   I did not develop it, another forum user did, but I did insert 1 additional step in case you use a 3rd party software package to give your apple devices "Airprint" capability for your non Air Print capable printers (Such as Fingerprint).
    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (Later)
    Remove all of these items in the following order:
    Remove any 3rd party software which uses Airprint features (such as Fingerprint by Collobos)
    iTunes
    Apple Software Update
    Apple Mobile Device Support
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or by right-clicking the downloaded installer and selectingRun as Administrator.
    See also HT1925: Removing and Reinstalling iTunes for Windows XP or HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8

  • I tried downloading the new update for itunes I get these error messages: Visual C   runtime library R6034 an application has made an attempt to load the C runtime library incorrectly Error 7 windows error 1114.  What should I do to correct this?

    I tried downloading the new update for my desktop PC I get the following error messages:
    Visual C++ Runtime library
    R6034
    an application has made an attempt to load the C runtime library incorrectly Error 7 Windows Error 1114

    Click here and follow the instructions. You may need to completely remove and reinstall iTunes and all related components, or run the process multiple times; this won't normally affect its library, but that should be backed up anyway.
    (99907)

  • Photoshop elements 10 won't start. Message is. 'Runtime error.  Application has requested the runtime to terminate in an unusual way.  Please contact support team for more information' 'microsoft Visual C   Runtime Library.  How do I fix this or can I jus

    photoshop elements 10 won't start. Message is. 'Runtime error.  Application has requested the runtime to terminate in an unusual way.  Please contact support team for more information' 'microsoft Visual C   Runtime Library.  How do I fix this or can I just uninstal and then re-instal (without losing my spare licence that I want to use elsewhere)  It is a PC not a Mac

    See if anything here helps:
    Troubleshoot C++ runtime errors | Adobe products | Windows

  • JavaScript Runtime Errors in init.debug.js

    I have a custom branding solution for a SharePoint 2013 site collection in Visual Studio.  When I navigate the site collection or debug the solution, I seemingly randomly get Unhandled Exceptions in the /_layouts/15/init.debug.js.  It's rather
    0x800a03ee-JavaScript runtime error:  Expected ')' or 0x80070005 JavaScript runtime error:  Access is denied.  The first error occurs just navigating the site collection.  The second error occurs when I hover over the name with presence
    at the bottom while editing an item.  I haven't edited this script at all, so what can cause this JavaScript that is in the hive to throw exceptions, and what is a good approach to debug it in order to get to the root of the problem?

    Thank you for your response. I'm in a SharePoint 2013 development environment using IE10.  When I added the site collection as a trusted site in the local intranet zone in IE 10, I no longer get the JavaScript runtime related to the name of presence
    and Access.  When I deploy the solution, I do not get any errors.  But if I debug in Visual Studio, the solution, which is set of features that installs a master page with custom navigation, I get this error when I navigate the site collection: 
    Unhandled exception at line 6784, column 13 in layouts/15/init.debug.js?rev=z/JdnR/rlmz5Wvyfz5qrBg==
    0x800a03ee - JavaScript runtime error: Expected ')'
    The error occurs in NotifyScriptLoadedAndExecuteWaitingJobs in init.debug.js, and the call stack goes back to DeltaManager$_ScriptLoader in start.debug.js and eventually to the browserHandler, ScriptResource.axd.
    init.debug.js, correct me if I'm wrong please, is a JavaScript that SharePoint adds during debugging.  If I go in the hive and add that ')' where it breaks, then everything breaks.  Why is this error thrown, and what is the rev parameter at the
    end of the query string?
    The custom master page in the solution being installed has a line:
    <
    asp:ScriptManagerid="ScriptManager"runat="server"EnablePageMethods="false"EnablePartialRendering="true"EnableScriptGlobalization="false"EnableScriptLocalization="true"/>
    I added ScriptMode="Debug", and the errors occur during debugging.  I changed it to ScriptMode="Release", and still got the same errors.
    I'm not sure if and where in the code things are breaking, but I'm having trouble understanding why SharePoint, Visual Studio, and Internet Explorer behave in this manner.

  • Jquery in background task JavaScript runtime error: 'window' is undefined

    How do we access the window variable in backgroundtasks ?
    i need to use jquery and i get  JavaScript runtime error: 'window' is undefined

    It looks like jQuery is not written to be used from a web worker--or else you need a variant that is. This is because the global context in a background task written in JavaScript is
    WorkerGlobalScope (see
    http://www.w3.org/TR/workers/#workerglobalscope) not window, so window
    isn't defined.
    You might be able to work around a situation like this, depending on what is needed from
    window. (I'm assuming jQuery is trying to initialize its UI libraries, in which case you probably won't be able to do that from a worker/background task. They can't do UI directly.)
    If you need something from window, specifically, your running app, when it registers the background task, could also write the necessary values into the
    Windows.Storage.ApplicationData.localSettings container as background tasks can access that at any time.
    It could be possible, then, to write the necessary values from window
    into local settings, then create a window object and populate it with those values before loading jQuery. It'd be a hack, but might get you where you need to be.
    That said, because there are limitations on what you can do from a background task, and how long you can run, you might ask whether jQuery is really buying you anything in that context. I can't say, of course, but it's a reasonable question to ask before
    trying this kind of workaround.
    Kraig
    Author,
    Programming Windows 8 Apps with HTML, CSS, and JavaScript,
    a free ebook from Microsoft Press

Maybe you are looking for

  • Can you make Sysprep on Windows 8.1 and Server 2012 R2 Prompt for a Computer Name

    Hi guys, Our Windows 7 Unattend.xml has always made Sysprep prompt for Computer Name. I'm struggling to achieve that with Windows 8.1 and Svr 2012 R2. Firstly: Is it still possible? Secondly: If so, How? Thanks

  • Unable to find the IDOC number in WE02

    HI All, I have executed an outbound program from SM37 and i can see that job got finished in the log. but when i check the spool, it doesnt contain any list and also i am unable to find the Idoc number in WE02. I am not clear in this. Please expalin

  • ADF BC project migration errors from 10.1.3.3 - 11g TP2

    Hi all, I have a current 10.1.3.3 project using ADF BC and Faces that I have been testing to migrate to 11g TP2. My question is specifically about the BC project. Although the migration wizard completes without error or warning, I end up with some is

  • 24" Case Warping??

    My 24" iMac has a new problem, the white plastic on the front, directly above where the optical drive sits, has began warping. If i push on it up and down the length of the right side of the panel, it will go a few millimeters before it reaches the L

  • Indesign CS5 will not load, it crashes

    I am unable to load InDesign CS5 on a new MacBookPro with Yosemite 10.10.1, can this be fixed?