Column freez using browser based scroll bar

hi all,
i got some solution to freeze columns using scrollbar its really nice,
but i want to freeze columns , i have to use browser based scroll bar instead of report scroll bar, when i scroll mouse then report headers will locked at starting position of page and then only data will vertically scroll without scroll bar in report.
can anybody help me.

no, no, that's just a regular finder window. I don't have any finder extensions. That's just a regular finder window that happens to have a folder with the CDFinder application in it.
Here's another example:
BEFORE clicking the last .ffx file in the list:
http://picasaweb.google.com/lh/photo/aP7B8IO6c76v1Y_5w8TxXw?feat=directlink
AFTER the first click:
http://picasaweb.google.com/lh/photo/ahQ4EvvkMzcVhXMppvedOw?feat=directlink
The second click of a double-click gets lost on the horizontal scroll bar.
Are you saying you never get a horizontal scroll bar, or just that whenever a horizontal scroll bar appears it doesn't ever cover a file?

Similar Messages

  • Cannot see entire page without using the bottom scroll bar.

    Cannot see the entire page without using the bottom scroll bar. Unfortunately some websites do not have the scroll bar and I am unable to complete my transaction because the area I need to click is on the right of the screen and that does not show on my page. If I change the view, the font is to small and it is blurry making in illegible.

    Weird. Be sure zoom is to default value (press Ctrl+0 -zero- in FF). In addition, restart FF in safe mode, maybe an add-on is the culprit.

  • Active X web browser vertical scroll bar

    Does anyone know how I can hide the vertical scroll bar on the right of the
    Active X Web Browser?
    Bill

    Bill,
    The bar appears as soon as the contents don't fit the container anymore.
    If your displaying a html file of your own, make the body tag like this:
    This will remove the scrollbar.
    I'm not sore if it is possible to remove the scrollbar in the container for
    every page you load. The scrollbar is a property of the page, not of the
    container!
    If you need it for any document, take a look at the Document property.
    Convert it to a MSHTML.DispHTMLDocument, and use the ExecCommand method.
    This might be a way to hide the scrollbar (but I cannot garantee it). Close
    the ref!
    Regards,
    Wiebe.
    "Bill" wrote in message
    news:[email protected]..
    > Can anyone figure out how to hide the vertical scroll bar aft
    er putting a
    > Microsoft Web Browser component in an Active X container? (p.s. It looks
    > like it's not there at first... but, as soon as you run the VI it
    appears!)
    >
    > Thanks,
    > Bill
    >
    >

  • Browser window scroll bars

    Can anyone help with ensuring Scroll bars are functional on
    browser window?

    Rob,
    Thanks for staying with this. Unfortunatly, I am not getting
    scroll bars on Mac or PC, IE, Firefox and Safari. I called Tech
    Support and they told me the same thing. They suggested a fix of
    placing an empty paragraph after the embedd tag, which I did and
    vertical scroll bars appeared. It does not scroll the whole movie
    however.
    I use the default html generated by Flash with the new Active
    content .js file.
    If you go to these sites, you can tell me if you see scroll
    bars.
    http://www.alphagraphicsseattle.com/bba/
    and
    http://www.djsloth.com/

  • When I open gmail, I cannot use the vertical scroll bar.

    When I use the gmail website on firefox, the vertical scroll bar. As there is no horizontal scroll bar on the website, the vertical scroll bar layers over the top of the page resizer and makes the arrow button for the scroll unusable.
    Please advise.

    you may be connected to the wireless network but the question is the internet working properly on the wireless network...
    what i mean is that i can make a wireless network without the internet so i can save and share files and have other devices connected to the same network access them... but you have to make sure that your internet it running properly... may have to reconfigure the router is your using PPPOE or if it was working prior to your post then try to restart your modem... that usually resolves most issues.

  • Using a Mac, Firefox does not allow me to use the vertical scroll bar real-time in Godaddy webmail. It lags and jumps. Godaddy says it is a browser issue. Does not happen in Safari with Mac OS 10.4.11 or on PC w/windows vista.

    The problem is not my server (Comcast) as it does not happen on Safari when trying different websites as well as Godaddy.com or my Godaddy webmail. The problem is only when using my Mac OS X 10.4.11 (not my Windows Vista PC) in Firefox. I only began noticing this recently. Godaddy says this is a browser issue with my Mac as they cannot replicate it.
    == URL of affected sites ==
    https://login.secureserver.net/index.php?app=wbe&clearcookies=1

    The problem is not my server (Comcast) as it does not happen on Safari when trying different websites as well as Godaddy.com or my Godaddy webmail. The problem is only when using my Mac OS X 10.4.11 (not my Windows Vista PC) in Firefox. I only began noticing this recently. Godaddy says this is a browser issue with my Mac as they cannot replicate it.
    == URL of affected sites ==
    https://login.secureserver.net/index.php?app=wbe&clearcookies=1

  • Scroll Bar in ALV Top Of Page

    Hi Ppl,
    I am using REUSE_ALV_COMMENTARY_WRITE to display top of page in ALV. The issue is i want to restrict the top-of-page height.
    As of now if i have 10 lines to print...the top-of-page comes with 10 lines in display.
    But i want some (say 4 or 5) to be visible with scroolbar and rest can be viewed by use of the scroll--bar movement!!
    Any soln?? Please reply
    Regards,
    Santosh!!

    Hi Santosh,
    I am not sure if that is possible by using FM approach. - REUSE_ALV_COMMENTARY_WRITE
    But yes its possible if you are using Docking Container. with split container approach. ie. OOPs .
    Refer sample code.
    Constants Declaration
    CONSTANTS: c_x             TYPE c          VALUE 'X',
               c_mode          TYPE char1      VALUE 'O',
               c_mask          TYPE char9      VALUE ',*.*,*.*.',
               c_error_log     TYPE tabname    VALUE 'ZERROR_LOG',
               c_succ          TYPE iconname   VALUE '@01@',    "#EC *
               c_fail          TYPE iconname   VALUE '@02@',
               c_object        TYPE emg_object VALUE 'PARTNER'," Legacy obj
               c_opbuk         TYPE opbuk_kk   VALUE 'UK01',
               c_split         TYPE c
                               VALUE cl_abap_char_utilities=>horizontal_tab,
               c_path          TYPE char100
                               VALUE '/local/data/interface/A28/DM/OUT'.
    *Variables Declaration
    DATA:  flg_pre     TYPE c,             " Flag -  Presentation browse
           flg_x       TYPE c,
           cnt_total   TYPE char8,         " Total Records processed
           cnt_success TYPE char8,         " Total Records success
           cnt_failed  TYPE char8,        " Total Records failed
           cnt_repeat  TYPE char8.
    *-- ALV Grid data declaration
          CLASS v_lcl_event_receiver DEFINITION
    CLASS lcl_event_receiver DEFINITION.
      PUBLIC SECTION.
        METHODS:
         handle_print_top_of_page FOR EVENT print_top_of_page OF
                                            cl_gui_alv_grid,
         handle_top_of_page       FOR EVENT top_of_page OF
                                            cl_gui_alv_grid.
    ENDCLASS.                    "o_lcl_event_receiver DEFINITION
          ALV Data declaration
    DATA : o_alvgrid          TYPE REF TO cl_gui_alv_grid,
           o_split            TYPE REF TO cl_gui_easy_splitter_container,
           o_dockingcontainer TYPE REF TO cl_gui_docking_container,
          <b> o_container_top    TYPE REF TO cl_gui_container,
           o_container_bot    TYPE REF TO cl_gui_container,
           o_html             TYPE REF TO cl_dd_document,</b>       o_event_receiver   TYPE REF TO lcl_event_receiver,
           ok_code            LIKE sy-ucomm,
           i_fieldcat         TYPE lvc_t_fcat,
           wa_fieldcat        TYPE lvc_s_fcat,
           wa_layout          TYPE lvc_s_layo.
          CLASS LCL_EVENT_RECEIVER IMPLEMENTATION
    CLASS lcl_event_receiver IMPLEMENTATION.
    *-- Top of Page
      METHOD handle_print_top_of_page.
      ENDMETHOD.                    "handle_print_top_of_page
      METHOD handle_top_of_page.
      ENDMETHOD.                    "handle_top_of_page
    ENDCLASS.                    "lcl_event_receiver IMPLEMENTATION
    *-- ALV List data declaration
    DATA:  i_field_cat1       TYPE slis_t_fieldcat_alv,
           w_lay_out1         TYPE slis_layout_alv,
           w_field_cat        TYPE slis_fieldcat_alv,
           i_events1          TYPE slis_t_event,
           w_event            TYPE slis_alv_event,
           w_print            TYPE slis_print_alv.
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'STANDARD'.
      SET TITLEBAR 'TITLE'.
    *-- Create Instances
      PERFORM f0040_create_object.
    *-- Create Field catalog
      PERFORM f0050_field_catalog
                        TABLES i_fieldcat
                        USING c_error_log.
    *-- Modify Field Catalog
      PERFORM f0060_modify_fldcatalog
                        TABLES i_fieldcat.
    *-- Set ALV Layout
      PERFORM f0070_layout.
    *-- Generate ALV Grid
      PERFORM f0080_display_list
                        TABLES  i_error
                                i_fieldcat
                          USING wa_layout.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    *&      Form  f0040_create_object
    FORM f0040_create_object .
      IF cl_gui_alv_grid=>offline( ) IS INITIAL.
    *-- Create Container
        CREATE OBJECT o_dockingcontainer
          EXPORTING
            ratio                     = '95'
         EXCEPTIONS
          cntl_error                  = 1
          cntl_system_error           = 2
          create_error                = 3
          lifetime_error              = 4
          lifetime_dynpro_dynpro_link = 5
          OTHERS                      = 6.
        IF sy-subrc NE 0.
          MESSAGE i000 WITH text-013.   " Error in object creation
          LEAVE LIST-PROCESSING.
        ENDIF.
    *--Create Splitter Container
        CREATE OBJECT o_split
          EXPORTING
            parent            = o_dockingcontainer
            sash_position     = 20
            with_border       = 0
          EXCEPTIONS
            cntl_error        = 1
            cntl_system_error = 2
            OTHERS            = 3.
    *--Get the containers of the splitter control
        o_container_top = o_split->top_left_container.
        o_container_bot = o_split->bottom_right_container.
      ENDIF.
      CREATE OBJECT o_alvgrid
         EXPORTING
           i_parent = o_container_bot.
    *-- Print Top of Page
      PERFORM f0041_top_of_page.
    ENDFORM.                    " f0040_create_object
    <b>&----
    *&      Form  f0041_top_of_page</b>
    FORM f0041_top_of_page .
      DATA: lws_text  TYPE sdydo_text_element.
      IF cl_gui_alv_grid=>offline( ) IS INITIAL.
    *-- Object for HTML top container
        CREATE OBJECT o_html
            EXPORTING style            = 'ALV_GRID'
                      background_color = 35.
    *-- Top of Page
        CALL METHOD o_alvgrid->list_processing_events
          EXPORTING
            i_event_name = 'TOP_OF_PAGE'
            i_dyndoc_id  = o_html.
    *-- Total Record Text
        CALL METHOD o_html->add_text
          EXPORTING
            text         = text-014
            sap_emphasis = text-017.
        CALL METHOD o_html->add_gap
          EXPORTING
            width = 8.
    **-- Total record Value
        lws_text = cnt_total.
        CALL METHOD o_html->add_text
          EXPORTING
            text         = lws_text
            sap_emphasis = text-017.
        CLEAR  lws_text.
        CALL METHOD o_html->new_line
          EXPORTING
            repeat = 1.
    **-- Total Success text
        CALL METHOD o_html->add_text
          EXPORTING
            text         = text-015
            sap_emphasis = text-017
            fix_lines    = c_x.
        CALL METHOD o_html->add_gap
          EXPORTING
            width = 12.
        lws_text = cnt_success.
        CALL METHOD o_html->add_text
          EXPORTING
            text         = lws_text
            sap_emphasis = text-017
            fix_lines    = c_x.
        CLEAR  lws_text.
        CALL METHOD o_html->new_line
          EXPORTING
            repeat = 1.
    *-- Total Failed text
        CALL METHOD o_html->add_text
          EXPORTING
            text         = text-016
            sap_emphasis = text-017
            fix_lines    = c_x.
        CALL METHOD o_html->add_gap
          EXPORTING
            width = 16.
        lws_text = cnt_failed.
        CALL METHOD o_html->add_text
          EXPORTING
            text         = lws_text
            sap_emphasis = text-017
            fix_lines    = c_x.
        CLEAR  lws_text.
    *-- Display Report Header
    <b>    CALL METHOD o_html->display_document
          EXPORTING
            parent = o_container_top.</b>
      ENDIF.
    ENDFORM.                    " f0041_top_of_page
    *&      Form  f0050_field_catalog
    FORM f0050_field_catalog  TABLES   p_fieldcat STRUCTURE lvc_s_fcat
                              USING value(p_structure).
      CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
        EXPORTING
          i_structure_name       = p_structure
        CHANGING
          ct_fieldcat            = p_fieldcat[]
        EXCEPTIONS
          inconsistent_interface = 1
          program_error          = 2
          OTHERS                 = 3.
      IF sy-subrc <> 0.
        MESSAGE i000(zo_spa) WITH text-017.
        LEAVE LIST-PROCESSING.
      ENDIF.
    ENDFORM.                    " f0050_field_catalog
    *&      Form  f0070_layout
    FORM f0070_layout .
      wa_layout-zebra      = c_x.
      wa_layout-cwidth_opt = c_x.
    ENDFORM.                    " f0070_layout
    *&      Form  f0080_display_list
    FORM f0080_display_list  TABLES  p_output
                                     p_fieldcat
                             USING value(p_layout).
    *-- Display Report
      CALL METHOD o_alvgrid->set_table_for_first_display
        EXPORTING
          i_save                        = 'A'
          is_layout                     = p_layout
        CHANGING
          it_outtab                     = p_output[]
          it_fieldcatalog               = p_fieldcat[]
        EXCEPTIONS
          invalid_parameter_combination = 1
          program_error                 = 2
          too_many_lines                = 3
          OTHERS                        = 4.
      IF sy-subrc <> 0.
        MESSAGE i000(zo_spa) WITH text-022.    " Error in Displaying
        LEAVE LIST-PROCESSING.
      ENDIF.
    **-- Create Event object
      CREATE OBJECT o_event_receiver.
      SET HANDLER o_event_receiver->handle_print_top_of_page
                                     FOR o_alvgrid.
    ENDFORM.                    " f0080_display_list
    *&      Module  USER_COMMAND_0100  INPUT
    MODULE user_command_0100 INPUT.
      ok_code = sy-ucomm.
      CASE ok_code.
        WHEN 'EXIT' OR  'CANC'.
          PERFORM f4000_free_objects:
                   USING o_alvgrid 'ALV' text-031,
                   USING o_dockingcontainer 'DOCKING' text-032.
          LEAVE PROGRAM.
        WHEN 'BACK'.
          PERFORM f4000_free_objects:
                   USING o_alvgrid 'ALV' text-031,
                   USING o_dockingcontainer 'DOCKING' text-032.
          SET SCREEN '0'.
          LEAVE SCREEN.
        WHEN OTHERS.
          PERFORM f4000_free_objects:
                    USING o_alvgrid 'ALV' text-031,
                    USING o_dockingcontainer 'DOCKING' text-032.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0100  INPUT
    *&      Form  f4000_free_objects
    FORM f4000_free_objects  USING pobject
                            value(ptype)
                            value(ptext) TYPE c.
      DATA: lo_objectalv TYPE REF TO cl_gui_alv_grid.
      CASE ptype.
        WHEN 'ALV'.
          lo_objectalv = pobject.
          IF NOT ( lo_objectalv IS INITIAL ).
            CALL METHOD lo_objectalv->free
              EXCEPTIONS
                cntl_error        = 1
                cntl_system_error = 2
                OTHERS            = 3.
            CLEAR: pobject, lo_objectalv.
            PERFORM f4010_error_handle USING ptext.
          ENDIF.
        WHEN 'DOCKING'.
          DATA: lo_objectdock TYPE REF TO cl_gui_docking_container.
          lo_objectdock = pobject.
          IF NOT ( lo_objectdock IS INITIAL ).
            CALL METHOD lo_objectdock->free
              EXCEPTIONS
                cntl_error        = 1
                cntl_system_error = 2
                OTHERS            = 3.
            CLEAR: pobject, lo_objectdock.
            PERFORM f4010_error_handle USING ptext.
          ENDIF.
        WHEN OTHERS.
          sy-subrc = 1.
          PERFORM f4010_error_handle
                       USING text-031.
      ENDCASE.
    ENDFORM.                    " f4000_free_objects
    *&      Form  f4010_error_handle
    FORM f4010_error_handle  USING value(ptext) TYPE c.
      IF sy-subrc NE 0.
        CALL FUNCTION 'POPUP_TO_INFORM'
          EXPORTING
            titel = text-031
            txt2  = sy-subrc
            txt1  = ptext.
      ENDIF.
    ENDFORM.                    " f4010_error_handle
    Reward points if this Helps.
    Manish

  • Why my scroll bar of a data block doesn't work?

    Hi,
    I have a data block that displays a maximum of 9 records at one time. When the query returns more than 9 records i want to use a vertical scroll bar to navigate to the last records.
    In some forms it works fine but in others not , i still didn't find why ??
    Cheers,
    Nuno

    Nuno,
    Rather than trying to find a needle in a hay stack, I would recommend taking a step backward.  This will help to rule out whether the issue is something you caused or if there is an issue with the environment or product.
    Create a new module in the Builder.  Do not add any of your own code.
    In the Builder, connect to a database (File > Connect).
    From the Builder menu, select Tools > Data Block Wizard
    In the Wizard first screen (after Welcome), select Table or View then click Next
    On the next screen, click on Browse to display the tables available to you.  Choose one.
    All the columns in that table should appear on the left.  Click on the double arrow (>>) to select all of them.  Then click on Next
    Click on Next again
    Choose the option to create the data block then open the Layout Wizard.  Then click Finish
    In the Layout Wizard, click on Next (after the Welcome scree) to choose the default Canvas.  Then click on Next
    Click on the double arrow (>>) to choose all columns. Then click Next
    Click Next again.
    Choose Tabular as the layout style.  Click on Next
    Change Records Displayed to 4 and check the box labeled "Display scroll bar".
    Click on Finish
    Again, do not make any changes to anything in this form.  Run it.  Does it reproduce the same problem you experience in your previous form?  If this form works correctly, likely the issue is in the design of your other form.  If this test form fails in the same manner then you are either exposing a defect or there is an odd configuration issue.

  • ReportViewer 2012 Scroll Bars

    I am using ReportViewer 2012 to display reports from a report server.
    If the report is larger than the display window scroll bars appear however in Internet Explorer 11 they are in the wrong place as they are sized to the whole of the iframe. As a result the vertical scroll bar includes the parameter tool bar and the horizontal
    Scroll bar does not appear until you scroll the bottom of the report into view.
    If I run the app using Chrome the scroll bars are shown correctly.
    How can I fix this so the scroll bars appear in the correct place in IE 11?

    Hi Ewan,
    Based on your screenshots, the horizontal scroll bar is not showing in IE 11. Right?
    It has reported a lot of incompatibility issue in IE 11. One workaround is change the X-UA-Compatible meta tag. It allows web authors to choose what version of Internet Explorer the page should be rendered as. You can change it like this: <meta http-equiv="X-UA-Compatible"
    content="IE=9" />. Please refer to the similar threads below:
    ReportViewer scroll issues in IE
    ReportViewer 11 with IE 11: report height exceeds limits
    Internet Explorer 11 & SSRS ReportViewer
    For this issue, I would recommend to submit it to the Microsoft Connect at this link
    https://connect.microsoft.com/SQLServer/Feedback. This connect site will serve as a connecting point between you and Microsoft, and ultimately the large community for you and Microsoft to interact
    with. Your feedback enables Microsoft to offer the best software and deliver superior services, meanwhile you can learn more about and contribute to the exciting projects on Microsoft Connect.
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • Horizontal Scroll bar in a web table

    Guys,
      is it possible to have horizontal scroll bar in webtable , not like the webtable propery for each column.
      just i want drag a scroll like blanket in webtable like in internet explorer.
      will assing full points for fix.
    Thanks
    Shan

    Hi Shan,
    The problem is not clear, but if you are talking about a table web item within Web Application Designer then there is a property for the number of columns to be displayed per page. Just set that property to an appropriate number. Remember while setting the property that it applies only to key figures and not characteristics. So if you set it to say 5 - it will display the horizontal scroll option if you have more than 5 key figures in your table.
    If you do not want the SAP default scroll bar then set this property to a sufficiently high number so that the table is not broken up - in this case you will get the default internet explorer based scroll bar since the table will not fit in a single screen.
    Hope it helps,
    Regards,
    Nikhil

  • EBay 'My Messages' scroll bar error in Firefox 3.6.20. Does not

    Windows 7 Home Premium 64 bit
    Firefox 3.6.20
    There is a problem with the scroll bar in Firefox 3.6.20 when displaying eBay 'My Messages'
    There are 26 message headers per page (in both IE 9 and Firefox 3.6.20).
    Both browsers require scrolling to view the full 26 headers per page.
    IE allows 3 presses of the touchpad on the space under the scroll button. All 26 headers per page are correctly displayed.
    Firefox only allows 2 touchpad presses, giving the impression that the bottom of the page of headers has been reached. The impression is given that all 26 headers have been displayed, but only 15 have been seen.
    To see all 26 it is necessary to use the 'down arrow' on the keypad.
    Firefox hides 11 message headers when the page is scrolled using the side scroll bar.
    I think this is a bug.
    I do not want to use IE 9 or Firefox 4.0
    Regards

    I hate to sound like a broken record, DONE THAT ALREADY. _ _ _
    I've ALSO learned to reboot after an uninstall then manually delete any residue in said uninstalled program. I've also gone as far as REGISTER searching for program residue and deleting that WITH reboot of coarse to be sure nothing has gone wrong. _ _ _ NEXT suggestion? I suggest FireFox fix there software. _ _ _ BY-THE-WAY,... I have also gone through my mouses buttton choices for my #5 button. Everything works but the "Auto-Scroll". One tab down/up/right/left works, one page down/up/left/right works. _ _ _ I used recently tried and successfully used the Auto-Scroll in Netscape, Opera, My Browser, Ace Browser, Chrome, and 2 others that escape my memory. _ _ _ PLEASE READ and understand this. >>> It's FireFox's software that is stopping this, not my mouse or PC.

  • Regarding Horizontal Scroll bar in ALV

    Hi Experts,
    I am using FM " Reuse_alv_grid_display" to dsplay the output. But defaultly it is not showing all the output in single view .I have large no of columns to show up.horizontal scroll bar is not set up defaultly.
    I would like to use CL_GUI_ALV_GRID->SET_HORIZONTAL_SCROLLBARS method
    is this is the right way to do it ? suggest best and simple way to do it.
    regards
    Vishnu

    hi,
    there was exception raised  "raise exception type cx_salv_not_found"
    i have used the fallowing code:
    cl_salv_table=>factory(
        IMPORTING
          r_salv_table = gr_table
        CHANGING
          t_table      = INT_FINAL ).
      DATA: lr_columns TYPE REF TO cl_salv_columns_table,
            lr_column  TYPE REF TO cl_salv_column_table.
      lr_columns = gr_table->get_columns( ).
      lr_columns->set_optimize( gc_true ).
          lr_column ?= lr_columns->get_column( 'SYMBOL' ).
          lr_column->set_symbol( if_salv_c_bool_sap=>true ).
          lr_column->set_long_text( 'SYMBOL' ).
      gr_table->display( ).
    Please let me know how to proceed
    regards
    vishnu

  • Scroll bar with rounded ends

    Hi,
    First I'm not sure this is the right forum to be posting
    about CS3 components, if there is a better one, please direct me to
    it.
    I want to make a scrollbar that has rounded end caps. If I
    use the CS3 scroll bar component for this purpose, it doesn't look
    right, because when the bar skin is scaled according to the bar's
    progress, it scales the end pieces. What I really want is to have
    only the middle scaling/stretching, while the end caps remain
    constant sized.
    Is this possible with the CS3 component? Or any tips about
    finding or making one that does this?
    Thanks,
    Ryan

    You can but it will only work in IE5.5 (I don't think it
    would work with
    IE6, either) - which, IMHO - isn't worth your trouble. If you
    want to
    control your scrollbars cross-browser, use Flash but then
    again - not every
    user will have Flash installed.
    If you insist - this will actually generate the CSS-code for
    you. Use this
    at your own risk as I have NOT taken the time to check the
    produced CSS code
    for validity:
    http://www.newtutorials.com/changing-scrollbar-color.htm
    Shane H
    [email protected]
    http://www.avenuedesigners.com
    ===============================
    Proud GAWDS Member
    http://www.gawds.org
    Delivering accessible websites to all ...
    ===============================
    "OscarSSS" <[email protected]> wrote in
    message
    news:e5ialr$e53$[email protected]..
    >I want my scroll bar to not the default one but a
    different color one. Am I
    > able to do this on Dreamweaver.
    > WHen I set a layer with the scroll property if the text
    goes beyond the
    > area
    > it becomes scrollable but the scroll is the default one
    , so I would like
    > to
    > chage the properties of the scroll bar(collor, size,
    etc...), is that
    > possible
    > using Dreamveaver?, I know you can do different using
    flash but I am
    > trying to
    > don't use too much flash on my website.
    >

  • Scroll Bar Disable/Enable

    I need a code that will enable and disable the browser window
    scroll bars when the browser window is resized smaller than my
    MovieClip (800x650) and will disable them when the browser window
    is bigger than the movie clip.
    I have my publish settings set at 100% and becuase of this it
    does not allow the browser scroll bars to be enabled/disabled.
    Thanks In Advance For Any Help You Can Provide!

    Hi mbhatti2000,
    - Could you put up a small example of what you mean?
    If you just want to disable the array indicator and gray it out, then you can use the property shown below.
    Regards,
    Peter D
    Attachments:
    DisableIndicator.vi ‏9 KB

  • Removing Scroll Bars in WEBI Report

    Hi All,
    I want to remove scroll bars from my WEBI reports. I have observed that even if you have only one column in the WEBI report, scroll bar still appears. Is this anything to do with page layout properties of WEBI where you can set minimum limit for horizontal records per page as 20? Can anybody please help me with this?
    Thanks,
    Shweta.

    Hi,
    We also wanted to have the same thing,we tried to reduce the size of the report and tried to change the page size.
    We did everything to remove that scroll bar and did not achieve it, hence we loged a case with SAP BO and they said  " this is how the tool is".
    But they took it as the enhancement request dont know what is the status on that.
    Cheers,
    Ravichandra K

Maybe you are looking for