SELECTION-SCREEN-ICON

Hi ,
  How to have a icon for a pushbutton in application toolbar using selection-screen.
  help me out.
Thanks.

REPORT ytest.
TABLES: sscrfields .
INCLUDE <icon> .
SELECTION-SCREEN FUNCTION KEY 1 .
parameters: pc(1) .
INITIALIZATION .
CONCATENATE icon_next_object 'test button at applicatin toolbar'
INTO
sscrfields-functxt_01 .
AT SELECTION-SCREEN.
IF sscrfields-ucomm EQ 'FC01' .
break sy-uname .
ENDIF .

Similar Messages

  • Supress selection-screen icon, screen 1001

    Hello all,
    The following code will supress selection-screen (1001) EXECUTE icon.
    include rsdbc1xx.      " selection screen stuff
    data: l_alv      type ref to   cl_gui_alv_grid,
          lt_sflight type table of sflight.
    * Global table of function codes to disable
    data: lt_exclude  type standard table of syucomm.
    parameters: p_nuthin as checkbox.
    selection-screen begin of screen 1001.
    selection-screen end   of screen 1001.
    *at selection-screen output.
    *  if sy-DYNNR = `1001`.
    ** disable functions:
    **         Online execution
    *  append 'ONLI' to current_scr-excl.   "Execute
    **         Online execution & Printing
    *  append 'PRIN' to current_scr-excl.   "Execute and print
    *>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    * events at selection-screen output.
    *>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    at selection-screen output.
      if sy-dynnr = '1001'.
        current_scr-mode = 'S'.
    *                                        disable functions:
        append 'SPOS' to current_scr-excl.
        append 'SCRH' to current_scr-excl.
        append 'ONLI' to current_scr-excl.    "Online execution
    *    APPEND 'PRIN' TO current_scr-excl.   "Execute and print
      endif.
      if sy-tcode eq 'ZZREPORT'. " Replace with your own transaction code
        append 'GET'  to lt_exclude.  " Get variants function code
        call function 'RS_SET_SELSCREEN_STATUS'
          exporting
            p_status  = sy-pfkey
            p_program = sy-cprog
          tables
            p_exclude = lt_exclude.
      endif.
    start-of-selection.
      select * from sflight into table lt_sflight.
    * Creation of the ALV object, when we use cl_gui_container=>screen0 as
    * parent, the ALVGrid control will automatically use the full screen to
    * display the grid, NO CONTAINER DEFINITION IS REQUIRED !
      create object l_alv exporting i_parent = cl_gui_container=>screen0.
    *  Set layout options:
      data: l_layout type lvc_s_layo.
      l_layout-zebra      = 'X'.
      l_layout-sel_mode   = 'D' .             "  D = cell selection
    * calling the display of the grid, the system will automatically create
    * the fieldcatalog based on the table name you pass in parameter
      call method l_alv->set_table_for_first_display
        exporting
          i_bypassing_buffer = 'X'
          is_layout          = l_layout
          i_structure_name   = 'SFLIGHT'
        changing
          it_outtab          = lt_sflight.
    * You have to create an EMPTY screen, put NOTHING on it
      call selection-screen 1001.
    Thanks
    Bruce
    Edited by: Bruce Tjosvold on Jul 30, 2009 3:35 PM
    Edited by: Bruce Tjosvold on Jul 30, 2009 3:39 PM
    Edited by: Bruce Tjosvold on Jul 30, 2009 3:40 PM

    I stumbled upon the answer.

  • Q10 - I tap the screen to select, the icon changes color (indicating selection) but nothing happens...

    I notice an issue that predominantly happens when I use my thumbs to tap but does happen with fingers from time to time. 
    When I select an icon (say, for instance the lower-right corner icon to jump into camera settings), the icon changes color slightly when my thumb touches the glass, and then when I remove my thumb, nothing happens. 
    Sometimes this happens more than 5 times in a row.  It's one thing if the screen never recognized my finger/thumb in the first place.  It is a bit more madening when I KNOW that there was recognition (icon changing color) and yet nothing happens.. 
    Anyone else having this problem?  Is there some way to recalibrate the screen? 
    Right after I posted this message I tried that camera setting button - 7 tries before anything happened with my right thumb, one try with right index finger, then again it took 5 tries with index finger.  The frustrating thing is that the icon to load the camera in the first place (lower right corner)... that one almost always works with the first tap... 

    Perform a Reset...
    Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430

  • ALV-Freeze colums and Icon on Selection Screen

    Dear All,
    suppose i have 10 columns in an ALV Report and i want to freeze from my 3rd column onwards so that if I scroll to right my these 3three columns can still be seen.How to do this.
    also how to display icon on selection screen.I remeber doing some copy pasting from icon table to my selection texts.
    How to acheive these two.
    Regards,
    Rahul Bhat.

    Hi,
    I hope the following links will help you,
    how to freeze columns in table
    how to freeze the selection column in the table control of the module pool.
    Freeze Column
    Regards,
    Harish

  • Execute icon on selection screen

    Dear Experts,
    I am new to module pool programming and i have my selection screen as seen below, but from this screen i cannot execute as that icon is missing.
    How can i get it?
    SELECTION-SCREEN BEGIN OF SCREEN 1100 AS SUBSCREEN NO INTERVALS.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-010.
    PARAMETERS: file TYPE rlgrap-filename.
    SELECTION-SCREEN END OF BLOCK b1.
    SELECTION-SCREEN END OF SCREEN 1100.
    SELECTION-SCREEN BEGIN OF SCREEN 1200 AS SUBSCREEN NO INTERVALS.
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-020.
    PARAMETERS: p_po TYPE ekko-ebeln.
    SELECTION-SCREEN END OF BLOCK b2.
    SELECTION-SCREEN END OF SCREEN 1200.
    CONTROLS mytabstrip TYPE TABSTRIP.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR file .
    START-OF-SELECTION.
       mytabstrip-activetab = 'BUTTON1'.
       CALL SCREEN 100.
    (this screen displays and i can input the values. But after that no execute button.)

    Hi Anushka,
    If i got it right you require to create custom selection screen look alike in your module pool.
    So for this you need to call your selection screen inside your module pool.
    BR
    Sumeet

  • How to put icon in selection screen

    Hello All,
    Can any one tell how to put icons ICON_EXPAND and ICON_COLLAPSE in selection screen and to use.
    Good Answers will be appreciated.
    Thanks in advance.
    Best Regards,
    Sasidhar Reddy Matli.

    hi check his..
    REPORT zalv_sel_screen .TABLES: mara.DATA: BEGIN OF i_alv OCCURS 0,
          matnr TYPE mara-matnr,
          mtart TYPE mara-mtart,
          matkl TYPE mara-matkl,
          groes TYPE mara-groes,
          maktx TYPE makt-maktx,
          END OF i_alv.DATA: alv_container  TYPE REF TO cl_gui_docking_container.
    DATA: alv_grid       TYPE REF TO cl_gui_alv_grid.
    DATA: layout    TYPE lvc_s_layo.
    DATA: fieldcat  TYPE lvc_t_fcat.PARAMETERS: p_check.INITIALIZATION.  PERFORM get_data.AT SELECTION-SCREEN OUTPUT.  DATA: variant TYPE  disvariant.
      DATA: repid TYPE sy-repid.  repid = sy-repid.  variant-report = sy-repid.
      variant-username = sy-uname.  layout-zebra = 'X'.
      layout-edit_mode = 'X'.  CHECK alv_container IS INITIAL.  CREATE OBJECT alv_container
                  EXPORTING repid     = repid
                            dynnr     = sy-dynnr
                            side      = alv_container->dock_at_left
                            extension = 1500.  CREATE OBJECT alv_grid
             EXPORTING
                   i_parent          =  alv_container.*  ALV Specific. Data selection.
    Populate Field Catalog
      PERFORM get_fieldcatalog.  CALL METHOD alv_grid->set_table_for_first_display
        EXPORTING
          is_layout        = layout
          is_variant       = variant
          i_save           = 'U'
          i_structure_name = 'I_ALV'
        CHANGING
          it_outtab        = i_alv[]
          it_fieldcatalog  = fieldcat[].
    START-OF-SELECTION.
    FORM GET_DATA
    FORM get_data.  SELECT * INTO CORRESPONDING FIELDS OF TABLE i_alv
            FROM mara
              INNER JOIN makt
                ON maramatnr = maktmatnr
                       UP TO 100 ROWS
                   WHERE makt~spras = sy-langu.  SORT i_alv ASCENDING BY matnr.ENDFORM.                    "get_data***************************************************************
         Form  Get_Fieldcatalog - Set Up Columns/Headers
    FORM get_fieldcatalog.  DATA: ls_fcat TYPE lvc_s_fcat.
      REFRESH: fieldcat.  CLEAR: ls_fcat.
      ls_fcat-reptext    = 'Material Number'.
      ls_fcat-fieldname  = 'MATNR'.
      ls_fcat-ref_table  = 'I_ALV'.
      ls_fcat-outputlen  = '18'.
      ls_fcat-fix_column = 'X'.
      ls_fcat-key        = 'X'.
      ls_fcat-col_pos    = '1'.
      APPEND ls_fcat TO fieldcat.  CLEAR: ls_fcat.
      ls_fcat-reptext    = 'Material Type'.
      ls_fcat-fieldname  = 'MTART'.
      ls_fcat-ref_table  = 'I_ALV'.
      ls_fcat-outputlen  = '10'.
      ls_fcat-fix_column = 'X'.
      ls_fcat-key        = 'X'.
      ls_fcat-col_pos    = '2'.
      APPEND ls_fcat TO fieldcat.  CLEAR: ls_fcat.
      ls_fcat-reptext    = 'Material Group'.
      ls_fcat-fieldname  = 'MATKL'.
      ls_fcat-ref_table  = 'I_ALV'.
      ls_fcat-outputlen  = '12'.
      ls_fcat-col_pos    = '3'.
      APPEND ls_fcat TO fieldcat.  CLEAR: ls_fcat.
      ls_fcat-reptext    = 'Size'.
      ls_fcat-fieldname  = 'GROES'.
      ls_fcat-ref_table  = 'I_ALV'.
      ls_fcat-outputlen  = '30'.  ls_fcat-col_pos    = '4'.
      APPEND ls_fcat TO fieldcat.  CLEAR: ls_fcat.
      ls_fcat-reptext    = 'Material Description'.
      ls_fcat-fieldname  = 'MAKTX'.
      ls_fcat-ref_table  = 'I_ALV'.
      ls_fcat-outputlen  = '40'.  ls_fcat-col_pos    = '5'.
      APPEND ls_fcat TO fieldcat.ENDFORM.                    "get_fieldcatalog

  • I need to get an icon on the selection screen as well as selection text .

    HI ,
           Can anybody please tell me how to get an icon in the selection-screen along with the selection texts written for select-options or parameters.
    For Example:
                        Select-Options: S_WERKS  For  T001w-werks,
                                                S_AUART   For  TVAKT-AUART,
                                                S_ERDAT   For  LIKP-ERDAT.
    IN THE SELECTION TEXTS: 
                     FOR S_WERKS  i write (WareHouse)
                     FOR S_AUART   i write (OrderType)
                     FOR S_ERDAT  i write  (PlantDate)
              I need to get the icons for this fields as well as selection texts written for these fields.
    I will reward full points to the solution.
    Mohan.

    Hi mohan,
    <b>Run the below code</b>
    Report zex33.
    tables : t001w,
             tvakt,
             likp.
    type-pools: icon.
    selection-screen begin of line.
    selection-screen comment 1(20) text_001.
    select-options: S_WERKS For T001w-werks.
    selection-screen end of line.
    selection-screen begin of line.
    selection-screen comment 1(20) text_002.
    select-options :S_AUART For TVAKT-AUART.
    selection-screen end of line.
    selection-screen begin of line.
    selection-screen comment 1(20) text_003.
    select-options : S_ERDAT For LIKP-ERDAT.
    selection-screen end of line.
    initialization.
      write ICON_WAREHOUSE  as icon to text_001.
      concatenate text_001 text-001 into text_001 separated by space.
      write ICON_ORDER  as icon to text_002.
      concatenate text_002 text-002 into text_002 separated by space.
      write ICON_PLANT  as icon to text_003.
      concatenate text_003 text-003 into text_003 separated by space.
    *In text-001 -> Warehouse
    *In text-002 -> Order Type
    *In text-003 -> Plant Date

  • [Selection-screen] Begin of line, Icons, Layout, ...

    Hi,
    Is WDA lacking some those very familiar features we have in ABAP Selection-screen? (WDR_TEST_SELECT_OPTIONS application certainly does not show the full scope, is it?)
    Is there a replacement for BEGIN OF LINE in WDA selection-screen?
    What about adding comments?
    Is this possible to add icon or images?
    Besides, I was wondering how it is possible to lay the selection-screen in multiple columns. In tried different layout (Grid, Matrix, ...) without success.
    Lastly, is this possible to put labels on top of input fields?
    Do not hesitate to share your most beautiful selection-screens! 
    Thanks in advance.
    Best regards,
    Guillaume

    Some of the designing things are missing in select options -
    IF_WD_SELECT_OPTIONS~ADD_HORIZONTAL_DIVIDER - > to add a line
    IF_WD_SELECT_OPTIONS`ADD_TEXT_LINE - Add a text based line...
    Regarding alignment we need to work on it..there are layout options using ADD_BLOCK..
    Adding Icon/Symbol - I don't see any option...in the interface

  • How to display the selection screen with icons as well as with text element

    How to display the selection screen with icons as well as with texts (written in text elements) for PlantDate, OrderType,WareHouse..

    Report zex33.
    type-pools: icon.
    selection-screen begin of line.
    selection-screen comment 1(20) text_001.
    parameters: p_werks type marc-werks.
    selection-screen end of line.
    selection-screen begin of line.
    selection-screen comment 1(20) text_002.
    parameters: p_whouse(10).
    selection-screen end of line.
    selection-screen begin of line.
    selection-screen comment 1(20) text_003.
    parameters: p_auart like vbak-auart.
    selection-screen end of line.
    initialization.
      write ICON_PLANT  as icon to text_001.
    concatenate text_001 text-001 into text_001 separated by space.
      write ICON_WAREHOUSE  as icon to text_002.
    concatenate text_002 text-002 into text_002 separated by space.
      write ICON_ORDER  as icon to text_003.
    concatenate text_003 text-003 into text_003 separated by space.

  • Raw text instead of icon is displayed on selection-screen

    Hi,
    in a module pool I've implemented a Selection-screen as a subscreen. The subscreen is placed on Tabstrip. Everything works well. Except display of icons. After entering a '*' in the low-field of a select-option there should appear an icon in front of the field. But there appears an open input-field with some text in it (e.q. "@28\QSelektieren: Muster einschl.@"). What is wrong? Is it a frontend-bug?
    Thanks,
    hanspeter

    I tried this sample and it worked fine:
    TABLES T001.
    SELECTION-SCREEN BEGIN OF SCREEN 100 as SUBSCREEN.
      SELECT-OPTIONS: SO_BUKRS FOR T001-BUKRS.
    SELECTION-SCREEN END   OF SCREEN 100.
    CALL SCREEN 200.
    PROCESS BEFORE OUTPUT.
      CALL SUBSCREEN SEL_SCREEN INCLUDING SY-REPID '0100'.
    PROCESS AFTER INPUT.
      CALL SUBSCREEN SEL_SCREEN.

  • Selection icons destroyed by AT SELECTION SCREEN OUTPUT

    Hello
    I have a following code excerpt:
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF screen-name = 'CUSTORDS' OR
           screen-name = 'TRNSORDS' OR
           screen-name = 'REASONCD'.      
          screen-input = '1'.
        ELSEIF ( screen-group1 = 'ONE'
                 AND custords = set_x ) OR
               ( screen-group1 = 'TWO'
                 AND trnsords = set_x ).
          screen-input = '1'.
        ELSE.
          screen-input = '0'.
        ENDIF.
        MODIFY SCREEN.
      ENDLOOP.
    The problem is, that when user gives special selection criteria for select-option field, the icon which appears to the left ('=', '>', etc) next to the affected select-option field inherits the screen-group from the select-option and the coding sets screen-input = 1 for this icon thus destroying it. Instead of an icon a text appears, just like this: '@20\QSelect: Equal to@'.
    How can this behavoiur be prevented ?

    Add screen-group3 ne 'OPU' to the elseif statement:
    ELSEIF ( screen-group1 = 'ONE' and screen-group3 ne 'OPU'
    AND custords = set_x ) OR
    ( screen-group1 = 'TWO' and screen-group3 ne 'OPU'
    AND trnsords = set_x ).
    Regards
    Sridhar

  • How to display icons on selection screen ,without using classes.

    Hi Experts,
    How can we display icons on the selection-screen ..?
    one of the methods i heard frm my frnds was to use                   ->cl_gui_picture_viewer
    but as a begginer i am not tht comfortable with classes .So is there a way around to display icons on my selection screen without using classes .
    Thanx in Advance,
    Regards ,
    Rajesh .

    Hi,
    here a short example:
    REPORT Z_TEST2.
    TABLES: SSCRFIELDS.   "Felder auf Selektionsbildern
    INCLUDE .
    SELECTION-SCREEN: BEGIN OF BLOCK A01 WITH FRAME TITLE MELDUNG1.
    SELECTION-SCREEN: SKIP 2.
    SELECTION-SCREEN: BEGIN OF LINE.
    SELECTION-SCREEN: COMMENT 10(04) T_ICON.
    SELECTION-SCREEN: END   OF LINE.
    SELECTION-SCREEN: SKIP.
    SELECTION-SCREEN: BEGIN OF LINE.
    SELECTION-SCREEN: COMMENT 01(34) T_AUFSD.
    PARAMETERS:       P_AUFSD  AS CHECKBOX DEFAULT 'X'.
    SELECTION-SCREEN: END   OF LINE.
    SELECTION-SCREEN: BEGIN OF LINE.
    SELECTION-SCREEN: COMMENT 01(34) T_AUFCO.
    PARAMETERS:       P_AUFCO  AS CHECKBOX DEFAULT ' '.
    SELECTION-SCREEN: PUSHBUTTON 45(04) PB01 USER-COMMAND SALL.
    SELECTION-SCREEN: PUSHBUTTON 50(04) PB02 USER-COMMAND DALL.
    SELECTION-SCREEN: END   OF LINE.
    SELECTION-SCREEN: BEGIN OF LINE.
    SELECTION-SCREEN: COMMENT 01(34) T_AUFCS.
    PARAMETERS:       P_AUFCS  AS CHECKBOX DEFAULT ' '.
    SELECTION-SCREEN: END   OF LINE.
    SELECTION-SCREEN: BEGIN OF LINE.
    SELECTION-SCREEN: COMMENT 01(34) T_AUFPP.
    PARAMETERS:       P_AUFPP  AS CHECKBOX DEFAULT 'X'.
    SELECTION-SCREEN: PUSHBUTTON 45(15) PB03 USER-COMMAND INIT.
    SELECTION-SCREEN: END   OF LINE.
    SELECTION-SCREEN: SKIP 2.
    SELECTION-SCREEN: BEGIN OF LINE.
    SELECTION-SCREEN: PUSHBUTTON 45(15) PB04 USER-COMMAND ONLI.
    SELECTION-SCREEN: END   OF LINE.
    SELECTION-SCREEN: SKIP 2.
    SELECTION-SCREEN: END   OF BLOCK A01.
    AT SELECTION-SCREEN.
      IF SSCRFIELDS-UCOMM = 'SALL'. "alle selektieren
        P_AUFSD = 'X'.
        P_AUFCO = 'X'.
        P_AUFCS = 'X'.
        P_AUFPP = 'X'.
      ENDIF.
      IF SSCRFIELDS-UCOMM = 'DALL'. "alle deselektieren
        P_AUFSD = ' '.
        P_AUFCO = ' '.
        P_AUFCS = ' '.
        P_AUFPP = ' '.
      ENDIF.
      IF SSCRFIELDS-UCOMM = 'INIT'. "initialisiern
        P_AUFSD = 'X'.
        P_AUFCO = ' '.
        P_AUFCS = ' '.
        P_AUFPP = 'X'.
      ENDIF.
    INITIALIZATION.
      MELDUNG1 = 'Datenbankselektion'.
      T_ICON   = ICON_PRINT.
      T_AUFSD  = 'Kundenauftrag'.
      T_AUFCO  = 'Innenauftrag'.
      T_AUFCS  = 'Serviceauftrag'.
      T_AUFPP  = 'Fertingungsauftrag'.
      PB01     = ICON_SELECT_ALL.
      PB02     = ICON_DESELECT_ALL.
      CONCATENATE ICON_REFRESH 'Initial' INTO PB03.
      CONCATENATE ICON_EXECUTE_OBJECT 'Ausführen' INTO PB04.
    START-OF-SELECTION.
    write: / 'Test'.
    END-OF-SELECTION.
    Regards, Dieter

  • Number of Entries icon should come on report selection screen

    Hi,
    In my requirement, I want Number of Entries icon on my report selection screen.
    Means when i insert the required selection parameter's, then i want to see the total number of entries, which is come after the execution of my report.
    Please let me know that how can i do it...
    Regards..

    HI.
    Check the link display number of line items in my report at the title bar
    I have extract the part from the above link.
    if u want to display the no of line items, as shown in SE16, u create a SET STATUS with a push button with name No of Entries on the report screen.For that status, u write the code as to display no of lines in ur table by using either
    DESCRIBE TABLE itab LINES lin.
    lin gives the no of line items.
    or
    select count(*) from vbap.
    write sy-dbcnt.
    U got require output, when ur pressing No of entries button, then this will display on the output screen.
    Thanks and Regards
    Sachin Sharma

  • Icon at selection screen

    Hi All,
    how i can add icon on the menu bar of selection screen and it should work as user command.

    Hi Sandeep,
    Please refer to the below help link:
    http://help.sap.com/saphelp_47x200/helpdata/en/9f/dba80935c111d1829f0000e829fbfe/frameset.htm
    If you want to make it more complex (with icon):then using transaction SE41
    Copy the PFSTATUS %_00 of program RSSYSTDB to PFSTATUS Z_00 and your program.
    Then modify the PF status as you desire.
    In your program:
    AT SELECTION-SCREEN OUTPUT.
    SET PF-STATUS 'Z_00'
    Sorry forgot to add - then at
    AT SELECTION-SCREEN.
    event you can do
    CASE SY-UCOMM. WHEN '<your_fcode>'. Do something ....  ENDCASE.
    Cheers,
    Adi
    Edited by: Aditya Laud on Apr 9, 2009 8:15 AM
    Edited by: Aditya Laud on Apr 9, 2009 8:20 AM

  • Icon on Selection -screen

    Is there any option to add icons to parameters/selection option fields. This can be done if screen is designed via Screen painter but looking for option if screen is defined using selection-screen option.
    Thanks
    anu

    >
    hi singha wrote:
    > report zrich_0001 .

    > type-pools: icon.

    > selection-screen begin of block b1 with frame title text-001.
    > selection-screen begin of line.
    > selection-screen comment 1(5) icon1.
    > selection-screen comment 7(20) fld_lab.
    > parameters: p_check.
    > selection-screen end of line.
    > selection-screen end of block b1.

    > at selection-screen output.

    >   write icon_configuration as icon to icon1.
    >   fld_lab = 'This is the label'.

    > start-of-selection.
    ROTFL!!!
    pk

Maybe you are looking for

  • Displaying 4 as tick mark in pdf in mozilla firefox 20.0

    I am displaying a pdf in aspx page. In mozilla firefox 20.0, instead of tickmark , 4 is displaying. i.e. when a radiobutton is selected, instead of Tick mark pdf is getting displayed with 4. i am not facing this issue with older mozilla firefox versi

  • Loading a website

    I have asked this before, I am asking again now because I just cant get it running. I have developed a servlet enable site in netbean. Could you please help me to install this into a live server. I have my servlets (class files) here www.123.com/WEB-

  • How to search in 2d array in different direction

    the method will take a string argument and convert them into char and try to find them in a 2d array. It is more like a word puzzle(wordSearcher).Here's what i've done so far... public void find(String word) for(int a = 0; a < word.length(); a++) { c

  • Photoshop Camera Raw 8.5, 8.6, or 7??

    I am running Adobe Lightroom 5 and Photoshop CS6 (13.0.6) with Camera Raw 8.5.  When I try to edit a raw photo (Olympus orf format) in Photoshop, Lightroom tells me I should upgrade Camera Raw to 8.6.  But when I click Help/Update in Photoshop, it in

  • [E3000] How to make ethernet devices available on wireless?

    Hello all, I have been using the E3000 for quite a while. A problem that I could not find a solution to is that the devices connected through Ethernet can't be viewed on Wireless, and vice versa. This is especially annoying because I want to get acce