60 Topics

Member Avatar for
Member Avatar for shazstar

Gone back to using old laptop with wireless mouse and keyboard and had to update numerous programs. Now the mouse or cursor has movement issues. In win explorer can only select last file in directory - ie 'zebra' and unable to scroll down web pages, pdf files etc. Tried system …

Member Avatar for extr3mex
0
339
Member Avatar for kaizen202

In my project, I need a stand alone scroll bar for my text box. So I have created a customized scroll bar. Any idea How to use my customized scroll bar(both Horizontal and Vertical) in the text box instead of built-in scroll bar?

Member Avatar for kaizen202
0
465
Member Avatar for ZeroZen

Hey Folks! I'm using a windows hook to scroll horizontally through a listview. I have it aligned so it only adds items horizontally. I have 2 big buttons I'm using to scroll right and left with nice bitmaps on them... The problem is the listbox has scrollbars appear when I …

Member Avatar for ZeroZen
0
2K
Member Avatar for selvaraman.j

I have developed a Phonegap application for Blackberry platform. I had an issue is that while scrolling the page, the header and footer are hiding in Blackberry Phonegap application. Can anyone help me fix this problem?

0
93
Member Avatar for jalpesh_007

dear all, I have made one program, but i am stuck with one problem. I have taken one scrollpane in simple desktop GUI application in java. My hierarchy of Scroll pane is as below. JFrame |_JTabeedPane |_JScrollPane |_JPanelMain |_Jpanel |_JPanelA |_JPanelB Now all the components are in JPanelA and JPanelB. …

Member Avatar for jalpesh_007
0
192
Member Avatar for spyece

Hello, This is my first tumblr theme attemt and this is what i have got so far, the masonry is working on the main page, but when the infinite scroll jquery plugin loads the second page the sorting acts funny, here are the urls → Live Url : http://rmlthemer1.tumblr.com Complete …

Member Avatar for lambing
0
258
Member Avatar for Violet_82

Hi guys, I wonder if you could clarify something for me. I am looking at some css examples and I have this situation here: html: ...<div id="news"> <h2>Latest News</h2> <p> Which member of the seminal calypso/lectro band <em>C&amp;C Music Sweatshop</em> was spotted last night at <em>Dirt</em>, the trendy New York …

Member Avatar for Violet_82
0
128
Member Avatar for nmaillet

I'm trying to create some custom styles/control templates for WPF. The only control that seems to be giving be any issues (so far) is the ScrollViewer: <Style x:Key="{x:Type ScrollViewer}" TargetType="ScrollViewer"> <Setter Property="OverridesDefaultStyle" Value="True"/> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="ScrollViewer"> <Border Background="#404040"> <Border BorderBrush="#808080" BorderThickness="1" Margin="4"> <Grid > <Grid.ColumnDefinitions> <ColumnDefinition/> <ColumnDefinition Width="Auto"/> …

0
151
Member Avatar for Alexispap

%author: Alexis Papathanassopoulos from Tkinter import * import Image, ImageTk import os import glob import time top = Tk() c=Canvas(top,width=800,height=400, bg='lightblue') c.grid(row=0,columnspan=2,sticky=N+E+W+S) pdict={} class Flow: def __init__(self, clickfunc): self.cfunc = clickfunc def goto(self, canvas, nr): global velocity,autorotate clickeditem = canvas.find_withtag("pic_" + str(nr)) tagsofitem= canvas.gettags(clickeditem) oldcenteritem= canvas.find_withtag('center') if clickeditem: if oldcenteritem: …

Member Avatar for TrustyTony
0
1K
Member Avatar for best4050

I am using getRow() method of ResultSet class like: int rowCount = result.getRow(); but when i run the application, it gives me the exception that says: *The 'getRow()' method is only allowed on scroll cursors.* Please, anyone, who knows why it happened, explain it with some possible solutions Thanks!

Member Avatar for Ezzaral
0
215
Member Avatar for wolwayne

By using javascript, what I wanna do is that when a user click on a headline on wc_page.jsp a new page news.jsp will open. This page conatins all the news date-wise. Suppose a user clicks on the headline which is at number 5 on news.jsp page, I want to open …

0
79
Member Avatar for jonow

I am trying to make a table scroll once it reaches the width of its parent element. In addition to this I want to make it so the `<caption>` does not scroll with the table (it stays fixed) and also the first column stays fixed. Does anyone know how to …

Member Avatar for dany12
0
117
Member Avatar for javacle

please, i need help with how i can make pictures scroll on a website's homepage, i believe javascript should be able to do that, such that pictures will be moving at the header. And will it be there while users navigate to other pages on the site? thanks.

Member Avatar for stbuchok
0
99
Member Avatar for lukemaister

Hi All, I have lately encountered quite a few problems with the problem I'm about to describe. I think it would be good for all of us to know the solutions if anytime we encounter this problem. I know my content is larger than the screen and I have a …

Member Avatar for Dandello
0
111
Member Avatar for Reverend Jim

I have a NumericUpDown control that I want to allow the user to change with the mouse scroll wheel. The problem is that even with the following code [code] Private Sub numSeries_MouseWheel(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles numSeries.MouseWheel If e.Delta > 0 Then numSeries.Value += 1 Else …

0
198
Member Avatar for niconico96

Hello. I'm working on a website that has pages with variable height. However, the footer is one of my main problems. When the page can be scrolled, the footer needs to be [icode]position: relative[/icode]. When the window height is greater that the page content height (no scrollbar), the footer needs …

0
128
Member Avatar for peidoca

Hello, this is my first forum post ever so please be gentle. I have a hidden menu (div) which is revealed once you click a img button. The magic is done with js command like style.display='block'. Problem: The height of the page(stage) is 700px and the menu is 1000px, so …

Member Avatar for peidoca
0
198
Member Avatar for stinkypete

I am trying to catch EN_VSCROLL (vertical scroll) messages from a richedit control. So far I have done the following: In the form's oncreate: [CODE]int mask = SendMessage(richedit->Handle, EM_GETEVENTMASK, 0, 0); SendMessage(richedit->Handle, EM_SETEVENTMASK, 0, mask + ENM_SCROLL); Application->OnMessage = AppMessage;[/CODE] My onmessage function is: [CODE]void form::AppMessage(tagMsg &Msg, bool &Handled) { …

0
68
Member Avatar for techsurge

Hi guys My first post , finding c# interesting but stuck somehow The problem is simple and straightforward I am trying to just change value of trackbar on mousehover but am not able to I am able to add user defined functions to trackbar1.mousehover but not able to call the …

Member Avatar for Momerath
0
1K
Member Avatar for mangopearapples

Hi, for some reason, my JScrollPane isn't working with mt JTextArea. Probably the most important part: [CODE] JTextArea TextArea; JScrollPane scroll; TextArea = new JTextArea(); scroll = new JScrollPane(TextArea); add(TextArea,BorderLayout.CENTER); add(scroll,BorderLayout.LINE_START);[/CODE] Whole code if you're interested in what I'm making: [CODE]import java.awt.BorderLayout; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.io.BufferedReader; import java.io.BufferedWriter; …

Member Avatar for mangopearapples
0
275
Member Avatar for DoctorGiraffe

Hello! Yes, This is my first post. And it might seem a little selfish that i just joined to ask a question, so don't worry, i'm not gonna ask and run, i'll stick around. So my problem, what im trying to do is using regex i'm pulling information from a …

Member Avatar for codeorder
0
965
Member Avatar for dlannetts

hi, i want to build something, like and app, to start with i need like and endless scrolling space with NO scroll-bars, and secondly want it to scroll with my mouse, by hovering my mouse cursor to the left of the page the page would scroll to the right, im …

0
100
Member Avatar for mknight_13101

Afternoon, I'm running a xp system w/ USB keyboard and mouse. Mouse has decided to have a mind of its own. Essentially when i want to click on something it does not respond. It is almost like, when I try and click on a window, it immediately goes to the …

0
119
Member Avatar for nerdthon123

Hi Daniweb, I am currently taking a computer science class in school, and was given an extra project(because I'm so far ahead of the rest of the class). I am stumped on how to get the of the slider bar to do what I want. In the project I have …

Member Avatar for debasisdas
0
122
Member Avatar for ryan12193

I am building a website with many images. I am looking for a code that will scroll my images. i am looking for it to show like 3 pics then have arrows on either side so when you clik them (arrows) it will scroll to the next 3 pics. i …

Member Avatar for savageocean
0
170
Member Avatar for leiger

I'm trying to list a bunch of buttons vertically, but am having problems even getting that much done. I'm pretty sure I have the scroll pane working (it just isn't being used yet so I can't test it). This is part of an assignment so I'd prefer not to post …

Member Avatar for leiger
0
2K
Member Avatar for ms_sws

I have built a marquee of images that scrolls inside a cell of a table. The marquee width, of course, is dictated by the width of the cell. But I don't want the number of images that actually scroll inside the marquee to cut off based on the width of …

Member Avatar for ms_sws
0
248
Member Avatar for toadzky

I have a ListBox using an ItemTemplate. Here is the XAML: [CODE] <ListBox Name="list_Sensors" ItemsSource="{Binding}" Grid.Column="0" IsSynchronizedWithCurrentItem="True"> <ListBox.ItemTemplate> <DataTemplate> <Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width="Auto" /> <ColumnDefinition Width="Auto" /> </Grid.ColumnDefinitions> <GroupBox Header="Part Number/Description" Grid.Column="0" Margin="5" Width="200"> <StackPanel> <TextBlock Text="{Binding Path=PartNumber}" HorizontalAlignment="Center"/> <TextBlock TextWrapping="Wrap" FontSize="8" HorizontalAlignment="Center"> <TextBlock.Text> <MultiBinding StringFormat="{}{0} {1}"> <Binding Path="Manufacturer" /> …

Member Avatar for toadzky
0
400
Member Avatar for diracleo

When content is loaded into a div on my web site, the div, while waiting for the new content to load, resizes to 0px in height, which causes the scrollbar on the browser to shift upward, and then when the new content loads, the scrollbar is too far up for …

0
165
Member Avatar for calvintennant

I am trying to use vertical columns (as commonly seen in print media, magazines/newspapers) in my blog layout. I think that as the aspect ratio of our monitors change ([URL="http://en.wikipedia.org/wiki/Xerox_Alto"]portrait[/URL] in the 70s/80s, (near) square in the 90's, and now landscape) it is important to embrace horizontally scrolling websites. This …

0
80

The End.