PivotCache.CreatePivotTable no longer applying users default layout options in Version 2508
We have found a recent Regression in Excel Version 2508. When using VB to create a new pivot table, such as PivotCache.CreatePivotTable(), it no longer copies over the user default layout options that they defined in Excel. This used to work with no…
Developer technologies | Visual Basic for Applications
How can I get the getFormattedPrice() from the In-App Billing Plugin for .NET MAUI and Windows?
I use this plugin and code to get my in-app purchase product details on Android and iOS. I want to display the price for each in-app purchase in the user´s local currency. But I don´t know how to get the getFormattedPrice() from the plugin. Plugin:…
Developer technologies | .NET | .NET MAUI
Which font can I use on Android and iOS to display the price in many different currencies?
For best practice, always use LocalizedPrice for anything shown to the user, it ensures your UI exactly matches the store’s purchase screen, including currency symbols, decimal separators, and locale rules and only use MicrosPrice (or Price) only for…
Developer technologies | .NET | .NET MAUI
Stored Procedure not executing as SQL Agent Job
I have a stored procedure (1) that updates JSON data (via JSON_Modify()) in an auditing table to replace raw binary with a short string 'Binary column data.'. This stored procedure functions when executed in SSMS, but when I try to have a SQL Agent Job…
Developer technologies | Transact-SQL
SQL Server | Other

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
Microsoft Visual C++ isuses
Hi, I keep getting warnings saying the following: Microsoft Visual C++ Runtime Library Assertion failed! Program ...\node-vulcan\build\release\vulcan messageLib node File:C\bldworkspace\CCX-process\release...\vulcan…
Developer technologies | C++
How can I automatically convert Visual Studio .coverage files to XML or Cobertura format for use in CI pipelines?
Hi, I’m working on C++ projects with Visual Studio Enterprise and I can generate .coverage files for code coverage. However, I need to automatically convert these .coverage files to XML (preferably Cobertura) or HTML formats in my CI/CD pipeline, so that…
Developer technologies | C++
VisualStudioSetup.exe installer instantly closes after opening.
I wanted to install visual studio but once i open the installer it instantly closes. Just blinks and closes. I can install and open visual studio code but i need visual studio to install cpp build tools. vs_BuildTools.exe closes the same way…
Developer technologies | Visual Studio | Setup
How to upload an attachment using .NET/C# to SharePoint List?
Dear community members, I am trying to communicate to SharePoint List through a console app and later through Azure Function APP. I am able to upload Title, Description, and other single/multiple line statements. But I am unable to upload an attachment…
Developer technologies | C#
exe.Config file not updating
Hi folks, I have a WinForms app. I use the App.config file for setting database connection strings I have a connection string for a test database and for a live database. I comment out the one that I am NOT using. However, when I try and build by…
Developer technologies | C#
Unexpected Repeated Invocation of CreateWindow() in .NET MAUI App
In our .NET MAUI 9 application, we set the initial page (LoginView) inside the overridden CreateWindow method. We have observed that CreateWindow is being called multiple times unexpectedly, particularly when the device is idle. Each call to CreateWindow…
Developer technologies | .NET | .NET MAUI
Bluetooth devices
I am making an app, that scan for Bluetooth devices I am on Windows I made an interface public interface IBluetoothDeviceService { /// <summary> /// Starts discovery of nearby Bluetooth LE devices. /// Only devices that are currently…
Developer technologies | .NET | .NET MAUI
How to create a 16 KB Compactible Emulator for Visual Studio
I have an MAUI application, and I updated some of my packages to 16KB compatible Libraries. I tried to check if the Visual Studio version 17.14.13 Emulator supports a 16KB environment with the Command. adb shell getconf PAGE_SIZE It shows 4096, which…
Developer technologies | .NET | .NET MAUI
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
Javascript issue
Hi, Any Javascript example to show the similar button (like the following), when the mouse is on the top of the text?
Developer technologies | ASP.NET | Other
How to build an online bill calculation tool with ASP.NET Core + JavaScript?
Hi everyone, I am trying to build a small online electricity bill calculator where users can enter their consumed units and instantly see the calculated bill based on the latest tariff slabs. My requirements are: Input field for number of…
Developer technologies | ASP.NET | ASP.NET Core
Crashing while opening the webview in maui - Net 9
Recently we had migrated our application from the .net 8 to the .net 9. we are having the web view in our application. in the .Net 8 the webview is working fine. where comes to the .net 9 the application is crashing while opening that page with the…
Developer technologies | .NET | .NET MAUI
Error with Microsoft .Net Framework prohibits me from shutting off laptop.
Hello, Since purchasing and using this Lenovo Yoga laptop I have for the past two years been experiencing this error when I try to shut down the PC after having used it for about an hour or more. Does anyone have any experienced this before and knows a…
Developer technologies | .NET | F#
Facing Problem In VS Code
Dear Team , I am not able to install python libraries like pandas , numpy and getting this error .. PS C:\Users\z0032wvy\Desktop\GOA_ISO> pip install pandas WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after…
Developer technologies | Visual Studio | Debugging
How to Prevent Alarms from Being Skipped with AlarmManager setExactAndAllowWhileIdle Method?
Hello. I'm developing an Android app with Net MAUI. This app announces the time every hour with a ticking timer. I use the AlarmManager.setExactAndAllowWhileIdle method. While it works without any shift at the hour on Samsung devices, on some devices,…