How to run a Highest Priority Periodic Task in C# WPF?
In My C# WPF .NET Framework Program i have multiple works to do :- 5 System.Timers. Timer: 3 instances which check periodically for (1min,40 sec, 2 mins) respectively. They check and run for (internet fluctuation, some db query , some websocket auto…
Developer technologies | Windows Presentation Foundation
CEFSharp web application initial load takes more time to load screen in WPF application
Hi All, We have a windows application which is built in WPF application , that integrates the web application using CEFSharp browser. Application has feature to open the browser in Tab, On open the web application in TAB item, first time it takes more…
Developer technologies | Windows Presentation Foundation
design help
I am trying to make my button identical as the settings->Add a Bluetooth device for some reason, it doesn't matter if I decrease the heigh of windows <Button Grid.Row="3" Margin="20" Padding="0" …
Developer technologies | .NET | .NET MAUI
find animation
I am having problems crating this control on .NET Maui the famous three dots so, I he 2 options create it on my own, that it dosent behave like the one I want <Grid x:Name="DotsTrack" HeightRequest="8" …
Developer technologies | .NET | .NET MAUI
.net Maui android app icon
ive been having issues trying to set a simple png for an app icon for my maui project for the android version of it. i followed the steps listed in the maui learn article. but the icon never shows up for the android build of the app. i have seen other…
Developer technologies | .NET | .NET MAUI
I’m trying to override a language in an External Identities user flow (Microsoft Entra ID) by customizing all the attribute strings, exporting them, modifying the file, and reuploading it. However, the changes are taking a long time and not able to config
I’m trying to override a language in an External Identities user flow (Microsoft Entra ID) by customizing all the attribute strings, exporting them, modifying the file, and reuploading it. However, the changes are taking a long time and not able to…
Developer technologies | Small BASIC
Clarification on Office365 SMTP with MFA
Hi, My application uses an Office365 account to send emails via SMTP with username and password using the MailKit library. From October 1, 2025, onwards, MFA will be mandatory for Office365 accounts. Will my existing application continue to work without…
Developer technologies | C#
Aspire in windows Not connecting to Docker Desktop on Mac M1
I have docker desktop running on Mac M1, and trying to connect to it from Visual Studio in Windows 11 inside Parallels. I am able to browse apps running in Docker from edge in windows with no issues. Aspire app out project is able to run the docker…
Developer technologies | Visual Studio | Debugging
Is the Offline Installation for Visual Studio 19/22 Broken for Anyone Else?
After the May update (16.11.47) of this year, I haven't been able to update our Visual Studio software. It seems that something has changed in the way Microsoft packages are fetched for offline use within the past couple of months. Interestingly, the…
Developer technologies | Visual Studio | Setup
can i restore my messages from indow link, its only 2/3 months old
can i restore my messages from indow link its only 2/3 months old how to restore from windows link to my android phone
Developer technologies | Small BASIC
Open External browser in Incognito mode from UWP app
var success = await Windows.System.Launcher.LaunchUriAsync(uri), I can use this to open an external browser in Normal mode. Is there any way to open Edge or any external Browser in Incognito mode from my UWP app?
Developer technologies | Universal Windows Platform (UWP)
.NET MAUI Blazor Hybrid App Publish to Windows
Hi, When I am trying to publish .NET MAUI Blazor HYbrid App to Windows I get the below error, Thepub.xml files are present though Captureerrorfile.PNG Captureerrofile2.PNG
Developer technologies | .NET | .NET MAUI
UWP Build No Longer Signed After Enabling Xbox – Unity + Partner Center Integration Issue
Hello, I hope you're doing well. I’m reaching out regarding an issue I’ve encountered after integrating Xbox into my UWP game publishing workflow via the Xbox Creators Program. Initially, I successfully built and published my game to the Microsoft Store…
Developer technologies | Universal Windows Platform (UWP)
Printing a Local Report without Preview
dear all I using visual studio 2022 with MVC NET 8 and C# language and Microsoft reporting service 2016. I want to print an invoice without displaying the report based on its type, for example: cash payment or home delivery. Both invoices have different…
Developer technologies | ASP.NET | ASP.NET Core
How to upload an Image using FTP in asp.net c#
I'm using the below code to upload an image via FTP concept and at the line of code using (Stream requestStream = request.GetRequestStream()) { requestStream.Write(fileData, 0, fileData.Length); } I'm…
Developer technologies | ASP.NET | ASP.NET Core
Sending SMS from ASP.NET Web Application Using Twilio API
I am attempting to implement a feature that allows a user to send an SMS to a mobile number from a web application using the Twilio API. The application setup consists of two text boxes: DestnationPhone.Text SmsMessage.Text In this feature, a user will…
Developer technologies | ASP.NET | ASP.NET API

How to fix swagger and openApi version issue
Why am I getting "Unable to render this definition. The provided definition does not specify a valid version field. Supported version fields are swagger: 2.0 and openapi: 3.x.y" when running Swagger in my ASP.NET Core project?
Developer technologies | ASP.NET | ASP.NET API
How to log "Console.WriteLine" to Azure Web app from MVC (C#)
I have an Azure Web App with C# code deployed using the MVC structure. I need to test a specific function within a Model, but due to environment limitations, this can only be done when the code is deployed to the Web App, not locally. I want to log…
Developer technologies | ASP.NET | ASP.NET Core
While launching the WinUI application in unpackaged scenario the application icon is not shown in the TaskBar
Hello, We are working on a WinUI application targeting .NET 8 and .NET 9, and our goal is to launch the app via the .exe directly. To achieve this, we've updated our launchSettings.json and .csproj as follows: In LaunchSettings.json "profiles":…
Developer technologies | Universal Windows Platform (UWP)
How to clear most recently used list in C# UWP application. StorageApplicationPermissions.MostRecentlyUsedList clear/remove doesn't work
How to clear most recently used list in C# UWP application StorageApplicationPermissions.MostRecentlyUsedList.Clear() or StorageApplicationPermissions.MostRecentlyUsedList.Remove(token) I can able to add new entries using below code and I can see the…