167,722 questions
Score of -3
0 answers
52 views
Resource for Unicode codepoint coverage for iOS, Android, macOS, Windows and Linux [closed]
Is there a resource that maintains Unicode codepoint coverage for all versions of iOS, Android, macOS, Windows and Linux?
I need to have coverage for iPhoneOS 1.0 to iOS 27.0, Android 2.3.3 to Android ...
Score of 1
1 answer
151 views
Using git, how can I checkout a commit containing files that have invalid file names?
I cloned a repository that contains files with file names that are invalid to my operating system (Windows), e.g., "assets/images/[email protected]:Zone.Identifier". So, I cannot checkout anything ...
Score of 0
1 answer
57 views
WinUI 3 unpackaged self-contained app works in Debug/Release but crashes after Publish (0xc000027b in Microsoft.UI.Xaml.dll)
I created a brand-new WinUI 3 application from the Visual Studio template.
Configuration:
.NET 10
Self-contained
Unpackaged (WindowsPackageType=None)
x64
The application runs correctly:
✅ Debug
✅...
Score of -1
0 answers
154 views
How do you check if the proxy in Windows Proxy Settings is on?
I have an application that needs to route requests through a proxy server.
There are a couple of different proxy server choices to choose from, and each user has certain reasons for choosing one. I ...
Score of 0
0 answers
73 views
i want to open share dialog which can perform share in java swing or javafx
Goal:
I am building a Java desktop application (Windows 10/11) and I want to programmatically open the OS's native "Share" flyout/modal to share a specific local file (e.g., C:\path\to\...
Score of 0
0 answers
99 views
How to insert images into rich textbox in another app? [closed]
The Windows GIF picker (win + .) lets you insert GIFs from giphy and insert them into rich textboxes that the user is focusing at. **It could be any app that the textbox is in**, so it is not ...
Score of 1
1 answer
126 views
ConnectionResetError: [WinError 10054] in asyncio Proactor event loop on Windows (Python 3.13) without explicit socket handling
I am attempting to run an asyncio-based web application (Zedstron/babymonitor) on Windows using Python 3.13, but I am consistently encountering standard library logging errors related to ...
Score of 0
0 answers
87 views
Remove installed printers mapped to old printer server using batch script
I need to delete the installed network printers mapped to an outdated print server when the user logs in. I found and tested a script but need some assistance as it isn't removing the network printers....
Score of 2
1 answer
78 views
Using PS, export users in the AD groups that have certain prefix and suffix
How would I export all of the users in the AD groups that start with prtr and end with -d using PowerShell?
Example:
prtr-fin1-d
prtr-int1-d
prtr-med1-d
I want to exclude groups that start with ...
Score of -2
0 answers
56 views
How to test Microsoft Store In App Purchase without releasing new version? [duplicate]
I have implemented In App Purchase for Microsoft Store using Windows.Services.Store C++ API for my C++ project.
Is there a way to test this IAP functionality without releasing new version to store?
Score of 0
1 answer
94 views
How do I include zlib in LibTIFF on Windows?
I am tasked to convert many tiff images to pdf on a Windows platform. tiff2pdf.exe from LibTIFF works well for most tasks. Certain errors came up a few months ago which I solved by spending the time ...
Score of -4
0 answers
89 views
Vite React project creation fails with "Cannot find native binding" and ERR_DLOPEN_FAILED on Windows (Node.js 22) [duplicate]
I'm trying to create a new React project using Vite on Windows.
Command I ran:
npm create vite@latest
I selected:
- Framework: React
- Variant: JavaScript
After the project is created and dependencies ...
Score of 2
2 answers
98 views
Word crashes after ThisDocument.Close when run from a MACROBUTTON field
I have a VBA script in an MS Word document which does some actions on other files and then is supposed to close itself, leaving the other files open. In testing, this proved to cause Word to crash (...
Score of 1
0 answers
136 views
Unable to download video with Google Photo Picker
I am developing a winui slideshow app which obtains media from google Photos. I can successfully, authenticate with the new google photo picker API and get a list of urls for boh jpg and mp4 files ...
Score of 3
3 answers
144 views
Python Tkinter wait_window does not return
I want to code a simple chat application in Python with Tkinter UI.
Here is the code so far:
main_view.py:
import tkinter as tk
from tkinter import ttk, scrolledtext
from model.observer import ...