CRVS2010 Beta - PLEASE WAIT WHILE DOCUMENT I S PROCESSING

I have installed Cristal report 2010 y Visual studio 2010 the report in visual studio 2010 in design mode Correctly , but when run the aplication show de next message > PLEASE WAIT WHILE DOCUMENT I S PROCESSING and the aplication not responding and not show the report why?.  I call the report >
myreport r = new myreport();
crystalReportViewer1.ReportSource = r;
crystalReportViewer1.RefreshReport();
Updated subject line....
Edited by: Don Williams on Oct 31, 2010 5:00 PM

Not enough info,
What OS?
What language is the OS?
What have you done to debug the problem?
Is it a Windows or WEB app?
What happens if you use a report with saved data?
Why are you not setting the database log on info?
Thank you
Don

Similar Messages

  • "content preparation" "please wait while document is prepared for reading"

    Adobe Acrobat Pro (9.0.0 running under Windows XP 32-bit) pauses frequently with a pop-up labeled "Content Preparation" and "Please wait while the document is prepared for reading".  This popup occurs at random times.  I am trying to fill out a lengthy grant application form, and this pop-up steals the keyboard in the middle of my filling in the blanks, so that my form is riddled with typos.  Help!  How do I stop this pop-up from appearing?  This problem started maybe one month ago.

    Regarding the long pauses in Acrobat during which it pops up a "content preparation box" and steals the keyboard input, I tried many things (reinstalling, etc).  The problem now seems to be solved.  The step that appears to have fixed the problem was as follows (windows XP) Start > accessories > accessibility.  Within accessibility I opened every dialog box and unchecked every checkbox.  (I have no idea how they got checked in the first place.)  Apparently there are no settings in Acrobat itself that affect this behavior.

  • Crystal reports visual studio 2013. "Please wait while the document is being processed." Error

    I am using Crystal Reports for VS 2010. The report is working fine but if you click on the next page or click on group tree,
    the message “Please wait while the document is being processed.” comes. Never show next page.
    Any ideas?

    Hi Qin Yang,
    Please post your question in the official
    SAP Crystal Reports for Visual Studio forum.
    Thanks for your understanding.
    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.

  • Is there a setting to automatically close the "please wait while we generate your document" page that pops up when downloading a pdf file?

    I am constantly downloading pdf's and excel files from our company software which uses a web browser to access it. When I download a file, firefox generates a full screen pop up window that states "please wait while we generate your document." My problem with it is the fact that pop up window does not close after the download. I have to manually close the window. Is there a way to set that pop up window to close automatically after the file has finished downloading and is open in foxit reader or excel or word or whatever?
    Thanks,
    Tony

    Hi,
    You could try is to '''Disable''' the Foxit, Adobe and Office '''Plugins''' in '''Tools '''('''Alt '''+ '''T''') > '''Add-ons''' and use the normal Firefox Open with (when you click on a link) to browse/open it in the required application.
    [https://support.mozilla.org/en-US/kb/Using%20plugins%20with%20Firefox Using plugins]

  • InfoView Errror - Please wait while the document...

    Hello, I am looking for some assistance as I am stumped on this. Very recently we have had an issue come up on our InfoView site when people attempt to run a report a progress windows comes up saying "Please wait while the document is being processed."  I have gone through many checks to try and troubleshoot but nothing has worked, tried various browsers and versions, java versions, removed windows updates from the server and updated the Crystal Server to 3.1 SP4 and none of helps.  It just sits in and endless loop with that error on the screen. I am open to ideas, any suggestions?
    Rod

    Hi Rod,
    Please follow the steps provided below, it might help you.
    1.Open Report in Crystal Reports Full Client
    2.Click File/Page Setup
    3.Click "No Printer" -- This will force the report, when run on the server, to be set automatically to the default printer, instead of looking for the printer driver that was set up on the client machine where the report was developed
    4.Click "OK"
    5.Click on File/Report Options
    6.Remove the check mark from "Verify On First Refresh" and "Verify Stored Procedures On First Refresh" -- This will force the report to skip the process of querying the database to verify metadata information
    7.Click "OK"
    Let us know if this works for you or not.
    Thanks,
    Kuldeep G

  • What's "Please wait while the document is being processed" mean ?

    When open a WebI report and click "Refresh Data", then "Please wait while the document is being processed" prompt page be poped up.
    Does it mean datas had been refreshed completely when the prompt page disappeared?

    When you hit "Refresh Data" button the data will be fetched. If you have lov's in the report then all the lov's data will be fetched and the report data is refreshed accordingly to the lov's fetched.If you hit the refresh data button again without changing the lov values then the report data is fetched for the cache and will be refreshed

  • Please wait  while the document is being processed

    warning...newbie question....
    We are using the crystal report viewer on an ASP.NET application.
    on the parameter panel there is an edit icon, if the user double clicks this,  the report viewer triggers the page to re-load,  then it displays a tiny dialogbox that says "Please wait  while the document is being processed" but the report viewer never refreshes.  the dialogbox never goes always.
    1) why does the edit icon show up on all the parameters?
    2) what is it doing when someone double clicks it?
    3) how can i hide or disable it?
    any help would greatly be appreciated!!!

    Is this happening on your development computer or after you deploy the app?
    it happenes both in dev and on the servers
    Is this an app you wrote? (I don't recognize this error "Please wait while the document is being processed" as a Crystal reports error)
    no, it's a small dialog that the viewer is generating when the user clicks on the edit icon in the viewer
    If this is on a deployed system - how was the CR runtime deployed?
    uggh, i grabbed the MSI that was referenced in the product.xml
    What is the OS?
    XP on dev, win2k3 on the server
    What is the database?
    MS SQL 2005
    What is the database connection method?
    ADO Client
    Are yo changing the database connection information (e.g.; new server, database)?
    when the report is instantiated, we set the db connections and the report works,  it just kind goes off to never never land when the user click the edit icon in the report viewer.

  • Please wait while ...

    HI ppl,
    Give me some ideas how to display a msg "Please wait while page loads " while jsp page is doing long database operations.
    I know how to achieve this in html pages using javascript when page loads big image but with long database operations javscript trick doesnt works.
    Any thoughts???
    Thanks in advance.

    There is one little sneaky trick that might work, but I'm not sure if this will work all the time. Here's what you do:
    1. page where you fill in a form to store in the database or something. Hit submit
    2. submit to a simple JSP page which has the text you want to show the user, plus all the submitted data in hidden inputs. in the body tag, add an onLoad='document.formname.submit();' to submit the hidden input fields to the page that does the database action.
    The old page SHOULD stay visible until the database operations are completed, as long as you don't generate ANY output before the database transactions are complete... but again don't shoot me if it doesn't (or better yet, shoot the browser for clearing the display buffer to soon) :-)

  • Each time I have a message ''please wait while windows configures iTunes''.

    when i start my itunes each time i have a message ''please wait while windows configures iTunes''. i recently Upgrad to 9.0.2. i already uninstall and install.
    pls help me.
    thank you in advance .

    when i start my itunes each time i have a message ''please wait while windows configures iTunes''.
    The iTunes desktop shortcut is an "advertised shortcut". When you click it, the first thing it does is check the iTunes.msi and determines (against the installation database in there) whether or not there's any files and registry entries and whatnot for iTunes missing on your PC. If it finds something missing, it'll do a repair install of iTunes, which is the "configures" message you're seeing.
    As to why it's always doing it in your case, and fixing it ... we'd better first work out if there's real damage to the iTunes stuff on the PC or if the shortcut/itunes.msi/registry machinery is just a bit confused.
    Apart from the "configures" message you're getting every time you launch iTunes, is it working okay? Are you able to sync, play music, use the Store and so forth without any trouble? Or are you getting other problems as well?

  • Please wait while Windows configures NI DSC Common Tools

    So I let NI Update install a bunch of things over the weekend (only about 18GB of download  ) among which the LabVIEW DSC 2013 SP1 update. Now every time I startup any of my installed 32 Bit versions of LabVIEW, including the version 2013SP1, I get this lovely Windows installer dialog "Please wait while Windows configures NI DSC Common Tools 2013 SP1". This dialog pops up several times during every start of LabVIEW, I believe about four times before showing the startup splash screen and then another 3 or 4 times until LabVIEW is fully up and running.
    Letting those dialogs run or canceling them seems to make no difference at all. Does anybody know what I need to do to fix this annoying problem, short of deinstalling the entire DSC packge?
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

    Thanks Mike.
    I've seen it before after installing the LabVIEW 7.0 Runtime Engine. I have to say that this computer is pretty loaded with all kinds of NI software and other development software. It seems the installer for the LabVIEW 7.0 Runtime and the LabVEW 2013 SP1 DSC Common Tools both stumble over something on this machine that causes some component to not register properly and when then any LabVIEW version is started it attempts to register that component (apparently several times) whenever another component is loaded during LabVIEW initilialization.
    I didn't see any errors during the installation of any of those components (but the LabWindows/CVI update that was also downloaded during the NI Update cycle consistently fails during several of its components during install).
    Most likely it is some .Net assembly that causes all this trouble, and I loath the lack of any more detailed message that would allow to better pinpoint the actual subcomponent that causes this.
    For the time being I simply uninstalled the NI LabVIEW 2013 SP1 DSC Common Tools (and the LabVIEW 7.0 RTE) completely from the machine. Interestingly enough it was not enough to uninstall the entire LabVIEW 2013 SP1 DSC Toolkit but I had to explicitedly go into the downloaded installer and select the MSI file for the DSC Common Tools and select the uninstall option in there to really get rid of these annoying messages during every startup of any 32 bit LabVIEw version on this machine.
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • 'Please wait while Windows Configures'

    On several types of documents, including movie files, sound
    files, excel sheets, and powerpoint, any time I left- or
    right-click my computer brings up a window saying "Please wait
    while Windows Configures Macromedia Contribute 3". This box stays
    up until I click cancel 3 times or it times out in an error
    message. The error message asks for a source to download something,
    but we don't have a source CD since we downloaded direct from the
    company. Is there a way to exorcise this particular function before
    my husband puts the mouse through the monitor?

    I've had the same problem. Any Office Product. I can load
    Contribute by itself and seems to work OK, and if I open any office
    product, its OK. However, if I just click on a file that would
    subsequently open Word or whatever, I get the events JUNEBRIDE
    noted above.
    I can't fix it.

  • Please wait while windows configures microsoft visual studio professional 2013

    After installing visual community 2013 and rebooting visual studio works fine but all other microsoft office programs display "please wait while windows configures microsoft visual studio professional 2013" and continues the installation for
    about 1 minute before the program starts. I tried deleting mso.dll and reinstalling but it is still the same. Any help would be appreciated?

    Hi iwallhead,
    Then can your VS work fine? Anyway, please upload the installation log.
    Use a tool named collect.exe to collect the log file. Download
    collect.exeand
    run it directly. The utility creates a compressed cabinet of all the VS and .NET logs to
    %TEMP%\vslogs.cab. Please upload the
    vslogs.cab file on onedrive.
    I will help check if any install error exists.
    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.

  • "Please wait while Windows configures Adobe Acrobat 9" message

    I installed Acrobat 9 Standard on my Windows XP PC (3.02GHz HT CPU with 1GB RAM and 4.25GB free HD space) and it runs OK if I'm logged on as an Administrator. However, if I log on as a non-privileged user, I get the pop-up message "Please wait while Windows configures Adobe Acrobat 9" for EVERY action I take. That is, if I start an application such as Firefox, I get the message. If I right-click on a file in Explorer to copy it, I get the same message, etc., etc.
    This was a clean installation - all previous Adobe products cleaned off the PC. This is a ridiculous situation. Anybody know what the problem is and how to get rid of it?
    Thanks,
    Mike

    Hi Mike, try deselecting the Acrobat Display PDF in Browser option
    Choose Edit > Preferences > Internet, deselect Display PDF in Browser, and click OK.
    Or disable the Acrobat browser check preference by choosing Edit > Preferences > Internet and deselect Check Browser Settings When Starting Acrobat
    The Acrobat Display PDF in Browser option displays any PDF document opened from the web inside the browser window. If this option isn't selected, PDF documents open in a separate Acrobat window. A corrupt registry setting causes the error to occur each time you start Acrobat.
    When you start Acrobat, it checks your default web browser preferences for compatibility with Acrobat and this preference setting may become corrupt. A corrupt preference file causes the error to occur each time you start Acrobat. Turning off, then back on, "View PDF in browser" forces Acrobat to remove and re-create the applicable registry setting. When "View PDF in browser" is re-enabled, the corrupt registry key is written correctly.
    J.R.

  • UCCX 7.01 hangs after "Please wait while System Parameters are saved"

    Have a new system, here is the order in which I completed the steps:
    OS disk
    OS Patches
    installed CRS
    Installed SQL
    installed SR5
    OS patches again
    initial config
    When going through the initial configuration I get to enter the information for HR Sessions and Codec and it tells me "Please wait while System Parameters are saved".  After a few minutes it refreshes to a blank page and the system is not configured.
    Any suggestions would be appreciated.
    Thanks!

    Rebuilt the damned thing and started from Scratch.  (Need to add to the release notes “UCCX server must be rebuilt a minimum of 3 times” as it seems this always happens.)  After this things are happy.  I did see a differnent set of screens during the initial configuration but wasn't smart enough to document them.
    1.       Installed OS
    2.       Installed UCCX 7.01
    3.       Installed SQL for UCCX 7
    4.       Ran Initial Configuration
    5.       Installed SR5 for UCCX 7
    6.       Installed OS updates 3002.1.5aSR9

  • Launching VB6 Editor after installing Visual Studio 2013 results in "Please wait while Windows configures Microsoft Visual Studio..."

    I have had various versions of Visual Studio installed beside Visual Basic 6.0 Enterprise for some time with no problems, most recently Visual Studio 2012 Premium.
    I recently installed Visual Studio 2013 Premium, and now every time I open VB6 I get a dialog that says "Please wait while Windows configures Microsoft Visual Studio Professional 2013" that shows a progress bar. After it finishes (30 seconds or
    so), it launches again and again and finally VB6 will open. This happens with each instance of VB6, regardless if I've already done it once and never run VS2013 in between.
    If I cancel the dialog, I get this error message in a dialog: "Error 1712. One or more of the files required to restore your computer to its previous state could not be found. Restoration will not be possible." Several more "Please wait"...
    dialogs will appear and if I continue to cancel, eventually I'll get the VB6 editor. It appear to work fine despite the error messages.
    It seems to me that the VS2013 installer flagged some dll's or other files to be rolled back whenever starting VB6. It doesn't appear to be necessary, and I'd like to avoid playing the "Please wait" wack-a-cancel-button game before launching each
    instance of VB6 (or waiting several minutes for no reason). So how do I fix this?
    Note: I've seen something similar happen in Outlook on a different PC when upgrading from 2010 to 2013. The same sort of "Please wait"... dialog would appear each time I opened Outlook. Judging by the "similar" questions that popped up when
    entering this forum post, I'd say this is a general problem with upgrading older versions or installing newer versions of major Microsoft software side-by-side.
    /* Don Reynolds */

    I found the answer!
    I was having the exact same issue, and I was search for a solution and I happened across the following thread: http://social.msdn.microsoft.com/Forums/en-US/f4b0fd38-f4f9-41ea-bd8d-834203a175d2/building-visual-studio-2010-project-triggers-please-wait-while-windows-configures-visual-studio?forum=vssetup&prof=required
    Scroll a small bit down, and there is a post by Barry Wang explaining that you need to use event viewer to find out what is missing. Anyway, I opened event viewer, then open VS 6, then hit refresh in the event viewer (under Windows Logs -> Application)
    and saw a warning message from MsiInstaller. It gave me the following message:
    Detection of product '{9C593464-7F2F-37B3-89F8-7E894E3B09EA}', feature 'Visual_Studio_Professional_x86_enu', component '{E3FF99AA-78B9-4A06-8A74-869E9F65E1FE}' failed.  The resource 'C:\WINDOWS\Microsoft.NET\Framework\URTInstallPath_GAC\' does
    not exist.
    I opened an elevated command prompt, I navigated to the C:\WINDOWS\Microsoft.NET\Framework folder and verified that 'URTInstallPath_GAC' didn't exist, and then I did "md URTInstallPath_GAC".
    Closed and reopened VS 6, and it instantly opened - no "Please wait" message.
    Now this may or may not be the same problem you are having (problem is - I have had it happen on two separate computers now with VS 6 and VS 2013 installed), but it should point you in the right direction. In fact, you should be able to use the Event Viewer
    for anytime the "Please wait" message shows up for any application, and then once there find out what is really missing.

Maybe you are looking for

  • T440s lid not flush with body

    Hi Everyone I just received my T440s and the first thing I noticed when I looked at the front of the machine with the lid closed is that the rubber gasket only touches in the corners.  There is an increasingly large gap between the lid gasket and the

  • Oracle 9i release 2 on Windows ME

    I would like to know whether i can run Oracle 9i release 2 on Windows ME platform ( any turnaround solution ), or do i need to upgrade the O/S to XP. Thanks, Manish Jain.

  • Changin Scale Causes wavy lines

    Premiere Pro CC I'm working w someone else's original cut getting ready to lay to tape (required by client). To create a zoom effect the other editor keyframed the scaling on quite a few shots. For some reason when it is played in the time line it's

  • FTWL and FTW1A transactions

    Hi, Could somebody explain me what is FTWL and FTW1A transaction for? Thank you very much Regards

  • Creating and EOF loop

    hi, newbie I am trying to read in from a text file line by line, I want to do this with a while loop to tie in with the rest of my project. I wonder if anyone would be able to tell me how to create this loop, i have tried using the code below but hav