Please Why These Marks ("???????" ) in My List Box ?

hi all ;
Please Tell me :
when i want to add some records in arabic language in list box item as fixed ,,
the result of the arabic record is as a question marks "???" , but the english is not ...
can you tell me why this and how to solve it ....
Best Regards.

Hello;
When i have faced this problem i solved it by configure jdeveloper compiler to work with arabic language.
you can do that by these steps
tools ---> project properties ---> compiler ---> select UTF-8 from charcter encoding combobox then click ok
right click on your projects and do the same.
Hope that helps you
Best regards

Similar Messages

  • How to list files from directory in list box?

    Hi all,
    Here is what I want to implement: I have several pattern files that'd
    be sent to special motor controller. What I want is: display these
    files in the list box on the interface, so that user can click on the
    file he wants, then run the program, and this file will be the input
    to my controller.
    Thank you!

    lv 6.1 attached.
    cheers,
    ~j5
    2006 Ultimate LabVIEW G-eek.
    Attachments:
    Get_File_Names.vi ‏54 KB

  • Event for the List Box in ALV Grid Control

    Hello,
    I have the below urgent requirment.
    I have an ALV Grid Control built using ABAP Objects. In the grid, I have few fields and one of these fields is a List Box. Depending on the values selected, I need to enable or disable some fields. So, is there any event for the List box in ALV Grid Control.
    For ex: I have 2 Fields, Designation and Commission. The designation field is a List Box field having 'Software Engineer' and 'Manager' as values. When I select 'Software Engineer', the commission field should be disabled. When I select 'Manager', the comission field should be enabled.
    Early reply is hightly appreciated.
    Priya

    REPORT  ZTEST1234    MESSAGE-ID ZZ                           .
    DATA: G_GRID TYPE REF TO CL_GUI_ALV_GRID.
    DATA: L_VALID TYPE C,
          V_FLAG,
          V_DATA_CHANGE,
          V_ROW TYPE LVC_S_ROW,
          V_COLUMN TYPE LVC_S_COL,
          V_ROW_NUM TYPE LVC_S_ROID.
    DATA: OK_CODE LIKE SY-UCOMM,
          SAVE_OK LIKE SY-UCOMM,
          G_CONTAINER1 TYPE SCRFNAME VALUE 'TEST',
          GS_LAYOUT TYPE LVC_S_LAYO.
    DATA:BEGIN OF  ITAB OCCURS 0,
         VBELN LIKE LIKP-VBELN,
         POSNR LIKE LIPS-POSNR,
         COMISN(10),
         CELLCOLOR TYPE LVC_T_SCOL, "required for color
         DROP(20),
        <b> HANDLE_STYLE TYPE LVC_T_STYL,</b>
         END OF ITAB.
    *       CLASS lcl_event_handler DEFINITION
    CLASS LCL_EVENT_HANDLER DEFINITION .
      PUBLIC SECTION .
        METHODS:
    **Hot spot Handler
        HANDLE_HOTSPOT_CLICK FOR EVENT HOTSPOT_CLICK OF CL_GUI_ALV_GRID
                          IMPORTING E_ROW_ID E_COLUMN_ID ES_ROW_NO,
    <b>**Handler to Check the Data Change
        HANDLE_DATA_CHANGED FOR EVENT DATA_CHANGED
                             OF CL_GUI_ALV_GRID
                             IMPORTING ER_DATA_CHANGED
                                       E_ONF4
                                       E_ONF4_BEFORE
                                       E_ONF4_AFTER,</b>
    **Double Click Handler
        HANDLE_DOUBLE_CLICK FOR EVENT DOUBLE_CLICK OF CL_GUI_ALV_GRID
                                         IMPORTING E_ROW E_COLUMN ES_ROW_NO.
    ENDCLASS.                    "lcl_event_handler DEFINITION
    *       CLASS lcl_event_handler IMPLEMENTATION
    CLASS LCL_EVENT_HANDLER IMPLEMENTATION.
    *Handle Hotspot Click
      METHOD HANDLE_HOTSPOT_CLICK .
        CLEAR: V_ROW,V_COLUMN,V_ROW_NUM.
        V_ROW  = E_ROW_ID.
        V_COLUMN = E_COLUMN_ID.
        V_ROW_NUM = ES_ROW_NO.
        MESSAGE I000 WITH V_ROW 'clicked'.
      ENDMETHOD.                    "lcl_event_handler
    *Handle Double Click
      METHOD  HANDLE_DOUBLE_CLICK.
      ENDMETHOD.                    "handle_double_click
    <b>**Handle Data Change
      METHOD HANDLE_DATA_CHANGED.
        DATA: X_CHANGE TYPE LVC_S_MODI,
                X_FINAL TYPE ITAB,
                L_FLAG,
                LS_OUTTAB LIKE LINE OF ITAB.
        DATA: LS_EDIT TYPE LVC_S_STYL,
              LT_EDIT TYPE LVC_T_STYL.
        LOOP AT ER_DATA_CHANGED->MT_GOOD_CELLS INTO X_CHANGE.
          IF X_CHANGE-FIELDNAME = 'DROP' AND X_CHANGE-VALUE = 'S/W ENGINEER'.
            LS_EDIT-FIELDNAME = 'COMISN'.
            LS_EDIT-STYLE = CL_GUI_ALV_GRID=>MC_STYLE_DISABLED.
            LS_EDIT-STYLE2 = SPACE.
            LS_EDIT-STYLE3 = SPACE.
            LS_EDIT-STYLE4 = SPACE.
            LS_EDIT-MAXLEN = 8.
            INSERT LS_EDIT INTO TABLE LT_EDIT.
            INSERT LINES OF LT_EDIT INTO TABLE LS_OUTTAB-HANDLE_STYLE.
            MODIFY ITAB INDEX X_CHANGE-ROW_ID FROM LS_OUTTAB  TRANSPORTING
                                              HANDLE_STYLE .
          else.
            LS_EDIT-FIELDNAME = 'COMISN'.
            LS_EDIT-STYLE = CL_GUI_ALV_GRID=>MC_STYLE_ENABLED.
            LS_EDIT-STYLE2 = SPACE.
            LS_EDIT-STYLE3 = SPACE.
            LS_EDIT-STYLE4 = SPACE.
            LS_EDIT-MAXLEN = 8.
            INSERT LS_EDIT INTO TABLE LT_EDIT.
            INSERT LINES OF LT_EDIT INTO TABLE LS_OUTTAB-HANDLE_STYLE.
            MODIFY ITAB INDEX X_CHANGE-ROW_ID FROM LS_OUTTAB  TRANSPORTING
                                              HANDLE_STYLE .
          ENDIF.
        ENDLOOP.
        CALL METHOD G_GRID->REFRESH_TABLE_DISPLAY
          EXCEPTIONS
            FINISHED = 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.
      ENDMETHOD.                    "HANDLE_DATA_CHANGED</b>
    ENDCLASS.                    "LCL_EVENT_HANDLER IMPLEMENTATION
    *&             Global Definitions
    DATA:      G_CUSTOM_CONTAINER TYPE REF TO CL_GUI_CUSTOM_CONTAINER,"Container1
                G_HANDLER TYPE REF TO LCL_EVENT_HANDLER. "handler
    *- Fieldcatalog for First and second Report
    DATA: IT_FIELDCAT  TYPE  LVC_T_FCAT,
          X_FIELDCAT TYPE LVC_S_FCAT,
          LS_VARI  TYPE DISVARIANT.
    *                START-OF_SELECTION
    START-OF-SELECTION.
      SELECT VBELN
             POSNR
             FROM LIPS
             UP TO 20 ROWS
             INTO CORRESPONDING FIELDS OF TABLE ITAB.
    END-OF-SELECTION.
      IF NOT ITAB[] IS INITIAL.
        CALL SCREEN 100.
      ELSE.
        MESSAGE I002 WITH 'NO DATA FOR THE SELECTION'(004).
      ENDIF.
    *&      Form  CREATE_AND_INIT_ALV
    *       text
    FORM CREATE_AND_INIT_ALV .
      DATA: LT_EXCLUDE TYPE UI_FUNCTIONS.
      CREATE OBJECT G_CUSTOM_CONTAINER
             EXPORTING CONTAINER_NAME = G_CONTAINER1.
      CREATE OBJECT G_GRID
             EXPORTING I_PARENT = G_CUSTOM_CONTAINER.
    * Set a titlebar for the grid control
      CLEAR GS_LAYOUT.
      GS_LAYOUT-GRID_TITLE = TEXT-003.
       <b>GS_LAYOUT-STYLEFNAME = 'HANDLE_STYLE'.</b>
      GS_LAYOUT-ZEBRA = SPACE.
      GS_LAYOUT-CWIDTH_OPT = 'X'.
      GS_LAYOUT-NO_ROWMARK = 'X'.
      GS_LAYOUT-CTAB_FNAME = 'CELLCOLOR'.
    <b>  CALL METHOD G_GRID->REGISTER_EDIT_EVENT
        EXPORTING
          I_EVENT_ID = CL_GUI_ALV_GRID=>MC_EVT_MODIFIED.</b>
      CREATE OBJECT G_HANDLER.
      SET HANDLER G_HANDLER->HANDLE_DOUBLE_CLICK FOR G_GRID.
      SET HANDLER G_HANDLER->HANDLE_HOTSPOT_CLICK FOR G_GRID.
    <b>  SET HANDLER G_HANDLER->HANDLE_DATA_CHANGED FOR G_GRID.</b>
      DATA: LS_CELLCOLOR TYPE LVC_S_SCOL. "required for color
      DATA: L_INDEX TYPE SY-TABIX.
      "Here i am changing the color of line 1,5,10...
      "so you can change the color of font conditionally
      LOOP AT ITAB.
        L_INDEX = SY-TABIX.
        IF L_INDEX = 1 OR L_INDEX = 5 OR L_INDEX = 10.
          LS_CELLCOLOR-FNAME = 'VBELN'.
          LS_CELLCOLOR-COLOR-COL = '6'.
          LS_CELLCOLOR-COLOR-INT = '0'.
          LS_CELLCOLOR-COLOR-INV = '1'.
          APPEND LS_CELLCOLOR TO ITAB-CELLCOLOR.
          MODIFY ITAB INDEX L_INDEX TRANSPORTING CELLCOLOR.
          LS_CELLCOLOR-FNAME = 'POSNR'.
          LS_CELLCOLOR-COLOR-COL = '6'.
          LS_CELLCOLOR-COLOR-INT = '0'.
          LS_CELLCOLOR-COLOR-INV = '1'.
          APPEND LS_CELLCOLOR TO ITAB-CELLCOLOR.
          MODIFY ITAB INDEX L_INDEX TRANSPORTING CELLCOLOR.
        ENDIF.
      ENDLOOP.
    * setting focus for created grid control
      CALL METHOD CL_GUI_CONTROL=>SET_FOCUS
        EXPORTING
          CONTROL = G_GRID.
    * Build fieldcat and set editable for date and reason code
    * edit enabled. Assign a handle for the dropdown listbox.
      PERFORM BUILD_FIELDCAT.
      PERFORM  SET_DRDN_TABLE.
    * Optionally restrict generic functions to 'change only'.
    *   (The user shall not be able to add new lines).
      PERFORM EXCLUDE_TB_FUNCTIONS CHANGING LT_EXCLUDE.
    **Vaiant to save the layout
      LS_VARI-REPORT      = SY-REPID.
      LS_VARI-HANDLE      = SPACE.
      LS_VARI-LOG_GROUP   = SPACE.
      LS_VARI-USERNAME    = SPACE.
      LS_VARI-VARIANT     = SPACE.
      LS_VARI-TEXT        = SPACE.
      LS_VARI-DEPENDVARS  = SPACE.
      CALL METHOD G_GRID->REGISTER_EDIT_EVENT
        EXPORTING
          I_EVENT_ID = CL_GUI_ALV_GRID=>MC_EVT_MODIFIED.
    **Calling the Method for ALV output
      CALL METHOD G_GRID->SET_TABLE_FOR_FIRST_DISPLAY
        EXPORTING
          IT_TOOLBAR_EXCLUDING = LT_EXCLUDE
          IS_VARIANT           = LS_VARI
          IS_LAYOUT            = GS_LAYOUT
          I_SAVE               = 'A'
        CHANGING
          IT_FIELDCATALOG      = IT_FIELDCAT
          IT_OUTTAB            = ITAB[].
    * Set editable cells to ready for input initially
      CALL METHOD G_GRID->SET_READY_FOR_INPUT
        EXPORTING
          I_READY_FOR_INPUT = 1.
    ENDFORM.                               "CREATE_AND_INIT_ALV
    *&      Form  EXCLUDE_TB_FUNCTIONS
    *       text
    *      -->PT_EXCLUDE text
    FORM EXCLUDE_TB_FUNCTIONS CHANGING PT_EXCLUDE TYPE UI_FUNCTIONS.
    * Only allow to change data not to create new entries (exclude
    * generic functions).
      DATA LS_EXCLUDE TYPE UI_FUNC.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_COPY_ROW.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_DELETE_ROW.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_APPEND_ROW.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_INSERT_ROW.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_MOVE_ROW.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_COPY.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_CUT.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_PASTE.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_PASTE_NEW_ROW.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_UNDO.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
    ENDFORM.                               " EXCLUDE_TB_FUNCTIONS
    *&      Form  build_fieldcat
    *       Fieldcatalog
    FORM BUILD_FIELDCAT .
      DATA: L_POS TYPE I.
      L_POS = L_POS + 1.
      X_FIELDCAT-SCRTEXT_M = 'Delivery'(024).
      X_FIELDCAT-FIELDNAME = 'VBELN'.
      X_FIELDCAT-TABNAME = 'ITAB'.
      X_FIELDCAT-COL_POS    = L_POS.
      X_FIELDCAT-NO_ZERO    = 'X'.
      X_FIELDCAT-OUTPUTLEN = '10'.
      X_FIELDCAT-HOTSPOT = 'X'.
      APPEND X_FIELDCAT TO IT_FIELDCAT.
      CLEAR X_FIELDCAT.
      L_POS = L_POS + 1.
      X_FIELDCAT-SCRTEXT_M = 'Item'(025).
      X_FIELDCAT-FIELDNAME = 'POSNR'.
      X_FIELDCAT-TABNAME = 'ITAB'.
      X_FIELDCAT-COL_POS    = L_POS.
      X_FIELDCAT-OUTPUTLEN = '5'.
      APPEND X_FIELDCAT TO IT_FIELDCAT.
      CLEAR X_FIELDCAT.
      L_POS = L_POS + 1.
      X_FIELDCAT-SCRTEXT_M = 'Drop'(025).
      X_FIELDCAT-FIELDNAME = 'DROP'.
      X_FIELDCAT-TABNAME = 'ITAB'.
      X_FIELDCAT-COL_POS    = L_POS.
      X_FIELDCAT-OUTPUTLEN = '5'.
      X_FIELDCAT-EDIT = 'X'.
      X_FIELDCAT-DRDN_HNDL = '1'.
      X_FIELDCAT-DRDN_ALIAS = 'X'.
      APPEND X_FIELDCAT TO IT_FIELDCAT.
      CLEAR X_FIELDCAT.
      L_POS = L_POS + 1.
      X_FIELDCAT-SCRTEXT_M = 'Comissn'(025).
      X_FIELDCAT-FIELDNAME = 'COMISN'.
      X_FIELDCAT-TABNAME = 'ITAB'.
      X_FIELDCAT-COL_POS    = L_POS.
      X_FIELDCAT-OUTPUTLEN = '10'.
      X_FIELDCAT-EDIT = 'X'.
      APPEND X_FIELDCAT TO IT_FIELDCAT.
      CLEAR X_FIELDCAT.
    ENDFORM.                    " build_fieldcat
    *&      Module  STATUS_0100  OUTPUT
    *       text
    MODULE STATUS_0100 OUTPUT.
      SET PF-STATUS 'MAIN100'.
      SET TITLEBAR 'MAIN100'.
      IF G_CUSTOM_CONTAINER IS INITIAL.
    **Initializing the grid and calling the fm to Display the O/P
        PERFORM CREATE_AND_INIT_ALV.
      ENDIF.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    *&      Module  USER_COMMAND_0100  INPUT
    *       text
    MODULE USER_COMMAND_0100 INPUT.
      CASE SY-UCOMM.
        WHEN 'BACK'.
          LEAVE TO SCREEN 0.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0100  INPUT
    *&      Form  SET_DRDN_TABLE
    *       text
    FORM SET_DRDN_TABLE.
      DATA:LT_DRAL TYPE LVC_T_DRAL,
            LS_DRAL TYPE LVC_S_DRAL.
      LS_DRAL-HANDLE = '1'.
      LS_DRAL-VALUE =  'S/W Engineer'.
      LS_DRAL-INT_VALUE =  'S/W Engineer'.
      APPEND LS_DRAL TO LT_DRAL.
      LS_DRAL-HANDLE = '1'.
      LS_DRAL-VALUE =  'Manager'.
      LS_DRAL-INT_VALUE =  'Manager'.
      APPEND LS_DRAL TO LT_DRAL.
    **Setting the Drop down table for Reason Code
      CALL METHOD G_GRID->SET_DROP_DOWN_TABLE
        EXPORTING
          IT_DROP_DOWN_ALIAS = LT_DRAL.
    ENDFORM.                               " set_drdn_table
    Regards
    vijay

  • Please help !!!! How to get data into dropdown list box

    Hi all,
    I want to display data from ResultSet object to drop down
    list box in my JSP form.
    How should I proceed ?
    Please help me what should I do ?
    Thanks for any help in advance.
    savdeep.

    dear hermione
    it depends on the compexity of the application
    i could also have suggested to use a JSP custom tag
    that can populate the values stored in a table. I
    guess u must have used that approach too.
    But why to make the things complicated when they can
    be done in an easier manner.
    The author seems to be a beginner and telling him to
    call Helper classes just to make a drop down is not
    at all feasible.
    what do u say?I believe it is best to start with a proper approach than finding quick solutions. Of course, JSTL sql tags allow you to execute queries within the JSP but they look cleaner in code.
    Certainly, if the OP is a beginner in JSP (presuming that he has some background of core Java and OOP), I don't see any reason why there should not be a separate class with a well-defined responsibility. This will help the OP develop a thinking towards designing a good solution rather than simply patching in bits of procedural code to get the job done. There is a difference in doing something and doing in properly. :)
    I suppose I am a little wary since I have been working too long maintaining code developed by others. A simple change in the requirement needs a lot of impact on several components.

  • How to use value in a drop-down list box as "With these Values" parameter?

    Hello, new user.
    I have a drop-down list box on Page 1, upon which the user can choose a study number. The List Box is named "P1_STUDY_NBR".
    Then I have a list, one entry of which goes to my master-detail form, which is Page 6. I would like it to go to the study number that the user choose on Page 1.
    In my target on the create/edit list entry, I put in "Page in this Application", "Page 6", then in Set these items, I put in
    P6_STUDY_NBR
    My question is what to use in With these values, where I want the contents of the P1_STUDY_NBR. I tried:
    &P1_STUDY_NBR
    and that does not work. If I put in one of the study numbers, like 336-00, then it does work, but I want it to pass the study number the user chooses in the list box. How do I refer to the contents of P1_STUDY_NBR?
    -Mary

    Yes, that does work, thanks. I'm now getting the default value I was putting in yesterday rather than an error message, so there must be something loading it, but I'll hunt around for what process might be doing that, or try re-creating the master-detail form again.

  • Why am I getting a blue box with question mark instead of logo image?  It happens in my signature (in gmail) and in mailchimp (again, only with the logo).

    Why am I getting a blue box with question mark instead of logo image?  It happens in my signature (in gmail) and in mailchimp (again, only with the logo).

    The question mark in the box, if it looks like this:   means that safari cannot find the linked image.  On windows machines, this would be the equivilant of  the small "page-with-a-red-X" logo that appears in the same scenario.  Check the reference to the image and make sure that the image is in the correct location, and is accessable by the reference.

  • Why is list box field highlighted?

    I am creating a fillable PDF form using Acrobat Pro X (10.1.7) that is intended to be filled in using Reader or by hand. I have only one field that is a list box (with 43 items), and for some unknown reason, in both Acrobat Pro X and in Reader XI, it is being highlighted in blue even when all other fields are not highlighted (Highlight Existing Fields off). When the other fields are highlighted in light blue, the list box field is highlighted in a darker blue. It displays the same behavior whether the fill color is white or no color. When I print the form in black and white, which is how it will normally be printed, the field is filled in with a medium gray. I'm an Acrobat newbie so I haven't done anything fancy with the field. I need to get rid of the highlighting ASAP and I don't have a clue about what could be wrong. Does anyone have any suggestions?

    Perhaps "highlighting" is not the correct term for what is happening, sorry for the misuse of terminology. I need this field to have no background color and I don't understand why it does. I have difficulty believing this is a standard display methology because the field prints as medium gray on a B&W printer, and the black text is hardly visible as a result.
    The State field is a drop-down list and has no color. Do I need to change the County field to a drop-down list as well to get rid of this problem?

  • Am trying to install CS6 on my new MacBook Pro. Downloaded installer from web. Ran installer, got a dialog asking me to "Please close these applications to continue:..." There were two items on the list: Safari

    "Please close these applications to continue:..." There were two items on the list: Safari & SafariNotificati (sic). I closed Safari, no problem. But could not find SafariNotifications.
    What I have done so far:
    Opened "Force Quit" and the only applications listed as open now are "Finder" and "Adobe Application Manager".
    Pressed "Continue" on the "Please close..." dialoge
    Still asks me to close SafariNotificati
    Opened Safari
    Opened Safari Preferences > Notifications Tab
    There are no notifications listed. The list is blank.
    Closed Safari again.
    Checked Force Quit again (once again the only applications listed are "Finder" and "Adobe Application Manager"
    Once again if I try to move on with the install by clicking on the "Continue" button Adobe asks me to close SafariNotificati
    What should I do now?
    My System Info
    MackBook Pro (Retina, 15-inch, Mid 2014)
    OS X Yosemite
    Ver 10.10.1

    use your activity monitor to find running processes.

  • How can I have multiple-selection list box "select at least one checkbox" option active only when the section it's in is visible?

    Hi, I'm using SP13 and InfoPath2013.
    I created a custom form and published it to SP13 document library.  This form has many MSLB.  Depending on the checkboxes selected in the 1st MSLB, the other MSLB will either hide or show.  Each MSLB is in its own section.  The requirement
    is to have each MSLB to have at least one checkbox selected.  Well, the problem is that when that MSLB isnot checked in the 1st MSLB it is not visible and shouldn't require any checkbox to be selected.  However, the form can't get submitted instead
    an error dialog would pop up and ask user to make a selection for MSLB that is not even displayed.  Is there any way to fix this besides unchecking all MSLB to be not required at least one selection?  Thank you.

    Eric, 
    I follow your reply post here and still doesn't work.  I also noticed your screen shot of selecting a field is not the same as what I see in InfoPath 2013.  
    Here is what I did, 
    1.Check At least one selection required for
    these Multiple-selection List Boxes
    as you want .
    2.Create a Formatting  rule for the 2nd
    Multiple-selection List Box.
    3.Add a  Condition as below:
    4.  I get a validation error if I don't
    select at least one checkbox in the hidden MSLB control when submitting.
    I think I'm following all the steps correctly
    but please let me know if I'm not.

  • Adobe, please fix these bugs/features in Muse

    So, here are a couple of really annoying things/bugs that keep happening in Muse.
    (I've been working with the software for about three weeks, latest Muse CC update, on a MBP Retina, OS X 10.9.5, NVIDIA GeForce GT 650M 1024 MB + 16 GB 1600 MHz DDR3)
    1. When I try to hit "Preview" and browse my website, the links to other pages than the initial one don't work, and you need to go back to the "Plan" and open each one of them individually, and then hit "Preview" in all of them, in order to be able to browse the entire website without getting blank pages.. Is there any way to come around this, and be able to set Muse to render ALL of the pages before previewing the website?
    2. When I try to adjust the sizes of thumbnails in a slideshow, and zoom in on guides, it's IMPOSSIBLE to make them align perfectly to ANYTHING! The thumbnails just keep moving and popping around, and they don't follow the mouse movements at all, they just make rough changes in sizes and are very hard to work with. It doesn't matter if I zoom in 800% for example, things don't move or adjust smoothly at all, like in Illustrator for example.
    3. Sometimes, it's impossible to copy a slideshow- it just freezes, even if I click down and select the thumbnail box. It seems like a bug, since the copy function comes back after I quit and restart the software, or just make a new slideshow from scratch and then delete it (seems to re-set something, I don't have a clue). The "copy" button under the "Edit" menu is simply shadowed out.. Why is that? It would be really nice to be able to alt-click-drag-and-drop these things, especially when you try to build a portfolio.. But, this is impossible for me, at the moment- the plus-sign in the green circle pops up, but it just moves the thumbnail section, it doesn't copy it..
    4. Is there ANY way to make all slideshow thumbnail sections moveable? Even if they have the option "Free Form Thumbnails" deselected? What if I need to move lots of galleries on the same page, that need to have different form options selected, for visual reasons? At the moment, I can't select all different thumbnail galleries on my page, and move them all at the same time, which is quite irritating..
    5. When I click a thumbnail in the middle or at the end of the gallery, there's a fast flash of previous images in the gallery, before the chosen image is shown fullscreen. Is there any way to get rid of this unwanted visual glitch? I just want them all to open like the very first image in the gallery, without any ghosting of previous images.. I have the horizontal swipe effect in these galleries, if that makes any difference..
    6. Is there any way to make custom adjustments to thumbnail sizes, inserting a fixed width and height? Or, save a slideshow as a template, to use the same properties in another gallery?
    7. Will it ever be possible to have different sizes of thumbnails in the same slideshow? What's the best way to make a gallery in a portfolio with artworks of different aspect ratios?
    8. Why is not my embedded Youtube videos included when I export the project like a html-file? There's only a broken link/code in the video area, at the moment.. Will this be a problem later, when I really need to upload it on my server?
    9. Is it not possible at all to import svg-files in a slideshow? Why is it possible in external widgets, but not in the built-in slideshow widget? I can place and import svg-files into the page, but not drag or import them to the slideshow itself..
    I really like Muse, but I find it very hard and irritating to work with lots of times, so please fix these issues, or tell me how to avoid them, thanks!

    A BIG THANK YOU for taking the time to share your thoughts regarding how to improve Muse. I've interspersed comments and clarifications below.
    1. When I try to hit "Preview" and browse my website, the links to other pages than the initial one don't work, and you need to go back to the "Plan" and open each one of them individually, and then hit "Preview" in all of them, in order to be able to browse the entire website without getting blank pages.. Is there any way to come around this, and be able to set Muse to render ALL of the pages before previewing the website?
    There are multiple ways to preview your work when using Muse.
    Preview Mode - When you click the Preview button at the top right to open Preview Mode Muse will generate the HTML, CSS, JavaScript, images and assets for the page in the front Design view (or the Home page, if you're not in Design view) in the Preview tab/window. If you navigate to a different page by following a hyperlink Muse will generate the code for that page and display it. This in-app preview uses the OS browser, so the display uses Safari on the Mac or IE on Windows. Since the code for each page is generated/updated when it's navigated to, navigation to a page for the first time is slow.
    Preview Page in Browser - If you select this option the code for the current page is generated and opened in your default browser. If you follow a link to another page, it will fail with a 404 file not found error, since this option only previews a single page. It's fast, but limited to one page.
    Preview Site in Browser - If you select this option the code for your entire site will be generated and your home page will be opened in your default browser. You can freely navigate between pages via hyperlinks, since the preview exported the code for all the pages of your site. This option is very convenience for previewing your full site, but is much slower for a multi-page site than Preview Page in Browser.
    Publish - If you select this option you can create a free temporary website on Adobe hosting. This is very handy when you want to view your site on multiple devices or have someone else review the site before you Publish or Upload the site to its production hosting location.
    2. When I try to adjust the sizes of thumbnails in a slideshow, and zoom in on guides, it's IMPOSSIBLE to make them align perfectly to ANYTHING! The thumbnails just keep moving and popping around, and they don't follow the mouse movements at all, they just make rough changes in sizes and are very hard to work with. It doesn't matter if I zoom in 800% for example, things don't move or adjust smoothly at all, like in Illustrator for example.
    The web is pixel based. There are (mostly) no fractional amounts. While you can zoom in, ultimately your output will be aligned (and limited to) whole pixel boundaries.
    When working with thumbnails, the ramifications of working in whole pixel based media are magnified. For example, if you're using tiled thumbnails and have an 8 wide layout the total width will have to be a multiple of 8. You can only increase all 8 by whole pixel increments.
    3. Sometimes, it's impossible to copy a slideshow- it just freezes, even if I click down and select the thumbnail box. It seems like a bug, since the copy function comes back after I quit and restart the software, or just make a new slideshow from scratch and then delete it (seems to re-set something, I don't have a clue). The "copy" button under the "Edit" menu is simply shadowed out.. Why is that? It would be really nice to be able to alt-click-drag-and-drop these things, especially when you try to build a portfolio.. But, this is impossible for me, at the moment- the plus-sign in the green circle pops up, but it just moves the thumbnail section, it doesn't copy it..
    If Muse is truly freezing, we'd need to understand more about the steps involved. What I expect you're encountering is the fact you can copy and paste an entire widget, but you cannot copy and paste the individual parts of a widget. If you select the widget cut and copy are enabled. If you click a second time to select one part of the widget, then cut and copy are disabled. Most the widgets don't support having two parts of the same type (i.e. two next buttons, two sets of thumbnails, etc.) so at least copy and paste can't currently be supported. Those are limitations we'd like to remove, but for now they are the current limitations when working with widgets.
    4. Is there ANY way to make all slideshow thumbnail sections moveable? Even if they have the option "Free Form Thumbnails" deselected? What if I need to move lots of galleries on the same page, that need to have different form options selected, for visual reasons? At the moment, I can't select all different thumbnail galleries on my page, and move them all at the same time, which is quite irritating..
    I believe you're asking to be able to simultaneously select the thumbnail sets for multiple slideshow widgets? You're correct, that's currently not supported. The selection model is limited to selecting items that are siblings in the Layers panel. You can select two slideshow widgets, but not the parts inside one widget at the same time as the parts inside another.
    5. When I click a thumbnail in the middle or at the end of the gallery, there's a fast flash of previous images in the gallery, before the chosen image is shown fullscreen. Is there any way to get rid of this unwanted visual glitch? I just want them all to open like the very first image in the gallery, without any ghosting of previous images.. I have the horizontal swipe effect in these galleries, if that makes any difference..
    Noted as a feature request. When the sliding transition was implemented the most common ask was for the current behavior, so that's what's provided. Fade provides a transition between two images without any feedback of the images that were passed over.
    6. Is there any way to make custom adjustments to thumbnail sizes, inserting a fixed width and height? Or, save a slideshow as a template, to use the same properties in another gallery?
    Given the next question is about setting each thumbnail to be a different size, I'm not sure I understand this question. You can select a thumbnail and enter height and width values in the Transform panel or Control Strip. However, all thumbnails share the same size, so all of them will be updated to the new size. Not sure that answers what you're asking?
    [edit: Zak] Regarding the second half of this question, a slideshow (or any other object or collection of objects) can be saved in the Library and used again in later projects.
    7. Will it ever be possible to have different sizes of thumbnails in the same slideshow? What's the best way to make a gallery in a portfolio with artworks of different aspect ratios?
    When "Scale to Fit" is used for the sizing of the thumbnails, they will appear with the aspect ratio of the original image sized to fit within the thumbnail container box.
    8. Why is not my embedded Youtube videos included when I export the project like a html-file? There's only a broken link/code in the video area, at the moment.. Will this be a problem later, when I really need to upload it on my server?
    Insufficient information here to be certain, but I suspect you've exported to a local folder and then opened the index.html (or other .html) file in your browser? When open a file directly in your browser "file://" protocol is used. Many/most services such as YouTube won't work on a .html page loaded using "file://" protocol. That's part of why Muse has a built-in mini-web server and the Preview, Preview Page in Browser and Preview Site in Browser features, which server up the .html files using "http://" protocol. Or you can Publish to a free temporary site on Adobe hosting.
    9. Is it not possible at all to import svg-files in a slideshow? Why is it possible in external widgets, but not in the built-in slideshow widget? I can place and import svg-files into the page, but not drag or import them to the slideshow itself..
    Correct. Support for SVG was recently added for Muse 2014.2. Support for including SVG graphics in slideshows was not part of the initial release.
    In the future, while it may seem excessive, it's much more effective to create a new thread for each different issue/concern/topic you wish to discuss. When a thread starts with a large number of different topics it often goes unanswered because no one forum member or Adobe staffer feels qualified to respond to all the questions. Or, if it does get responses, it ends up being impossible to follow the discussion because so many different topics are intermingled. Thanks.

  • Index of Values in the List Boxes on a Selection Screen

    Hi,
    I have a list box on the selection screen for Month field. It has the values Jan, Feb, Mar....etc in it.
    These entries, I added thru the VRM_SET_VALUES.
    Now, I want to default the month to current month SY-DATUM+4(2).
    Is there any FM to which I can send this SY-DATUM+4(2) as an Index and the corresponding value gets set for the Month field.
    As an alternatvie, I could use<b> Case Sy-DATUM+4(2). when '01'. p_month = 'Jan'.  etc etc..</b> But I want to avoid this big case statement.
    Please suggest.
    Thanks,
    Suryakiran D.

    Hi Suryakiran,
      Try to use the func <b>MONTH_NAMES_GET</b>.It will
      return the month name along with the number.
      And also you can directly select from table <b>T247</b>
    Thanks&Regards,
    Siri.
    Message was edited by: Srilatha T

  • Customer cannot put in the check mark in the check box. same acrobat version. font "adobe_pi" mistak

    i have a problem. i created a form with check boxes. everything went fine, till today. a customer called me,
    that he cannot put a mark in my check boxes. so i asked him about his version. he told me, that he has the
    same version of acrobat pro x as i am using. then i asked him to try it in acrobat reader, but it was the same
    result. after these tries, i changed the kind of mark to a simple cross. that did work then, but i donnot like it.
    i want the nice marks! i saw, that acrobat pro x is using the font adobe-pi. could this be the problem? how
    can i find out? or is it a different mistake? please help me, cause i don´t want to change my whole forms!
    they are so many and i have to ensure that every customer can fill out my forms! it is so important!
    nice greetings from vienna!

    thanks for the quick answer! but unfortunally it is not the solution you described. in my preferences
    and the preferences of the customers program are in the pdf/a-viewing area two possibilities to set:
    "No" and "only at pdf/a-documents". there is no "all". and we have the same setting in this section
    of the preferences.

  • List box is not scrolling to the last item

    Hello all,
    I am developing a Windows Phone 8 application, in that I am using List box to display the data. I have requirement like once the page is launched user should navigate to the last item of the list box. For this requirement used scroolintoview method like LsbSample.ScrollIntoView(LsbSample.LastOrDefault).
    It is moving to the last item but not fully. It is showing last item around 60% but for remaining 40% I need to manually scroll the list box.
    Can any one help me to resolve this issue.
    Thanks in advance.
    Santosh Kumar Kotta

    It's likely a small bug. Can you try scrolling to the bottom of the scrollviewer's height instead?
    Matt Small - Microsoft Escalation Engineer - Forum Moderator
    If my reply answers your question, please mark this post as answered.
    NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with undefined
    objects and unknown namespaces.

  • The check marks in the check boxes I added to a Muse Form widget appear blurry.

    The check marks in the check boxes I added to a Muse Form widget appear blurry.  Is there somewhere that I can edit the resolution of these?  Why would the default check marks be at the incorrect resolution?  Could it be something I did when designing the form?
    Thanks!

    The checkmarls are simple images. If you scale up the check mark or look at it in higher magnification, it of course appears blurry.
    You may want to replace the check marks by graphics of your own (perhaps scaleable SVGs)
    Select a check box, open the states panel and see the different states; change the graphics for the desired state by using the "Fill"-command in command strip on top of the application window.

  • How to populate a list box linked to selection in combo box?

    Hi All,
    I am a beginner in Xcelsius. I am having problem on how to populate a list box based on the selection on my combo box.
    I have a combo box and a list box.  The combo box value consist of Countries. Values are:
    Singapore
    Indonesia
    Thailand
    When I select, for i.e. Indonesia, I want to populate the list box with all the Postal Code of Indonesia. When I select Thailand, i want to do the same.
    Can anyone shed some lights on how to achieve this?
    My spreadsheet data is as follow
    Country         Postal Code
    Singapore     680123
    Singapore     680124
    Singapore     680125
    Indonesia     155123
    Indonesia     155124
    Indonesia     155125
    Indonesia     155126
    Thailand       333123
    Many Thanks,
    Harianto

    Hi,
    I am detailing the complete steps below:
    In the combobox select the entire range of Country while seeing the records from the Combobox, Xcelsius will automatically show the unique values in the selection.
    After that in the "Data Insertion" section for Combobox select the "Insertion Type" as "Filtered Rows" (please click on the question mark beside this option and it will show how the selection works).
    In the source select the postal code, in the destination select the range which will be used as a data source for the list box.
    This will resolve the concern. Please remember to select the question mark beside the "Insertion Type" option, it explains the working in specific details.
    Best of luck.
    Regards,
    Gourav

Maybe you are looking for

  • Premiere Elements 11 -- Visual C++ Runtime Error when trying to add Movie Menus

    Premiere Elements seems to be working fine in all reapects, except when I try to add Movie Menus, nothing shows up in the Movie Menu area, and eventually I get a Visual C++ Run time error as shown in the attached image.  When I click OK, the program

  • Making the first letter of every word a capital

    hello CF oracles could you guys please advise me the best way to make the first letter in every word of a string a capital letter. (and make all the other letters lower case). eg. convert "the quick brown fox" into "The Quick Brown Fox" or convert "T

  • Sales Accounting by sales Person

    Dear all, Please give me a solution for how to calculate Sales Accounting /sale by sales Person indivually. Thanks & Regards Amit Karalkar

  • Dual Windows windows 8 Professional and Windows 8.1

    Thanks in advance,  I had bought a windows 64 bit  I-7 machine ,it  had windows 8 basic already installed, which i had updated to windows 8.1 basic, but hyper  V is not available on this OS. I have another windows 8 Professional OS which i want to in

  • BO DI for extracting data from legacy to SAP BW 7.0

    Hi, Has anyone worked on scenario where BO Data Integrator is being used as ETL tool for extracting data from legacy systems to SAP BW 7.0 ? Please share your experience on such a landscpae or related documents any of you had come across. Regards, Pr