Reports crashes while displaying report progress dialog box

Environment Description:
Architecture: Cleint / Server
Server:
RDBMS: 8.0.5.1.0
OS: Win NT
Client:
Win NT 4.0 Workstation, Service Pack 6
Reports runtime 6.0.5.35.0
Reports built with Reports builder 6.0.5.35.0
Problem Description:
My reports crashes while de 'Report Progress' dialog box is being displayed.
Just before it crashes the dialog box shifts from the centre to the left of the screen and stops.
Any help?

Follow up:
During the crash WinNT displays Dr. Watson saying:
...RWRBE60.exe Exception: divide by zero...
Any help will be appreciated.

Similar Messages

  • Error while displaying report

    I am getting following error while displaying report in sap business one-
    <b>Internal error (-101) occured [Message 131-183]</b>
    I tried resintalling sap but it did not solved the problem.The reports are getting displayed on other pc's but not on my pc.

    Hi Yogesh,
           I haven't installed any patch on my client machine.
                                                                                    Regards,
                                                                                    Dilip Kumbhar

  • You too can display non-modal dialog boxes: LrDialogs.presentFloatingDialog

    Undocumented function: LrDialogs.presentFloatingDialog
    ref: http://feedback.photoshop.com/photoshop_family/topics/sdk_lrdialogs_presentfloatingdialog_ and_showstringsdialog_undocumented
    This works for displaying non-modal dialog box:
    LrFunctionContext.postAsyncTaskWithContext( "test", function( context )
        local LrPhotoPictureView = import 'LrPhotoPictureView'
        local photo = catalog:getTargetPhoto()
        local pictureView = LrPhotoPictureView.makePhotoPictureView{
              width = 400, height = 400, photo = photo,
        local result = LrDialogs.presentFloatingDialog {
            title = "Thumbnail test",
            background_color = LrColor ("white"), -- required for (uncolored) static_text display, else inside of box is black and so can't see black text.
            contents = vf:column {
                vf:static_text {
                    title = photo:getFormattedMetadata ("fileName"),
                pictureView,
                --vf:edit_field { - no sirve, presumably keystrokes are not trapped by box.
                --    bind_to_object = prefs,
                --    value = app:getGlobalPrefBinding( 'tempForTest' ),
                vf:push_button {
                    title = "Click me",
                    action = function( button )
                        app:show{ info="Pushed" } -- glorified call to LrDialogs.presentModalDialog - works.
                    end,
        -- LrDialogs( app:getGlobalPref( 'tempForTest' ), result ) -- no sirve.
    end )
    Enjoy!
    Rob

    jarnoh wrote:
    there is no way to activate previously opened dialog?
    I assume that to be the case, and so it takes a moment to come up if there is much contents.
    jarnoh wrote:
    Doesn't seem to be really useful
    For me, it would be very useful, if it was reliable, but so far, not so good.
    UPDATE: Bug I thought was in non-modal dialog is also in modal dialog (scrolled_view must not be followed by another components in tabbed container - see comments in code below):
    LrFunctionContext.postAsyncTaskWithContext( "tt", function( context )
        local props = LrBinding.makePropertyTable( context )
        props.tv = 0
        local vi = {
            vf:tab_view {
                vf:tab_view_item {
                    identifier = "t1",
                    title = "T1",
                    vf:static_text {
                        title = "temp1"
                vf:tab_view_item {
                    identifier = "t2",
                    title = "T2",
                    vf:scrolled_view {
                        vf:slider {
                            bind_to_object = props,
                            value = LrView.bind( 'tv' ),        
                    -- with this here, Lr crashes after adjusting slider and then switching tabs - comment it out, and all is well:
                    --vf:static_text {
                    --    title = "this cant be here",
        LrDialogs.presentModalDialog {
            title = "test",
            contents = vf:view( vi )
    end )
    R
    Message was edited by: Rob Cole

  • Pass current url as report prarameter while using report viewer web part

    hello everybody
    is there a way to
    pass current url as report prarameter while using report viewer web part
    thanks in advance
    Sergey Vdovin

    Hi Evolex,
    Per my understanding that you want to get the current url and create an parameter to add this URL as its value, right?
    gernerally, we can use some code to get the current url but it almost impossible for us to get it automatically as value of the report parameter.
    In your senario, i suggest you to copy the url and specify values when creating parameters.
    Thanks for your understanding.
    Regards
    Vicky Liu
    If you have any feedback on our support, please click
    here.
    Vicky Liu
    TechNet Community Support

  • Print Progress Dialog box always stays on top

    Since upgrading to InDesign CC I have noticed that all print progress dialog boxes stay on top of all windows, even after switching apps. I find this highly annoying and want it to go away. Is there a preference I can change to make it NOT be on top, especially when I've switched to a different application?

    (I am OP, having account issues)
    Trashing preferences wouldn't help if it is a default behavior, which I think this is since it's been happening since the beginning with CC. I was wondering if this was a behavior that I can change with a preference or if I'm just stuck with it.

  • Is it possible to put colors while displaying report using ALVs?

    Gayathri

    hi
    i think the following code is the ur solution
    TABLES VBAK.
    TYPE-POOLS SLIS.
    * Data Declaration
    TYPES: BEGIN OF T_VBAK,
          VBELN TYPE VBAK-VBELN,
          ERDAT TYPE VBAK-ERDAT,
          ERNAM TYPE VBAK-ERNAM,
          AUDAT TYPE VBAK-AUDAT,
          VBTYP TYPE VBAK-VBTYP,
          NETWR TYPE VBAK-NETWR,
          VKORG TYPE VBAK-VKORG,
          VKGRP TYPE VBAK-VKGRP,
         <b> LINE_COLOR(4) TYPE C,</b>
          END OF T_VBAK.
    DATA: IT_VBAK TYPE STANDARD TABLE OF T_VBAK INITIAL SIZE 0,
          WA_VBAK TYPE T_VBAK.
    * ALV Data Declaration
    DATA: FLDCAT TYPE SLIS_T_FIELDCAT_ALV WITH HEADER LINE,
          GD_LAYOUT TYPE SLIS_LAYOUT_ALV,
          GD_REPID TYPE SY-REPID.
    *      I_EVENTS TYPE SLIS_T_EVENT,
    *      W_EVENTS LIKE LINE OF I_EVENTS.
    START-OF-SELECTION.
    PERFORM DATA_RETRIEVAL.
    PERFORM BLD_FLDCAT.
    PERFORM BLD_LAYOUT.
    PERFORM DISPLAY_ALV_REPORT.
    * Build Field Catalog for ALV Report
    FORM BLD_FLDCAT.
    FLDCAT-FIELDNAME = 'VBELN'.
    FLDCAT-SELTEXT_M = 'Sales Document'.
    FLDCAT-COL_POS = 0.
    *FLDCAT-EMPHASIZE = 'C411'.
    FLDCAT-OUTPUTLEN = 20.
    FLDCAT-KEY = 'X'.
    APPEND FLDCAT TO FLDCAT.
    CLEAR FLDCAT.
    FLDCAT-FIELDNAME = 'ERDAT'.
    FLDCAT-SELTEXT_L = 'Record Date created'.
    FLDCAT-COL_POS = 1.
    FLDCAT-KEY = 'X'.
    APPEND FLDCAT TO FLDCAT.
    CLEAR FLDCAT.
    FLDCAT-FIELDNAME = 'ERNAM'.
    FLDCAT-SELTEXT_L = 'Cteated Object Person Name'.
    APPEND FLDCAT TO FLDCAT.
    CLEAR FLDCAT.
    FLDCAT-FIELDNAME = 'AUDAT'.
    FLDCAT-SELTEXT_M = 'Document Date'.
    FLDCAT-COL_POS = 3.
    FLDCAT-EMPHASIZE = 'C110'.
    APPEND FLDCAT TO FLDCAT.
    CLEAR FLDCAT.
    FLDCAT-FIELDNAME = 'VBTYP'.
    FLDCAT-SELTEXT_L = 'SD Document category'.
    FLDCAT-COL_POS = 4.
    APPEND FLDCAT TO FLDCAT.
    CLEAR FLDCAT.
    FLDCAT-FIELDNAME = 'NETWR'.
    FLDCAT-SELTEXT_L = 'Net Value of the SO in Document Currency'.
    FLDCAT-COL_POS = 5.
    FLDCAT-OUTPUTLEN = 60.
    FLDCAT-DO_SUM = 'X'.
    FLDCAT-DATATYPE = 'CURR'.
    APPEND FLDCAT TO FLDCAT.
    CLEAR FLDCAT.
    FLDCAT-FIELDNAME = 'VKORG'.
    FLDCAT-SELTEXT_L = 'Sales Organization'.
    FLDCAT-COL_POS = 6.
    APPEND FLDCAT TO FLDCAT.
    CLEAR FLDCAT.
    FLDCAT-FIELDNAME = 'VKGRP'.
    FLDCAT-SELTEXT_M = 'Sales Group'.
    FLDCAT-COL_POS = 7.
    FLDCAT-EMPHASIZE = 'C801'.
    APPEND FLDCAT TO FLDCAT.
    CLEAR FLDCAT.
    ENDFORM.
    * Build Layout for ALV Grid Report
    FORM BLD_LAYOUT.
    GD_LAYOUT-NO_INPUT = 'X'.
    GD_LAYOUT-COLWIDTH_OPTIMIZE = 'X'.
    GD_LAYOUT-INFO_FIELDNAME = 'LINE_COLOR'.
    GD_LAYOUT-WINDOW_TITLEBAR = 'GRID DISPLAY'.
    *GD_LAYOUT-TOTALS_TEXT = 'GRAND TOTAL'.
    ENDFORM.
    * Display report using ALV grid
    FORM DISPLAY_ALV_REPORT.
    DATA T_EVENT TYPE SLIS_T_EVENT.
    CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
    EXPORTING
       I_LIST_TYPE           = 0
    IMPORTING
       ET_EVENTS             = T_EVENT.
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    GD_REPID = SY-REPID.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
       I_CALLBACK_PROGRAM                = GD_REPID
       IS_LAYOUT                         = GD_LAYOUT
       I_CALLBACK_TOP_OF_PAGE            = 'TOP_OF_PAGE'
       I_GRID_TITLE                      = 'SALES DOCUMENT HEADER'
       IT_FIELDCAT                       = FLDCAT[]
       I_SAVE                            = 'X'
      TABLES
        T_OUTTAB                          = IT_VBAK
    EXCEPTIONS
       PROGRAM_ERROR                     = 1
       OTHERS                            = 2.
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ENDFORM.
    * Retrieve data from VBAK table and populate itab IT_VBAK
    FORM DATA_RETRIEVAL.
    <b>DATA LD_COLOR(1) TYPE C.</b>
    SELECT VBELN ERDAT ERNAM AUDAT VBTYP NETWR VKORG
    UP TO 20 ROWS
    FROM VBAK
    INTO TABLE IT_VBAK.
    <b>LOOP AT IT_VBAK INTO WA_VBAK.
    LD_COLOR = LD_COLOR + 1.
    IF LD_COLOR = 8.
      LD_COLOR = 1.
    ENDIF.
    CONCATENATE 'C' LD_COLOR '10' INTO WA_VBAK-LINE_COLOR.
    MODIFY IT_VBAK FROM WA_VBAK.
    ENDLOOP.</b>
    ENDFORM.
    FORM TOP_OF_PAGE.
    DATA: T_HEADER TYPE SLIS_T_LISTHEADER,
          W_HEADER TYPE SLIS_LISTHEADER.
    W_HEADER-TYP = 'H'.
    W_HEADER-INFO = 'WELCOME HEADER LIST'.
    APPEND W_HEADER TO T_HEADER.
    W_HEADER-TYP = 'S'.
    W_HEADER-KEY = 'REPORT:'.
    W_HEADER-INFO = SY-REPID.
    APPEND W_HEADER TO T_HEADER.
    W_HEADER-TYP = 'S'.
    W_HEADER-KEY = 'DATE:'.
    CONCATENATE SY-DATUM+6(2) ' / ' SY-DATUM+4(2) ' / ' SY-DATUM(4) INTO W_HEADER-INFO.
    APPEND W_HEADER TO T_HEADER.
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
      EXPORTING
        IT_LIST_COMMENTARY       = T_HEADER.
    ENDFORM.
    reward points,if it is useful

  • File name display in delete dialog box

    In the course of working with photos in Lightroom, I've noticed a small user interface issue that can lead to confusion while deleting photos.
    In Explorer, a highlighted file is directly tied to any action selected via right click. For example, if I have file1 selected and I right click on file2, the focus changes to file2 and it is highlighted.
    In Lightroom, the highlight does not follow when an image is selected via right click. If I'm viewing photo1 and it is highlighted, right clicking on photo2 only changes the filename display above the filmstrip.
    Normally, this change in filename display would be sufficient visual feedback to be comfortable while deleting a file. However, if Lightroom is in the process of "Loading..." an image, there is sometimes a delay in the filename display update and more than once, I've had to pause to make sure I'm deleting the proper image.
    I've noticed this most frequently when switching back from Photoshop. If I've opened a Lightroom image in Photoshop (as a PSD) but decided not to move forward with the work, I'll switch back to Lightroom to delete the newly-created PSD. During this process, I'll hit a "Loading..." delay and and the filename display above the filmstrip will lag as I try to right click and delete what I think is the PSD.
    A simple solution, and one that I'd suspect users would appreciate given the value of RAW images, would be to display the name of the file(s) being deleted in the confirmation dialog box. If it's an important enough decision to warrant a multi-option dialog box, I think there's obvious value in confirming what is being deleted.
    Another item that came to mind -- It would be great if there was a preference setting that locked the user from deleting RAW images. That way, I'd never have to worry about selecting a RAW instead of a PSD and it would address some of the anxiety that comes with placing master images so close to PSDs from later in the workflow.

    Hi
    You can not use  File-Upload UI element inside confirmation dialog ,because there is no provision to add any UI ,except Button.
    Please avoid  my previous reply .
    Best Regards
    Satish Kumar
    Edited by: satish jhariya on Mar 3, 2009 11:29 AM

  • Can we display GUI windows/dialog boxes from two asynchronus threads?

    Hi All,
    I'm facing a problem with asynchronous threads. I've a client-server application where client is a Java application and server is a C++ application running on UNIX m/c. The C++ server is implemented equivalent to a HTTP server which handles the HTTP requests from the java client. So, whenever user select some action on the Java client, say "File/Open" menu, the client sends the equivalent HTTP request to the server, and waits for the response back from the server, and after getting the response displays it on the GUI.
    So far the java client application is single-threaded, and the communication between client-server was only one-way, i.e. all the communication was always initiated by the client.
    We had to change this behavior to make it multi-threaded, or rather two-way communication where kernel while processing any client request might need some response from the GUI. So, we had to create a ServerSocket on java client side, and C++ server is connected to this socket. So, whenever C++ server has to send some message to the GUI, it can send thru this other socket.
    On the java side, it's listening at this ServerSocket port in a separate thread, whenever it receives any request, it has to display a dialog box based on the request.
    Here is my problem coming. The main application thread (which is an AWT-EVENT- thread) has made a http request to the kernel and is blocked until it gets the response back, and in the mean time, the C++ server has sent a message to the GUI thru the other socket, and when I use JOptionPane.showOptionDialog(...), I see the dialog box outline but not the contents, and the same for my main application window.
    So main question here is, can I invoke, say,
    JOptionPane.showOptionDialog(...) on another thread, when the main application thread (rather AWT-EVENT -QUEUE thread) is blocked.
    Please let me know if anyone knows the answer or if has faced the similar problem. It will be a big help.
    thanks,
    Ajay

    You mean to make the HTTP request in a separate thread, like below,
    new Thread ( new Runnable() {
    public void run() {
    server.makeHTTPRequest(...);
    }).start();
    But we cannot do this, as there is one more constraint with our application, that it has to behave like single-threaded from user's perspective. i.e. If user has clicked "File/Open" menu, user has to wait until the "File/Open" action is completed. He cannot do anything in between.
    But if the server sends some message thru the other socket, then it has to displayed, and whatever user select on that dialog box, has to be sent to the server thry the same socket.
    I'm not sure whether this possible.
    Here is what I tried to make the http request in a separate thread, and at the same time, keeping the main thread in a wait state until the thread completes:
    new Thread (new Runnable() {
    public void run() {
    synchronized(server) {
    server.makeHTTPRequest(...);
    server.notify();
    }).start();
    synchronized(server) {
    server.wait();
    Even by doing the above it doesn't work, the GUI just hangs. I think the above code is effectively the same as,invoking directly,
    server.makeHTTPRequest(...);
    All I know is it's quite confusing. Does anyone has insight into it.
    thanks,
    Ajay

  • SBO running in TSRemoteApp crashes when clicking on Modal dialog box

    We have a customer who has installed SAP Business One 8.81.316 PL08 on Windows Server 2008 R2.  The application is accessed by users using RemoteApp.  The application generally runs well, however, when a user is presented with a Modal dialog box (i.e. Do you really want to delete Y/N) and clicks on the dialog box, the foreground RemoteApp session crashes.  If the user then reconnects to the back end session, the application is exactly as it should be, with the dialog box still displayed.
    When connecting by a normal RDP type session, the problem isn't evident.
    Has anyone experienced this behaviour? 

    I realize this is a very old topic, but I've run into the same problem.
    I can't get PrimeFaces modal dialog to work in Internet Explorer 7 using JSF2/facelets/PrimeFaces 2.0.2.
    So I am looking for alternatives, but have not found anything so far.
    Any hints?
    Edited by: burferd on Jun 21, 2010 7:56 PM

  • How to Display save as dialog box.

    Hai all,
    am having a jsp page in which i display some values in Table. if i click a button it should show a save as dialog box, from that i should give a file name then all the content must be save in that file name. Any one give idea to open save as dialogbox from button click.
    Thanks.

    You can t do what you want.
    But you can do something similar..
    In stead of save as do a submit to a servlet and have you servlet download the file to the client
    download by setting your contenttype to
    response.setHeader("Content-Disposition", "attachment; name=\""+filename+"\"; filename=\""+filename+"\";");

  • 11G P2 / bug when displaying pop up dialog box when using 2 displays

    Dialog box are displayed in the center the main display instead in the middle the main window. This cause the dialog to be in an another display when the main window is moved to the second display. This occured when got the error regarding "Select in Navigator" context menu announced in a previous thread.

    My config is two display 1900x12000 ... i place jdev in the second display (not the master) ... when the dialog is displayed ... it is diplayed in the center the master display (sometime in the back some existing other application window).

  • Keep displaying "Install Windows" dialog box and pressing OK button to Restart over and over again

    Hello, I tried to update my laptop from Win8 to Win10 but before that Win 8 need to be upgraded to Win8.1 then Win10. Unfortunately, I encountered issue after installing the free upgrade to WIn10. I decided to use the system recovery and the source is from my USB.  (I created the recovery in USB stick).  The restore was completed and started to do the configuration suddenly my laptop just shutdown due to excessive heat and caused my laptop not to complete the windows 8 installation and ended getting the dialog box "Install Windows". I inserted the USB stick but it seems like its not reading it. I tried F2 - System mode but it only display the Bios and other tests not the usual F2 screen.  I tried F11 and same thing no luck. My question is, how can i make my laptop get back it back to working mode like how to re-install the whole OS and the HP recovery manager or HP configurations. Do i need to buy a CD from HP to recovery my laptop? I appreaciate any feedback from HP or someone who is willing to assist and help.  Thank you in advance. Image screen below: 

    Hi there ,  Thank you for visiting the HP Support Forums and Welcome! This is a great site to get answers and ask questions. I read your post on the HP Support Forums. I understand that you originally had an issue upgrading to Windows 10. After the upgrade you tried to restore to Windows 8 (your previous version) and now you are having issues going back.  I did some research for you. I am going to provide you with some troubleshooting documents I had found. The first document is called Troubleshooting HP System Recovery Problems (Windows 8). If that does not work, please follow this document called Recovering your computer from a USB flash drive. Please follow the troubleshooting steps in this document to see if you can get the USB Recovery Media you had created to work. If the USB stick you had created still will not work after performing the troubleshooting you can either go to the HP Pavilion g6-2330dx Notebook PC Drivers Page and Order Recovery Media-CD/DVD/USB or you can use the following link to create yourself a case number, then call us:
    Step 1. Open link: www.hp.com/contacthp/Step 2. Enter Product number or select to auto detect
    Step 3. Scroll down to "Still need help? Complete the form to select your contact options"
    Step 4. Scroll down and click on: HP contact options - click on Get phone number
    Case number and phone number appear.
    They will be happy to assist you immediately. If you are going to try to Restore Windows 8, Upgrade to Windows 8.1 and then upgrade to Windows 10 again, please read this document called Upgrading to Windows 10.  Hope this helps! Have a great day!

  • Multiple programs crash using a Save As dialog box, suspected cause is interaction of machine with Robohelp

    Hi all,
    Apologies if this is in the wrong area, it could also be related to RoboSource Control.
    I have a problem with my entire system. I am getting regularly kicked out of programs when I try to add an attachment or save something. It occurs when a standard Windows 'Save As' or 'Open file' dialog box is opened to browse to a file path, and this regularly leads to being kicked out of the whole program. This happens in Chrome, all the microsoft office programs, outlook, adobe acrobat reader - everything in fact where I use one of these standard Windows file browsing dialog boxes. The kicking out is pretty indiscriminate - it doesn't happen every time. Sometimes it will take me 5 or 6 attemps to save something or add an attachment, having to reload the program each time. Sometimes, but rarely, it will work first time.
    The only program it doesn't happen in is Roboscreen Capture and Robohelp, which is odd in itself. Both the two other technical writers in my department have both exactly the same issue with their machines, and this never happens to anyone else in the office of about 40 people. The only thing me and the two other technical writers have in common with our machines is that we all have Robohelp and RoboSource Control and Roboscreen Capture.
    We use version control through RoboSource Control with Robohelp, this could be the problem. We are also raising this issue with our IT department.
    Can anyone on here give a helping hand to point me in the right direction?
    Many thanks,
    Matt.

    I've been hanging around these forums for about ten years and that's a new one on me. It's only happening to people with Rh but it doesn't happen in Rh, just about everything else.
    Are you maybe using a very old version of Rh on an operating system it wasn't designed for? I would doubt that as you would be seeing many more problems. What operating system are you using?
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • TS1717 When I held down shift and control while opening iTunes the dialog box said "Visual plug-ins you have installed have been temporarily disabled"

    What do I need to do when I try to start iTunes in safe mode and the dialog box says, "Visual plug-ins you have installed have been temporarily disabled"?

    Click OK. See if iTunes runs any better. Work through the troubleshooting guide.
    What is the issue you've been having?
    tt2

  • Report crashes while formatting refreshed Report in Crystal Enterprise

    Hi,
    I have created a report on Crystal Enterprise 4 based on IDT universe.
    Thereafter I had refreshed report data for viewing layout to get an idea of further formatting improvements.
    While doing subtle changes report gets crashed frequently returning the following error:
    Grid row too large to fit in the page. - [JRC00002186]
    Any idea why this error occurs frequenly and how this can be handled ?
    Regards,
    Ray

    What kind of objects are there on the Report Header?
    Could you try suppressing it to make sure it's one of the objects on this section that's causing the issue?
    -Abhilash

Maybe you are looking for

  • The ForEach Loop Enumerator is Empty - SSIS Error when executing through CMD via VBA

    I am currently working on a SSIS package that is to be triggered through CMD via VBA (Access). All that the package does is read a bunch of files from a folder and upload them into a table in SQL Server. The tricky part comes is that this folder loca

  • Maximum file size when FTP

    I recently tried to upload a file that was 1.18 GB in size via Dreamweaver CS6 FTP The file hung at just over 1GB Is there a maximum size I can FTP

  • Lightbox Gallery Buttons

    I know i'm not the designer girl type, but i'm really trying my best with a website i'm needing. Using the Lightbox gallery, i saw a boring problem that i cant fix.... The Next, Previous, close and loading buttons arent appearing I try to verify the

  • Windows 8/7 can't connect to RDS GW.

    Hey.. We have 2 RDSH, 1 GW, 1Licenseand 1 fileserver(roamingprofiles), all running on 2012 R2. Also a Alpha SSL cert - Wildcard. Everytime we try to connect we get a message in event Viewer saying: "The user "domain\user", on client computer "ip", di

  • Create a new clip for a new scene doesn't work on video import

    For the last few months I cannot get i movie4 to import video with a new clip for each sequence. It will import the video as one only large clip although the button "create a new clip for a new scene" has been selected in the imovie preferences. What