6,722 questions
1
vote
0
answers
109
views
static window duplicates on both main and scroll windows in WinAPI c++
I want to create child scrollable window that has specific size and position and it will contain messages as static windows, I tried different class names for this messages_window , if I use "...
1
vote
1
answer
107
views
Add mouse wheel scrolling to a frame with both vertical and horizontal scrollbars
import tkinter as tk
root = tk.Tk()
root.geometry("400x300")
outer_frame = tk.Frame(root)
outer_frame.pack(fill="both", expand=True)
vertical_scrollbar = tk.Scrollbar(...
Advice
2
votes
7
replies
174
views
Cannot understand scrollbar program from Charles Petzold's "Programming Windows, 5th Edition"
I am reading Charles Petzold's "Programming Windows, 5th Edition". I am studying a program that displays a window's text metrics and also uses scrollbars. The program consists of 2 files : ...
4
votes
1
answer
136
views
Scrolling secondary scrollbars in webpage using Python Playwright
I am trying to automate a webpage containing more than one scrollbar. Sometimes the scrollbar is on the left side and sometimes it is in the middle of the page (e.g.: adjacent to a web table). These ...
2
votes
1
answer
106
views
DaisyUI Navbar is generating scrollbar on fullpage site
I'm using Vite v7.2.4, Tailwind v4.1.17 with DaisyUI v5.5.5. I'm trying to create a full page website where the Navbar will be always visible and the section will change. But every time I add a Navbar ...
2
votes
1
answer
342
views
NiceGUI Fits with Hight and Width of a Web Page
In following Python script I would like to know why horizontal and vertical scroll appear after the script run. I try all widgets just fit into a web page not exceed the page size. Here is my script:
...
0
votes
1
answer
104
views
Drawing behind a transparent scrollbar track
If you ran this code the lines do not appear behind the transparent scrollbar track I cannot figure out how to fix this I'm currently using chrome/edge trying to fix this for my game so it doesn't ...
0
votes
0
answers
54
views
Horizontal scrolling on v-calendar
my vue site is simple as hell I think
<template>
<v-calendar
type="category"
v-model="focus"
:categories="categories"
:events="events"...
0
votes
0
answers
67
views
python tkinter scrollbar windows 11 weird behavior
I just upgraded to Windows 11 and opened my app that previously looked and worked fine in Windows 10. I am using python 3.11.15 with tkinter.Scrollbar objects for the scrollbars (not ttk).
Some of my ...
2
votes
1
answer
85
views
panel scroll slow paint thumb moving not properly
I have a panel with AutoSize property false and AutoScroll true. Inside this panel, there are some controls, various rows each one with a label and some numericupdown. The form is not double buffered, ...
0
votes
1
answer
97
views
How do I allow room for scrollbars when creating a WebContentsView in Electron?
My Electron application temporarily uses a WebContentsView, layered on top of part of the main window, during a login process. The user needs to interact with the web page in this view.
Simplified ...
0
votes
1
answer
346
views
Intermittent Scroll Issue in Safari on macOS for React/Next.js Application
I am experiencing an intermittent issue with scrolling in my React/Next.js application when using Safari on macOS. The scroll functionality works perfectly in other browsers like Chrome and Firefox, ...
1
vote
1
answer
138
views
Delphi TTreeeView Horizontal Scroll and custom item draw
We have implementation that uses OnCustomDrawItemEvent of treeview to draw items.
NodeRect := Node.DisplayRect(true);
TextRect(NodeRect,NodeRect.Left, NodeRect.Top, sometext);
The issue is that some ...
-1
votes
1
answer
65
views
How do I turn off TODO marks in the CLion scrollbar area?
CLion has the nice feature of the scrollbar area background serving as a sort of a 1D minimap of the text pane, showing you warnings, errors, find results etc. via horziontal line markings.
One kind ...
0
votes
0
answers
160
views
how does a website override Firefox and hide scroll bars -- example NYTimes.Com
This started out playing with hiding scroll bars on my own website (as viewed on my Firefox browser), and then ventured into finding out how the NYTimes.Com does it on individual news pages.
There, ...