Questions tagged [updown]

32 questions
154
votes
16 answers

Where is the WPF Numeric UpDown control?

Getting into the first serious WPF project. It seems like there are a lot of basic controls flat out missing. Specifically, I am looking for the Numeric UpDown control. Was there an out of band release that I missed? Really don't feel like…
AngryHacker
  • 59,598
  • 102
  • 325
  • 594
6
votes
2 answers

Slide up and Slide down animation on Webview in Android

i have a list of chapters in a list.when user selects a chapter it get expanded and sub topics in that chapter lists. when user select the particular sub topic its contents get loaded in webview on new screen. its all done fine. But i want some…
rahul sapra
  • 149
  • 1
  • 3
  • 6
5
votes
1 answer

Flutter ListView lazy loading in both directions (up, down)

I would like to have a ListView in flutter which provides lazy loading in both directions (up, down). Example: There are 60000 items in the backend database which can be theoretically displayed. First I want to display the items 100..120 From…
ChrisRo
  • 231
  • 3
  • 9
4
votes
2 answers

Put the Scroll View under the Up and Down Button

I want to show the scrollView under the Up and Down button as show in picture. And after taping on up and down arrow scroll bar should be scroll and after long press on the up and down button it should be scrolled continue till the end point. Please…
A K Jha
  • 89
  • 1
  • 10
2
votes
1 answer

How to disable volume on app

I'm testing with "turn up/down" volume events, and it works fine, but I have a question. When I hit the "turn up" volume button my code works correctly, but when I press the turn down volume button this is what I see on my…
Aris Guimerá
  • 1,095
  • 1
  • 12
  • 27
2
votes
2 answers

stm32 how to make pulse count up/down with timer

I need for my personal project counting pulse and direction with timer. With this code I can count only one direction. Any suggestion are welcome for correct code (this code is pretesting) pulse count to PA_9 and direction input to PA_8 #include…
2
votes
1 answer

Incrementing and Decrementing Values in the UpDown Control in C++ WINAPI

Today I am faced with an issue of incrementing and decrementing my updown controls in WINAPI. I have an image below of my updown control. It is buddied with an edit control What I would want this control is to increment/decrement by 1 respectively…
ahri
  • 21
  • 3
2
votes
1 answer

Up-Down control doesn't show its position in its buddy window

I created an up-down control by the following code. HWND hEdit, hUpDown; hEdit = CreateWindowExW(WS_EX_CLIENTEDGE, L"EDIT", Content.c_str(), ES_LEFT | WS_VISIBLE | WS_CHILD, …
hkBattousai
  • 10,583
  • 18
  • 76
  • 124
2
votes
3 answers

c# forcing a numeric updown to only accept positive integers with try-parse

I've only been doing this a few days and I'm pretty confused. Everything else works fine, and the box only displays integers, but it still calculates with decimal values.
Jamaul Smith
  • 53
  • 1
  • 6
1
vote
1 answer

How to enable windows keys (pg up/pg down) on apple wireless keyboard on PC

Not very development related question but still. I have PC + Windows 7 + Apple wireless keyboard. Struggling to find a way to have pg up/pg down or home/end functionality out of it. No luck so far. Any suggestions?
Denis
  • 43
  • 4
1
vote
2 answers

Implementation of Arrow keys using JavaScript or jquery

I have a jsp page, i want to implement up-down-left-right key functionality into page. i have following code but it visits the readonly text box as well. i want to skip that readonly inputs. Please check attached snap. I have A,B,C,D,E,F,G,H inputs…
CodeFunda
  • 23
  • 5
1
vote
1 answer

Displaying value in an Edit/UpDown buddy in AutoHotKey

Is there anyway to get the textual chosen "word" to display in the spinner UI element as one flips through? Whenever the user enters an up or down key the gosub display is called. So far though i have found only ways to display the index not the…
emanuensis
  • 133
  • 2
  • 10
1
vote
3 answers

Why does the Rails increment method doesn't save the changes?

I have this code to implement a thumbs up/down functionality in my rails app if params[:vote][:type] == "up" answer = Answer.find_by_id(params[:vote][:id]) answer.increment(:ups) render text: answer.ups end if params[:vote][:type] ==…
Akshay Takkar
  • 500
  • 1
  • 7
  • 21
1
vote
3 answers

Maintain UpDown-Associate connection while recreating the associate

I have an TUpDown control whose Associate is set to an instance of a TEdit subclass. The edit class calls RecreateWnd in its overriden DoEnter method. Unfortunately this kills the buddy connection at the API level which leads to strange behavior…
Uli Gerhardt
  • 13,748
  • 1
  • 45
  • 83
0
votes
0 answers

controlling updown spinner elemnt using pywinauto

I am trying to control the value of a UpDown spinner element with pywinauto. this is my element i want to control: UpDown - 'Spinner' (L384, T624, R400, B642) | | | | | ['Spinner', 'SpinnerUpDown', 'UpDown'] | | | | …
Omer
  • 307
  • 5
  • 17
1
2 3