0
votes
2answers
15 views
Handling scroll event on listview in c#
I have a listview that generates thumbnail using a backgroundworker. When the listview is being scrolled i want to pause the backgroundworker and get the current value of the scrolled area, when the …
2
votes
2answers
25 views
scroll using mousewheel inside panel with dynamically added picturebox controls
I've dynamically added 20 pictureboxes to a panel. i would like to see the panel scroll when I use the mousewheel. I set the autoscroll = true on panel control. Here is the code.
For i As …
0
votes
2answers
42 views
jQuery: scrollintoView?
hi,
i'm dynamically adding rows to a table using jQuery.
the table is inside a div which has overflow:auto, thus causing a vertical scrollbar.
i now want to auto-scroll my container-div to the last …
2
votes
1answer
36 views
Winforms RichTextBox: How can I determine how many lines of text are visible?
I have a Winforms app containing a RichTextBox.
How can I determine how many lines of text are displayed, currently visible?
Reason: I want to scroll the caret to the middle of the RichTextBox. …
0
votes
0answers
58 views
jQuery scrolling UL with hidden overflow
I have a UL with LI's set to display horizontally. The UL has a fixed width and it's set to hide the overflow. This is so I can display my images, which are to be used in a gallery, neatly. It works …
1
vote
3answers
172 views
jQuery - fadeOut on Scroll / fadeIn on “scrollstop”
Hi everybody, i am trying to figure something out in jQuery and yes you may see now horrible code but i am not a programming expert ;-) So sorry if it hurts your eyes... But to describe the problem:
…
0
votes
1answer
47 views
C# disable datagrid scrolling
Hi,
Is is possible to disable DataGrid scrolling ? If yes, how ?
Thanks.
0
votes
1answer
297 views
Jquery Autocomplete scroll bar not coming in IE
hi,
i am using latest version of jquery autocompletion plugin.
and have populated an array(input for autocomplete) abt 800 entries.
now strangely when i type a letter which triggers large …
0
votes
1answer
98 views
jquery scroll and css help
Ok so this is my basic setup:
<ul id="sortable_tabs">
<li id="tabs_sort" class="tab_link">
<div id="sort_tabs" class="tab_link_text">Text here</div>
…
0
votes
0answers
20 views
Making TextView Scrollable in Android
I am displaying text in a textview that appears to be too long to fit
into one screen. I need to make my TextView scrollable. How can i do
that? Here is the code
final TextView tv = new …
0
votes
0answers
44 views
jquery scroll help
I have created a tab system that I want to be able to be scrolled. I am trying to implement the scrolling feature now. The only problem that I am having is that it will keep scrolling if they keep …
1
vote
1answer
16 views
Horizontal scrolling in Datagridview
Hi all,
I want to scroll horizontal in my grid (inherited from DataGridView).
Not with Ctrl+scrolling tiltwheel (mousewheel), but by pushing the mousewheel to the left or the right.
First I tried it …
1
vote
1answer
23 views
How to hide vertical scrollbar in wxTextCtrl?
I'm using wxWidgets for a cross platform app. In this app, there is a text control that contains enough text to cause the vertical scrollbar to appear. However, I do not want the scrollbar to appear. …
0
votes
0answers
18 views
Dragging a particularly large sprite up and down like scroll effect in COCOS2D
I am really stuck on this. My application is in landscape view and on one screen i wanted my instructions image to be scrollable. I have added this image as a sprite. First i tried to get scroll …
2
votes
2answers
108 views
How can I scroll my panel using my mousewheel?
I have a panel on my form with AutoScroll set to true so a scrollbar appears automatically.
How can I make it so a user can use his mouse wheel to scroll the panel? Thanks SO.
