How to remove FlashUtil10b W2K with getsystemwow64directorya Error

Hello
  I have a business computer with Windows 2000. Yesterday there suddenly was a problem with pictures on IE6. I traced it back to Flash from what I read on the web. The pictures would not display but had a little red x. So I uninstalled Adobe Reader, Air, Shockwave and Flash. I then rebooted and ran ccleaner. Ccleaner showed a reg error to a flash9b.ocx and could not fix it. So I tried deleting it manually to no avail. I ran the flash uninstaller from Adobne's site and it still was there.I then downloaded the Flash 9 archive and reinstalled Flash 9 R28. Then I unregistered the ocx file and then used flashutil to unlock the uninstall and then ran the flash uninstaller. Eveything removed then and then I received an error for flash10b. So I tried to do the same thing but when I try the command %WinDir%\System32\Macromed\Flash\FlashUtil10b.exe -uninstallUnlock I get The procedure entry point GetSystemWow64DirectoryA could not be located in the dynamic link library Kernel32.dll. What is going on!!? I uninstalled IE and used firefox then everything works fine. But still I can not remove flash10b. HELP!!

You can only use Iterator#remove() inside the Iterator loop (thus, after setting the cursor to the element using Iterator#next()).
Also see the API doc: http://java.sun.com/javase/6/docs/api/java/util/Iterator.html
What exactly do you want to do after all?

Similar Messages

  • How to remove a dispatcher with a specific index (conf_indx)

    Hi,
    A few details:
    We are on 11.2.0.3 linux 64bit.
    We use both dedicated and shared connection.
    We have many environments (an environment consists of many schemas) in a single DB.
    For each environment we create at least one service (we know # of services is limited to ~150 in 11.2) - in example for environment with suffix LAB1 we create a service called DB_LAB1
    in example:
    exec dbms_service.create_service('DB_LAB1','DB_LAB1');
    exec dbms_service.start_service('DB_LAB1');
    For clients to be able to connect to the service_name using shared mode - we also create a dispatcher per environment - serving that specific service -
    in example:
    alter system set dispatchers='(index=30)(protocol=tcp)(service=DB_LAB1)(dispatchers=1)'
    I have a few environments which I would like to remove - including their services and dispatchers.
    removing the services is easy using dbms_service - however I did not find a way to remove/delete a dispatcher with a specific index.
    Say I have conf_indx 1..50 used and I would like to remove conf_indx=30 (the one which I created above) - how can I do that?
    Stopping the dispatcher process (Dxxx) does not remove the row from v$dispatcher_config - it only shows that the number of dispatchers for that row is 0.
    Bottom line - how to remove a specific dispatcher with a specific dispatcher-index - without affecting all the other dispatchers which I would like to preserve?
    Thanks.
    Mor

    Ok, but how does one remove some of the applications that are appear in the context menu for a given file type? Is there an asc file which can be edited?
    For example, in my system a PDF can be opened with over 10 applications. I would like to see just the three ones I use: Acrobat, Skim and Preview.
    Thanks in advance.

  • How to remove calendar syncing with more than one calendar?

    I have no idea how I did it, but my Blackberry Curve 8310 somehow synced with TWO calendars.  I always had it syncing with my Outlook one and that still works fine, but somehow it also synced to my Hotmail calendar somewhere along the way - but I haven't used that calendar in a very long time and don't even use my Hotmail account anymore, so it's just confusing everything.  I never meant to tell it to sync to that one and for the life of me I can't figure out how to get it to remove all that calendar info that it added!  Can someone help with instructions?  I'm fairly technically savvy, I just can't figure out how to do it on my own.

    Do you want to remove the hotmail account all together? If so you can delete it from either your carrier's BIS page, or from the personal email setup icon on your device.
    If you just want to remove the calendar try going to Options | Advanced Options | Service Book. Find your Hotmail account's CICAL service book and delete it
    If someone has been helpful please consider giving them kudos by clicking the star to the left of their post.
    Remember to resolve your thread by clicking Accepted Solution.

  • How to remove a timestamp with adobe premiere elements 8

    How do I remove a time and date stamp on a video with adobe premiere elements 8.

    If the camera burns in the date/time stamp, then there is not much that can be done.
    If you need to eliminate that, then the best would be to apply the Effect>Motion>Scale, to enlarge the footage, until the date/time stamp is effectively cropped off by the Frame Size. You might want to look into Effect>Motion>Position, to "move" the date/time stamp closer to an edge.
    The other method is tedious, and requires ideally Adobe AfterEffects. There, you could use the Clone Tool, to "paint out" the date/time stamp, if there is enough clean background to do so.
    A variation on that method would be to Export/Share as a Filmstrip and Import that into Photoshop (if one had Photoshop Extended, there are other formats, that would work too), and then Frame by Frame, use the Clone Tool to remove that image.
    Though not a way to remove it, you can also replace it with a Title, that occupies the area of the date/time stamp, and just cover it up.
    If the camera allows you to turn that "feature" OFF, you would want to do so for newer footage.
    Good luck, and sorry for the bad news.
    Hunt

  • How to remove the element with Iterators

    I have a programm like this
    Vector ts = new Vector();
    ts.add("abc"); ts.add("abd");
    Iterator it = ts.iterator();
    ts.remove("abc");
    it.remove();
    while(it.hasNext())
    { System.out.println("val = " + it.next()); }
    What is the problem if I use remove with iterator. It is giving the error java.lang.IllegalStateException. Can somebody tell me what is wrong with this.

    You can only use Iterator#remove() inside the Iterator loop (thus, after setting the cursor to the element using Iterator#next()).
    Also see the API doc: http://java.sun.com/javase/6/docs/api/java/util/Iterator.html
    What exactly do you want to do after all?

  • How to remove the actions of ON-ERROR trigger.

    Hi to All,
    I have this problem. In my form this is the code in ON-ERROR trigger:
    DECLARE
    Cur$Item           VARCHAR2(100) ;
    Cur$NumMsg     NUMBER := MESSAGE_CODE ;
    Cur$TxtMsg       VARCHAR2(80) := MESSAGE_TEXT;
    BEGIN
       IF Cur$NumMsg = 40202 THEN
           Cur$Item := GET_ITEM_PROPERTY(:SYSTEM.CURSOR_ITEM, PROMPT_TEXT) ;
           Disp_Alert(5, Cur$Item) ;
       END IF ;
    END ;In my Toolbar I have a Button for delete_record and in the WHEN-BUTTON-PRESSED trigger this is the code
    DECLARE
    btn$Ret Number ;
    BEGIN
       Go_Block('MYBLOCK') ;
       IF Get_Record_Property(:system.cursor_record,'MYBLOCK',STATUS) IN('NEW','INSERT','CHANGED') THEN
           SET_RECORD_PROPERTY(:SYSTEM.CURSOR_RECORD,'MYBLOCK',STATUS,QUERY_STATUS) ;
          CLEAR_FORM(NO_VALIDATE) ;
          Go_Block('MYBLOCK')) ;
          EXECUTE_QUERY ;
      ELSE
         DISP_ALERT(btn$Ret,101,'MYITEM');
         IF btn$Ret = ALERT_BUTTON1 THEN
             DO_KEY('DELETE_RECORD') ;
             commit;
         END IF ;
      END IF ;
    END ;The Button DELETERECORD work correctly, but (before exit) the trigger ON-ERROR is executed if the item where the cursor is located is empty.
    Exit a method in order to disable the effect of this trigger when the button DELETERECORD is pressed ? If yes, how ?
    I hope that someone can help me .
    Thank You
    Gaetano

    Set a parameter or global variable in the beginning of your delete procedure. Check the value in the on-error trigger. If it is set then don't do anything in the on-error trigger. Unset the parameter or global variable just before you exit your delete procedure.
    NumbNutz

  • How to remove a PO with account assignment K from MD04

    Hi guys
    I have create a Purchase Order in ME21N with account assignment K and removed the Goods receipt mark in delivery tab.
    Will this PO be removed from MD04 and when?

    Hi
    My requirement is the following: My company have some suppliers which holds inventory for us. My company controlled that with contracts in SAP.
    Som parts of this inventory must be scrapped if demand changes. Therefore we need to create a PO, where my compagny buy the materiels. We will never use these materials so the supplier can just scappe them at his site and there we unmark the Goods receipt mark and use account asignment K.
    But the buyer will see the PO in MD04 and this create confusion, so I would like to be able to remove this from MD04.
    Thanks!
    Sune

  • How to remove duplicate photos with Elements and Revel?

    While on vacation this year, I uploaded pictures from my camera to my iPad to Revel.  When I got home, I copied all of the pictures from my camera to my harddrive on my laptop and imported them into Elements 12.  On my laptop I store photos in subdirectories like this:  \Lisa\albums\Pictures201509.  I found duplicates of most of my photos in \Users\Owner\My Pictures\Adobe\Revel\My Catalog Old.  I would like to clean these up so I only have once copy of each photo on my harddrive.
    I have 3 questions:
    Why did this happen?
    How can I clean this up and not complete mess up my Elements and Revel catalogs?
    How can I prevent this in the future?
    thanks,
    Lisa

    The folks at www.overmacs.com/photosweeper told me that they are upgrading their product so it will work with Apple Photos.  It works now with iPhoto and Aperture.  It has many adjustments to detect same name files, and even same or similar content images.  Monitor their website for a future release.  There is a small fee for the pro version, which is well worth the price.

  • When saving files under options the file name is duplicated how to remove extra folder with the same name

    Under Firefox Options I clicked Saving Files under Downloads but the file name appears twice and an extra folder with the same name is created within the folder i.e.:
    G:\Akbar's Songs\HAMARA FORUMS DOWNLOADS\HAMARA FORUMS DOWNLOADS
    As you can see the folder is repeated, how can I correct this?
    Also the music files I download from a site downloads as WinRar file and I need to open it. Is there an option where the files open automatically in the folder I have selected?
    Many thanks for your help.

    The "beta" version is for testing and may be more prone to problems, so I suggest trying the regular version (9.20) even though it hasn't been updated since 2010.

  • How to remove "Get started with your site"

    Hello,
    I am in the process of automating the creation of a site collection using PowerShell. Everything works fine but I would like to remove or hide the "Get started with your site" that we see the first time we open a site. Deactivating the Getting
    started feature will not remove it.

    For other readers, here's the full script needed:
    # First, get a reference to the target web app:
    $web = Get-SPWeb "[TargetSiteURL]"
    # Assuming that 1) the web page file that you want to examine is
    # the default landing page and 2) Publishing has been activated
    # for the containing site collection, the following gets you a
    # reference to the web part manager:
    $wpm = $web.GetLimitedWebPartManage("pages/default.aspx", [System.Web.UI.WebControls.WebParts.PersonalizationScope]::Shared).WebParts
    # Note the "pages" in the path. Next, the following lists out
    # all web parts on this page:
    $web.GetLimitedWebPartManager("pages/default.aspx",[System.Web.UI.WebControls.WebParts.PersonalizationScope]::Shared).WebParts
    # Review this list, and then identify the PartOrder of the web
    # part you want to remove. It its, say, its "5", you get a
    # reference to web part like so:
    $wp = $wpm.WebParts[5]
    # Now delete the web part:
    $wp.DeleteWebPart
    # and close the web app reference:
    $web.Close()
    It's easier to remove the web part directly from the page, while it's in edit mode, but then the scripted method also works when automation is needed.

  • How to remove CS4 Trial with PS CS4 and LR 2.6 Installed?

    After reading several discussions on the subject, it would appear the following workflow should be followed:
    1 Log on as Administrator
    2 Use Uninstall Programs and select PPro CS4.  Allow the uninstaller to remove as much of PPro CS4 as it can.
    3 Use Adobe Cleanscript CS4 for Windows several times.
    More than likely, I would like to remove all data files produced by PPro CS4 and probably NOT INSTALL the FULL VERSION on this machine.  Other than looking in the My Documents Folder, where else should I be looking?  Will the procedures outlined above leave both PS CS4 and Lightroom 2.6 alone?
    I've got 2 days left on the Trial and wish to uninstall prior to deactivation.
    Any tips, suggestions, gotchas and errata would be most welcomed!

    Here is the link to the PrE Tips & Tricks sub-forum.
    Though it is in the PrE hierarchy, it is a great repository for things that affect all Premiere programs (and some general NLE subjects too). Not everything there is specific to PrE. As a matter of fact, most articles were written with PrPro (and Photoshop) firmly in mind, with annotations where there are differences when referring to PrE, or PSE.
    Good luck,
    Hunt

  • How to remove a dialogue with the placement of the signature in Acrobat XI

    Hello
    I have a problem. After upgrading to Acrobat Standard XI during the signing dialog still shows:
    "To start the certification process, select the Create a new rectangle for signature and then drag to select the area where you want the certifying signature appeared. After marking the desired area to get the next step in the certification process. "
    At the first signing I understand, but when our accounting so signed dozens of invoices per hour, the next step is clickable for her very annoying. I do not understand that there is no check box "Do not show".
    More can be seen on this video: http://screenr.com/gCT7
    Do not know if it can not be turned off somewhere? If a developer reads this, please add the option Do not show this dialog.
    Thank you for every answer.
    regards
    Ales Ulrych

    Hi Ales,
    I have your request an pass it on to the UI design team, however, I wouldn't count on the change. As a bit of background, when you click the Drag New Signature Rectangle button you are changing the state of Acrobat taking it out of the Selection Tool mode (the arrow cursor) and putting it into the Form Editing mode (the cross hair cursor). At this point the user needs someway to naturally get back to the default Selection Tool mode. The next step in the workflow is to display the Certify Document dialog, and either clicking the Sign button or the Cancel button will put the user back into the default mode. Clicking the Cancel button on the dialog you would like to have removed will also put you back into the default Selection Tool mode.
    However, if the dialog was suppressed via the "Do not show again" checkbox then clicking on the toolbar icon that starts the signing process would put you into Form Editing mode and you would have to know how to get back into the default mode if you decided to cancel the signing operation without inscribing a signature form field. It can be done by selecting the Selection Tool toolbar icon, but it is not intuitive. What has to be weighed here is what will the greatest amount of users find to be the easiest workflow. Being able to suppress the Draw Rectangle dialog will add more confusion for the casual user, and the greatest amount of users creating a digital signature on the fly tend to be casual users (that is casual users of digital signatures, not of Acrobat in general).
    I'd suggest that if you want to eliminate the create a signature form field on the fly process then add one to the document as part of your file creation process. That way the signer can right click on the signature field to get to the Certify Document dialog and wouldn't have to worry about adding a signature field. Also, using Seed Value (applied during file creation) you make it so the signer can only add a certifying signature and simplify the workflow to a single click to get the Certify Document dialog.
    Steve

  • How to edit inbound idoc with data errors in multiple segments and reproces

    Hi friends,
    i have a requirement for error handling of inbound sales order(ORDERS04) without using WORKFLOW and WE19.
    i have seen some function modules like edic_* ..
    but my doubt is how to edit the error data(how can i identify the particular error fileds in the segments)and how to reprocess the same idoc.
    Please help me...
    Thanks in advance

    Hi Narasimh,
    Please find the following steps to edit IDOC segment after you find the error using WE02.
    The example codes can be found in website 
    http://www.sapgenie.com/sapedi/idoc_abap.htm
    STEP 1 - Open document to edit
    CALL FUNCTION 'EDI_DOCUMENT_OPEN_FOR_EDIT'
           EXPORTING
                document_number               = t_docnum
           IMPORTING
                idoc_control                  = itab_edidc
           TABLES
                idoc_data                     = itab_edidd
           EXCEPTIONS
                document_foreign_lock         = 1
                document_not_exist            = 2
                document_not_open             = 3
                status_is_unable_for_changing = 4
                OTHERS                        = 5.
    STEP 2 - Loop at itab_edidd and change data
    LOOP AT itab_edidd WHERE segnam = 'E1EDKA1'.
      e1edka1 = itab_edidd-sdata.
      IF e1edka1-parvw = 'LF'.
        e1edka1-partn = t_eikto.
        itab_edidd-sdata = e1edka1.
        MODIFY itab_edidd.
        EXIT.
      ENDIF.
    ENDLOOP.
    STEP 3 - Change data segments
    CALL FUNCTION 'EDI_CHANGE_DATA_SEGMENTS'
               TABLES
                    idoc_changed_data_range = itab_edidd
               EXCEPTIONS
                    idoc_not_open           = 1
                    data_record_not_exist   = 2
                     OTHERS                  = 3.
    STEP 3a - Change control record
    CALL FUNCTION 'EDI_CHANGE_CONTROL_RECORD'
           EXPORTING
                idoc_changed_control         = itab_edidc
           EXCEPTIONS
                idoc_not_open                = 1
                direction_change_not_allowed = 2
                OTHERS                       = 3.
    STEP 4 - Close Idoc
    Update IDoc status
    CLEAR t_itab_edids40.
      t_itab_edids40-docnum      = t_docnum.
      t_itab_edids40-status      = '51'.
      t_itab_edids40-repid       = sy-repid.
      t_itab_edids40-tabnam      = 'EDI_DS'.
      t_itab_edids40-mandt       = sy-mandt.
      t_itab_edids40-stamqu      = 'SAP'.
      t_itab_edids40-stamid      = 'B1'.
      t_itab_edids40-stamno      = '999'.
      t_itab_edids40-stapa1      = 'Sold to changed to '.
      t_itab_edids40-stapa2      = t_new_kunnr.
      t_itab_edids40-logdat      = sy-datum.
      t_itab_edids40-logtim      = sy-uzeit.
      APPEND t_itab_edids40.
      CALL FUNCTION 'EDI_DOCUMENT_CLOSE_EDIT'
           EXPORTING
                document_number  = t_docnum
                do_commit        = 'X'
                do_update        = 'X'
                write_all_status = 'X'
           TABLES
                status_records   = t_itab_edids40
           EXCEPTIONS
                idoc_not_open    = 1
                db_error         = 2
                OTHERS           = 3.
    Hope this will help.
    Regards,
    Ferry Lianto

  • How to Remove "OLAP Functions with right-click" in Workbooks (By VBA?)

    Dear Experts:
    After we created workbooks, to prevent end users from using certain BEx functions, we greyed out some "icons"
    on SAP BEx Menu in the workbooks. But now we have one problems: because we also made "Setting" unable on the menu bar, now we are not able to remove one marked selection: "OLAP Functions with right-click". Is there any way we can disable "OLAP Functions with right-click", then users can only use the normal Excel functions in the workbooks??
    Thank you very much and BR
    SzuFen

    Hello,
    Go to Business Explorer Menu, Select Settings, Uncheck OLAP Function with Right Click and save it as existing workbook.
    I have tried it. It works, when you reopen, it will be still disable..
    Hope it helps.
    San.
    Message was edited by: SAN

  • How to remove white spaces with GUI_Download FM

    Hi Gurus,
    I need to download my text file using GUI_DOWNLOAD FM without leading white spaces, can u pls advice me.
    I am giving the code I am using below.
    CALL FUNCTION 'GUI_DOWNLOAD'
          EXPORTING
      BIN_FILESIZE                    =
            filename                        =  l_filename
        filetype                        = 'ASC'
      APPEND                          = ' '
         WRITE_FIELD_SEPARATOR           = 'X'
      HEADER                          = '00'
         TRUNC_TRAILING_BLANKS           = 'X'
      WRITE_LF                        = 'X'
      COL_SELECT                      = ' '
      COL_SELECT_MASK                 = ' '
      DAT_MODE                        = ' '
      CONFIRM_OVERWRITE               = ' '
      NO_AUTH_CHECK                   = ' '
      CODEPAGE                        = ' '
      IGNORE_CERR                     = ABAP_TRUE
      REPLACEMENT                     = '#'
      WRITE_BOM                       = ' '
      TRUNC_TRAILING_BLANKS_EOL       = 'X'
      WK1_N_FORMAT                    = ' '
      WK1_N_SIZE                      = ' '
      WK1_T_FORMAT                    = ' '
      WK1_T_SIZE                      = ' '
      WRITE_LF_AFTER_LAST_LINE        = ABAP_TRUE
      SHOW_TRANSFER_STATUS            = ABAP_TRUE
    IMPORTING
      FILELENGTH                      =
          TABLES
            data_tab                        = gt_temp
      FIELDNAMES                      =
       EXCEPTIONS
         FILE_WRITE_ERROR                = 1
         NO_BATCH                        = 2
         GUI_REFUSE_FILETRANSFER         = 3
         INVALID_TYPE                    = 4
         NO_AUTHORITY                    = 5
         UNKNOWN_ERROR                   = 6
         HEADER_NOT_ALLOWED              = 7
         SEPARATOR_NOT_ALLOWED           = 8
         FILESIZE_NOT_ALLOWED            = 9
         HEADER_TOO_LONG                 = 10
         DP_ERROR_CREATE                 = 11
         DP_ERROR_SEND                   = 12
         DP_ERROR_WRITE                  = 13
         UNKNOWN_DP_ERROR                = 14
         ACCESS_DENIED                   = 15
         DP_OUT_OF_MEMORY                = 16
         DISK_FULL                       = 17
         DP_TIMEOUT                      = 18
         FILE_NOT_FOUND                  = 19
         DATAPROVIDER_EXCEPTION          = 20
         CONTROL_FLUSH_ERROR             = 21
         OTHERS                          = 22
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

    hi , try this,
    REPORT  ZMP_SALES_HEDER_DOWLNLOAD.
    types:begin of ty_vbak,
          vbeln type vbeln,
          erdat type erdat,
          ernam type ernam,
          netwr type netwr_ak,
          vkorg type vkorg,
          kunnr type kunnr,
          end of ty_vbak.
    data:it_vbak type table of ty_vbak,
         wa_vbak type ty_vbak.
    select-options:s_vbeln for wa_vbak-vbeln.
    start-of-selection.
    select vbeln
            erdat
            ernam
            netwr
            vkorg
            kunnr from vbak
            into table it_vbak
            where vbeln in s_vbeln.
       CALL FUNCTION 'GUI_DOWNLOAD'
         EXPORTING
    *      BIN_FILESIZE                    =
           FILENAME                        = 'C:/temp.XLS'
    *      FILETYPE                        = 'ASC'
    *      APPEND                          = ' '
          WRITE_FIELD_SEPARATOR           = 'X'
    *      HEADER                          = '00'
    *      TRUNC_TRAILING_BLANKS           = ' '
    *      WRITE_LF                        = 'X'
    *      COL_SELECT                      = ' '
    *      COL_SELECT_MASK                 = ' '
    *      DAT_MODE                        = ' '
    *      CONFIRM_OVERWRITE               = ' '
    *      NO_AUTH_CHECK                   = ' '
    *      CODEPAGE                        = ' '
    *      IGNORE_CERR                     = ABAP_TRUE
    *      REPLACEMENT                     = '#'
    *      WRITE_BOM                       = ' '
    *      TRUNC_TRAILING_BLANKS_EOL       = 'X'
    *      WK1_N_FORMAT                    = ' '
    *      WK1_N_SIZE                      = ' '
    *      WK1_T_FORMAT                    = ' '
    *      WK1_T_SIZE                      = ' '
    *    IMPORTING
    *      FILELENGTH                      =
         TABLES
           DATA_TAB                        = IT_VBAK
    *      FIELDNAMES                      =
    *    EXCEPTIONS
    *      FILE_WRITE_ERROR                = 1
    *      NO_BATCH                        = 2
    *      GUI_REFUSE_FILETRANSFER         = 3
    *      INVALID_TYPE                    = 4
    *      NO_AUTHORITY                    = 5
    *      UNKNOWN_ERROR                   = 6
    *      HEADER_NOT_ALLOWED              = 7
    *      SEPARATOR_NOT_ALLOWED           = 8
    *      FILESIZE_NOT_ALLOWED            = 9
    *      HEADER_TOO_LONG                 = 10
    *      DP_ERROR_CREATE                 = 11
    *      DP_ERROR_SEND                   = 12
    *      DP_ERROR_WRITE                  = 13
    *      UNKNOWN_DP_ERROR                = 14
    *      ACCESS_DENIED                   = 15
    *      DP_OUT_OF_MEMORY                = 16
    *      DISK_FULL                       = 17
    *      DP_TIMEOUT                      = 18
    *      FILE_NOT_FOUND                  = 19
    *      DATAPROVIDER_EXCEPTION          = 20
    *      CONTROL_FLUSH_ERROR             = 21
    *      OTHERS                          = 22
       IF SY-SUBRC = 0.
       MESSAGE 'DATA ULOADED TO temp FILE' TYPE 'I'.
       ENDIF.

Maybe you are looking for

  • How to print Group Header on page break in a subreport - CR XI

    Post Author: rickcf CA Forum: General I have a subreport that has 3 groups with only one group that has a heading.  When the report prints and a subreport group is split between two pages (on a page break) I would like the group heading to also print

  • Samba shares no longer visible after migration to systemd

    EDIT: Note the file server is CLI only. I upgraded my file server to systemd about a week ago and have yet to get the Samba share visible from other devices within my network.  Eveything worked fine under initscripts and other than system upgrades th

  • Presentation Director 4.07 can't see displays

    After updating Presentation Director to 4.07, it not only lost my previous schemes, but cannot see either the X61 Tablet's own display or the external connected via dock. If I go to "New" scheme, all the drop down menus are blank for choosing display

  • IDoc - IDoc interfacing with multiple mappings

    Hi, We want to use two different mappings for the same IDoc interface (based on a condition). So we use the ORDERS idoc for a sales scenario and also for a purchase scenario. The sending service is the same for both ORDERS messages, lets call it serv

  • Unwanted Pause?

    Hello Everyone, I would like to ask you for your help.I am building a DVD with motion Menus but there seems to be a problem.When it transition from Motion video to the menu there is a unwanted pause which makes the menu look like it is 2 parts(which