3,357 questions
0
votes
0
answers
14
views
Animating Svg path in the desktop compose app flickers without actually rendering anything. Why?
I am trying to create a path animation of Svg in the desktop compose app.
fun SvgDocument.drawCompletedFills(buildPaths: List<BuildPath>, drawScope: DrawScope, canvas: Canvas, targetLength: ...
-1
votes
0
answers
16
views
JavaFX Desktop Application. Executable for windows
Guys, I really need some guidance. I’ve written a lot of code and classes in IntelliJ IDEA for my JavaFX application, but I’m running into serious difficulties when trying to turn it into an ...
0
votes
0
answers
61
views
Why drag and drop from my application is not happening to any external applications in electron
My problem:
I want to drag a file from my application into the another application like Paint , Windows Excel , Windows Files system ect, but the drop is not happening.
I have an Electron app. The ...
1
vote
0
answers
57
views
How to install a package service as user using C#
I have an UWP app that has a Service as fullTrust application. I'd like to download and install that Service if it does not exist. The download it is being performed, however I have "Access ...
0
votes
0
answers
38
views
WiX skip uninstall registry set to 1 and during upgrade uninstall all unnecessary stuff
I have a problem during my WiX upgrade - after normal installation of my program for example in version 1.0 I am installing all necessary stuff like RabbitMQ, Erlang and so on but if I want to upgrade ...
0
votes
0
answers
15
views
jlab not working from the terminal to lunch JupyterLab desktop app
The JupyterLab desktop app GitHub repository at https://github.com/jupyterlab/jupyterlab-desktop?tab=readme-ov-file says that the app can be launched by the command jlab from the terminal, but I get a ...
0
votes
1
answer
224
views
WinUI 3 App Not Showing in Kiosk Mode (Assigned Access) App List on Windows 11 Pro
I'm developing a Kiosk application using WinUI 3 on Windows 11, and I'm trying to test it locally using Assigned Access (Kiosk mode).
I’ve packaged the app as an MSIX using Visual Studio and ...
0
votes
0
answers
36
views
Can't open Nuget package manager in Visual Studio 2022
I am using Visual Studio 2022 v17.13.5. I have many desktop (Winforms) and ASP.NET MVC web application projects. For some time now, I have a problem with Visual Studio and it is affecting all the ...
0
votes
0
answers
68
views
flet NavigationDrawer control does not close programmatically when opened with View()
Using flet library in python, I am trying to close a NavigationDrawer control programmatically using a button. The NavigationDrawer is added to the page using a View(), and I want to close the navbar ...
0
votes
0
answers
98
views
Why does Flutter app doesn't compile for Linux
When I try to compile my Flutter project it throws this error. This issue started occurring recently. Not sure what package I'm missing. If someone has solved this issue help me out. Currently testing ...
1
vote
0
answers
46
views
How to make Grid items stretch instead of resizing? Flutter
how could I make it so that whenever the user resizes the window the items in the grid(GridView or SliverGrid) stretch instead of changing height? is this possible?
let me show an example of the ...
-1
votes
1
answer
67
views
Azure pipeline giving error An element could not be located at line WindowsDriver<WindowsElement>(new Uri("http://127.0.0.1:4723"), appiumOptions);
I am getting the error:
ClassInitialize threw exception. OpenQA.Selenium.WebDriverException: OpenQA.Selenium.WebDriverException:
An element could not be located on the page using the given search ...
0
votes
0
answers
22
views
Custom word Add-in is listed but not able to use
I've created a Microsoft Word Add-in that works as expected on one Windows server with Microsoft Office 2021 Professional installed. However, on another server where Microsoft Office 2021 Standard is ...
1
vote
1
answer
54
views
MatchError When Accessing Desktop Window Properties in Pywinauto
I am trying to interact with windows using pywinauto. Here's the code snippet I am using:
top_windows = Desktop().windows()
for w in top_windows:
print(w.window_text())
print(w.get_properties()...
1
vote
1
answer
119
views
How to programmatically trigger "Next desktop background" in Windows using C#?
I'm developing a customized application for personal use on my system. It's a system controller that runs on startup and appears when I press the F1 and F2 keys simultaneously. I initially built it to ...
0
votes
0
answers
33
views
How to get data from a dynamic custom table-like element of a legacy desktop application? (table not detected by pywinauto)
I want to get data from the table of a legacy Windows desktop application.
I tried pywinauto - the scroll bar, titles, checkboxes, tabs are detected but the table is not detected.
I found few tab ...
0
votes
0
answers
38
views
ERROR in ./node_modules/vuex/dist/vuex.esm-bundler.js vue-app
The app runs properly in npm reun electron:serve while running the command npm run build and npm run electron:build these error occurs
error in ./node_modules/vuex/dist/vuex.esm-bundler.js + 5 ...
0
votes
1
answer
101
views
Differences between app.config and settings.settings
A similar question was raised 15 years ago, and there is still no clear answer to what the difference is between app.config and settings.settings. If anyone has a clear understanding of the difference ...
0
votes
1
answer
109
views
Getting a browser window's URL from a Windows desktop application
I'm wondering if there's any way for a Windows desktop application (i.e. compiled using the Windows SDK) to get the current URL for a browser window running in another process.
Put another way, I'm ...
1
vote
0
answers
67
views
Where to store large files in an electron desktop app
I have an electron app where users "upload" (everything is stored locally on the users computer) thousands or more textfiles. These may exceed a couple of Gb in total. These are then suppose ...
1
vote
1
answer
364
views
Share variables between build.gradle.kts and the application
Is it possible to share variables between build.gradle.kts and the main application? I would like to specify the application's name and version and few other settings only once.
0
votes
1
answer
47
views
Freeze all windows/apps and just show the electron.js app fullcsreen
I am trying to build a desktop app using electron.js. I want it to behave something similar to how online test taking applications are, where user can access nothing but only that test app, except ...
0
votes
0
answers
178
views
Creating a UI with using Win Ui in python
i am trying to create a desktop app using python firstly i create a folder and next open in vs code and create files like winui.py and page.xaml and then run this code and give me some related to ...
0
votes
0
answers
53
views
WPF Child Window Disappears When Switching Between Applications (Topmost property set to true overlaps other applications)
'm working on a WPF desktop application and I'm experiencing an issue with how my child windows behave when switching between applications. Specifically, when I switch to another application using the ...
0
votes
1
answer
65
views
WPF DatePicker Datagrid Filter
I want to filter the data in my datagrid by date. The start and end date will be entered and the data between those dates will be returned.
The data type in which I keep the date in my database is ...