7,599 questions
1
vote
1
answer
82
views
How to display a progression bar on the task bar using Go and Fyne?
I am creating a little software in Golang. I use Fyne as GUI library. It creates long process (it it a file encrypter), so I display a progression bar, as it:
go func() {
go encryptCore(
...
0
votes
1
answer
106
views
Show progress bar when reading files with globbing with polars
I have a folder with multiple Excel files.
I'm reading all of them in a single polars DataFrame concatenated vertically using globbing:
import polars as pl
df = pl.read_excel("folder/*.xlsx")...
2
votes
0
answers
212
views
How to put a progress bar on a long running R script
I have a small shiny app in shinyapps.io with a database that stores products. I want to re-deploy the app everytime the database gets new data so the shiny app shows up-to-date products. Since this ...
0
votes
1
answer
40
views
tkinter progress bar freezes in I do anything else
I built a simple progress bar (I want to use it in many other programs), but the problem is, if I move the window, or click on anything else the progress window freezes. The script keeps running but ...
0
votes
1
answer
73
views
Progress bar display issue with setinterval
I have a jQuery script that makes an Ajax call to a PHP file (process.php) to retrieve the status of a database (The upload.php and import.php parts are working fine and not relevant here I would say),...
0
votes
2
answers
63
views
How to create a simple status/count/progress output when searching for files using rglob() in Python?
I have a simple line that searches for all .json files, except there are about 28k of them, so this one line takes about a minute to complete:
from pathlib import Path
files = list(Path("~/foo/...
0
votes
1
answer
40
views
HTML5 Twitching Audio Progress Bar in Safari/Orion, Smooth in Chrome/Firefox
Problem:
About half a second after audio playback starts (in Safari and Orion), the progress bar "twitches", jumping back towards the start momentarily before continuing to progress. The ...
0
votes
0
answers
27
views
Can not initiate js circle progress in Gutenberg FSE
I have created a custom Gutenberg block via npx @wordpress/create-block called stat-block, I have index.js, edit.js, save.js, view.js and block.json. I believe I have everything setup correctly as all ...
0
votes
2
answers
125
views
Circular Progress and Graph
I've been trying to create this design using HTML, CSS and JS (particularly chart.io). I am wondering if there is a better way to do this without relying much on JS. The reason for this is that, this ...
0
votes
1
answer
87
views
providing support of progress of File transfer in percentage
How to Show File Transfer Progress Percentage in Java with HttpURLConnection?
I am currently working on an API that downloads a file from a server and writes the content to a specified location using ...
0
votes
0
answers
13
views
HTML progress element missing from browser print [duplicate]
If a user attempts to print our webpage that contains <progress> elements, the elements appear empty… unless the user enables the hidden/advanced “background graphics” (Chrome) or “print ...
0
votes
1
answer
65
views
How to make this function usable for other progressBars rather than repeat it for every progressBar?
private void LoadProgressBar1(Label label)
{
int labelValue;
if (int.TryParse(label.Text, out labelValue))
{
int total = 120;
int progressValue = (int)Math.Round((...
2
votes
1
answer
80
views
How to create a layout as shown in the image?
The center circular area is actually a progressbar surrounded by profile picture. I need to show progress using animation. I can get required assets from designer. I am able to achieve the main layout ...
1
vote
0
answers
219
views
rich.Progress nested with correct time
I try to implement a nested progress bar, which resets the inner.
The following works for displaying the progress as I expected:
import time
from rich.progress import Progress
with Progress() as ...
0
votes
1
answer
73
views
How to open a window with progress bar midway during task
I find OriginalGriff‘s alternative progress reporting method quite interesting. But I ran into a problem, which I suspect I also will run into if I use the BackgroundWorker.
My idea is to start a long ...
0
votes
1
answer
101
views
How to Integrate a VTK Progress Observer with tqdm for Real-Time Progress Visualization?
I am using Python and would like to follow the progress of a vtk function as it proceeds, perhaps through the tqdm package. I have heard about progress observers (or, well, spotted from the ...
0
votes
0
answers
39
views
How to Display Smooth, Continuous File Processing Progress?
I'm building an Electron app where I need to process large files/folders by splitting them into smaller chunks (ex: 512MB each) and display real-time progress to the user. However, the progress ...
0
votes
0
answers
24
views
Title: Issue with RemoteViews ProgressBar Updates in Notifications (SDK 31+)
In Android SDK 31 and above, I encountered an issue with updating RemoteViews in a notification. I use a custom RemoteViews layout containing three ProgressBar elements (A, B, and C). The layout is ...
0
votes
1
answer
113
views
How to create custom progress bar in android?
How can I design this progress bar in android? I have to do it in XML or canvas, not in jetpack compose.
I tried to customize the built in horizontal progress bar but couln't come up with anything ...
0
votes
1
answer
102
views
Continue CSS animation cycle
I have an animated progress bar where I use the animation-iteration-count CSS property to specify the progress in percentage. So if the progress should be 50% I set animation-iteration-count: 0.5. On ...
0
votes
0
answers
64
views
Progressbar or Data in View not shown in WPF
I'm loading a large set of data, and I want to display a ProgressBar while the data is being analyzed. Here's what I've tried so far:
if (openFileDialog.ShowDialog() == true)
...
0
votes
0
answers
77
views
How do I stop the loading bar freezing despite the task being completed?
In my code, the progress bar freezes when it reaches the "Updating portal files record..." status message. However, the subsequent task, UpdatePortalFileApprovalAsync, does actually complete ...
0
votes
2
answers
346
views
Show actual progress of code behind process on ASP.NET page
I titled this with "Actual Progress" because everything I've found regarding the <asp:UpdateProgress> doesn't actually show progress, it just shows that the user needs to wait. I'm ...
0
votes
1
answer
43
views
Trying to trigger an event once progress bar animation is compete
I'm successfully using the below HTML code to trigger a completion event in our LMS.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Post-...
3
votes
3
answers
167
views
How to partially use a border-radius with an actual border in a progress bar
I have multiple segments in a progress bar, in this example representing two states - achieved and planned values. The planned segment should have a border and nearing the end of the progress bar it ...