How to communicate with Xbox one controller in uwp?
I can use Windows.Gaming.Input to get the key input of the handle (this is the handle of a third-party manufacturer and has passed Microsoft Certification), but I want to communicate with the device through byte array. I notice the namespace:…
Developer technologies | Universal Windows Platform (UWP)

Visual Studio Community 2022 Launch Error: Unable to load GlobalHubPackage
I undertook a completely new installation of Visual Studio Community 2022 after reinstalling Win 11 Pro operating system. But an error saying "Unable to load GlobalHubPackage" appeared when the app first launched. I upload the ActivityLog.xml…
Developer technologies | Visual Studio | Other


C# Dev Kit doesn't pick up transitive package references
I'm trying to debug my .NET Core console app in VS Code. I have two projects: console app and class library. My class library project contains package references to Pomelo.EntityFrameworkCore.MySql which has Microsoft.EntityFrameworkCore as a transitive…
Developer technologies | C#


Setup Microsoft VS code
Is there anyone who can set up Microsoft VS Code correctly on my Windows 11? I disturbed from this by 3 days, Please help me ,I don't know about this problem
Developer technologies | Visual Studio | Setup
how to use JsonSerializer with out il2026?
I am using .net android and If I use JsonSerializer to DeSerialize string it will be IL2026 and if I use JsonSerializerContext it can not deSerialize string
Developer technologies | .NET | .NET MAUI
Upload Application via Windows Store
Application Security via Windows Store Unlike Apple App Store and Google Play, the Windows Store currently does not provide entitlement check APIs (such as app keys or certificates) to safeguard applications. This raises a concern, as without proper…
Developer technologies | Windows Forms
how to produce the return type of API?
I am using .net API and I added swagger and return dynamic object. but in swagger there is nothing. I added the [ProduceResponseType<>(200)] but what is the dynamic type so that I can check what I returned in swagger
Developer technologies | ASP.NET | ASP.NET API
serial port support in VB in VS2022
How to specify a serial port in VB2022? It used to be available in the toolbox but it's no longer there. Using the declaration Dim ModBusComm1 As New System.IO.Ports.serialport() also didn't work. Can't declare Imports System.IO.Ports too.
Developer technologies | Visual Studio | Setup

W11 build 26100.1- 10.0.26100.1- for Windows Insiders- causing problems?
Hi All On May 3rd this year Windows tech support asked me to download and install an ISO to fix problems caused by the 0x80240067 error- (can't download updates from Microsoft Store). This worked but in recent months I've been having crashes with my main…
Developer technologies | Windows Forms
Temporary files in using Visual Studio 2022
I have recently downloaded Visual Studio 2022 after reinstalling Windows and I realized that it continuously created temporary files in temp folder. After I turn off, all files are deleted but when I use in long time, it takes me until 30GB and my free…
Developer technologies | Visual Studio | Testing

Java.Lang.RuntimeException
I am developing an application that gets access to my OneDrive and downloads certain files; at the moment it is only a draft, for testing purposes - for Android only. Here is a code snippet: try { //... // NOTE:…
Developer technologies | .NET | .NET MAUI
How to write a Visual Studio extension that injects environment variables into a .NET 4.8 application on debug launch
I want to write a Visual Studio 2022 extension, that injects environment variables into a debugged application when launching the debugger. The debugged project is a .NET 4.8 application, so I cannot set additional environment variables via debug…
Developer technologies | Visual Studio | Extensions
GPU process exited unexpectedly: exit_code=34 ONLY MAUI Windows WebView2
Hello IT gurus I have a MAUI application (more platform versions) with web browser's handlers (Microsoft.Web.WebView2, Webkit.WebView, WKWebView...) all versions run OK. But sometimes (quite ofter on my computer) ONLY on Windows platform (WebView2) I…
Developer technologies | .NET | .NET MAUI
How do I start an application process in a new desktop (Desktop 2) with CPP and CreateProcess
// Module_5_Processes.cpp : This file contains the 'main' function. Program execution begins and ends there. // #include <Windows.h> #include <stdio.h> #include <iostream> #define NULL 0 int main() { //NOTES /* BOOL…
Developer technologies | C++
SUBSCRIBING TO PLATFORM EVENTS
Following the example in article https://learn.microsoft.com/en-us/dotnet/maui/fundamentals/app-lifecycle?view=net-maui-9.0, I tried the following: public static class MauiProgram { public static MauiApp CreateMauiApp() { var builder =…
Developer technologies | .NET | .NET MAUI
How can I handle video uploads and processing efficiently in a video streaming app?
I'm working on a video app where users can upload and stream videos. I'm trying to decide the best way to handle the video upload and processing part. I want to avoid laggy or slow experiences on the client side, especially on mobile. Should I compress…
Developer technologies | Windows Forms
can not get the android binding?
I am using .net android and I want to use the zxing-android-embeded.aar but there is something wrong: CS1503 can not convert Com.Journeyapps.Barcodescanner.Camera.CameraThread to Android.Runtime.IJavaObject protected virtual unsafe…
Developer technologies | .NET | .NET MAUI
how to create a customized form with more that 40 fields connected to microsoft lists
Hello, I need your guidance on how to create a customized form in PowerApps with 40 fields connected to Microsoft Lists. Regards
Developer technologies | Windows Forms
visual studio 2017 on windows 11 for iot core x86 uwp app development
Hi, I was using visual studio 2017 community on win 10 pro host m/c. I am learning uwp app development on windows 10 iot core x86 image running in virtual box. My development interest is only 32bit Embedded products only. Recently due to the resource…
Developer technologies | Universal Windows Platform (UWP)
Developer technologies | Visual Studio | Other
CircularBuffer WinForms, Cancel, best practice
My problem is to let the ring buffer run endlessly until the application is closed. How can I achieve this, what are the dimensions? Perhaps the filling should also be better integrated into the RingBuffer / CircularBuffer class? For Remove I use…