unable to import data into SSMS
HI Team, Am unable to import data into SSMS from network location. ERROR: TITLE: SQL Server Import and Export Wizard The operation could not be completed. ADDITIONAL INFORMATION: The 'Microsoft.ACE.OLEDB.16.0' provider is not registered on the local…
Developer technologies | Transact-SQL

How do I get Microsoft Code to come up in my right click menu?
When I right button click on a folder in Windows Explorer, the option to launch that new and empty folder in Microsoft Visual Studio Code is not available to me as it appears in a youtube tutorial like so. How do I get it there as a menu option If I…
Developer technologies | Visual Studio | Setup

Sending emails from dotnet8 web application
Hi, I have a dotnet8 web application which I am using to send emails from ******@mydomain.com (which is a google workspace account) via a smtp request using the following configuration: Domain = smtp.gmail.com Port = 465 A generated App Password…
Developer technologies | ASP.NET | ASP.NET Core
How do you add a ELF symbol file using symstore.exe ?
According to the dotnet-sos and dotnet-symbols we see that modern symstore fetches support downloading ELF symbols files (ex: libcoreclr.so). The microsoft github repository for theses tools also show that support for elf file was added. This suggests…
Developer technologies | C++
Visual studio extension in code editor to have menu and submenu.
I want to develop an extension for VS. When I select some code in the cs file or any file there should be some option in code editor like Mymenu and submenu Please guide. how to achieve it. I have one comand class which actually shows Mymenu when I…
Developer technologies | Visual Studio | Extensions
Deployment error DEP1700
I am receiving this error when I try and debug my UWP app. DEP1700: The recipe file "C:\Users\xxxxxxxx\bin\Debug\net6.0-windows10.0.19041.0\xxxxxx.build.appxrecipe" does not exist. You may need to build your project. This is a MAUI…
Developer technologies | .NET | .NET MAUI
How do I recover from .net maui error NU1105 ... The property PackageVersion was expected to have a single value across all target frameworks, but instead...
This happened after I upgraded Microsoft.Maui.Controls from 9.0.70 to 9.0.81 using the NuGet Package Manager. Full error message: NU1105 Unable to read project information for '<MyProject>': The property PackageVersion was expected to have a single…
Developer technologies | .NET | .NET MAUI
Excel VBA: Can my VBA code determine whether Solver is running?
Is there a way to test whether Solver is running? I have a section of VBA code that must be skipped if Solver is running. I'm using MS Office LTSC Professional Plus 2024 (Windows).
Developer technologies | VB
Why is OnInitializedAsync() called twice on a page reload
Hi all; Normally when a page is being created & rendered in Blazor version 8, RenderMode.InteractiveServer, OnInitializedAsync() is called once. But when I do a Reload on Chrome, it is called twice. And all child components in the page are called…
Developer technologies | .NET | Blazor


What does the error message mean: DataTable internal index is corrupted: '5' ?
What does the error message mean: DataTable internal index is corrupted: '5' ?
Developer technologies | C#

DX11 GPU memory leak on OpenSharedResource
I'm trying to figure why i'm getting GPU memory leak on this code. I checked using System Informer, at "Gpu Dedicated bytes" the memory usage increases on each loop iteration. I thought it was a missing call to CloseHandle(hDxSurface);, but…
Developer technologies | C++
Connectivity of VS code with DevOps - Updating PAT but still giving 403 error
Hi, Previously connectivity between DevOps and VS code was working perfectly fine. My user password got changed. Then I'd removed the old entry of git on credential manager and added new entry with new PAT with valid expiry and also have code(read&…
Developer technologies | Visual Studio | Other
Installation of C++ Runtime 2015-2022 ignores /noreboot option. How can the reboot be prevented?
From a vendor we have to install a C++ Runtime 2015-2022 (14.42.34338) and we try to deploy it on the PC's with installation option: vcredist_x86.exe /quiet /noreboot On most PC's a reboot is forced. How can the automatic reboot be prevented? Windows…
Developer technologies | C++
Usage of TLS 1.3 protocol using SCHANNEL in C++ language for TCP/IP
We are trying to build one sample application using only TLS 1.3(No fallback to older TLS versions) protocol with below registries added, [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.3\Client]…
Developer technologies | C++
How to make Pipeline wait if there are no agents Running in Agent Pool
I am Running self hosted agents in AWS ECS Farget with event driven architecture but when I try to setup I have an issue with **No agent found in pool ecs-test which satisfies the specified demands: Agent.Version -gtVersion 2.144.0 ** Can you help me…
Developer technologies | Visual Studio | Setup

Visual Studio: How to detect any changes on project properties and trigger event from extension when user clicks apply
I'm trying to write VS extension (VS Professional 2022 with Version 17.2.6) for VC++ projects, I want to detect any changes on project properties (Additional include directories, additional using directories etc.) when user changes and clicks apply on…
Developer technologies | Visual Studio | Testing

How can I launch Swagger on the server?
Hello, I use Visual Studio Community 2022 (64 bit) Version 17.5.3. I check the C# application by Visual Studio. If I run debug(Press F5 key), Swagger launches(https://localhost:7173/swagger/index.html). The application works on the server(Amazon EC2…
Developer technologies | ASP.NET | ASP.NET Core
Developer technologies | Visual Studio | Other
Developer technologies | C#
Microsoft Graph API – OnlineMeeting: Organizer cannot be added as attendee
Hello, I’m using the Microsoft Graph API (v1.0) in C# to create Teams meetings using the onlineMeeting resource. I need a scenario where the organizer of the meeting is also explicitly listed in the attendees collection. However, when I include the…
Developer technologies | C#
How to sign ClickOnce artifacts when using Google Cloud KMS for code signing?
I've successfully done code signing using Google Cloud KMS and jsign for executable files, but I'm unable to sign ClickOnce manifest files. Current Setup Certificate: Code signing certificate from Sectigo (in .crt format) Private Key: Stored in Google…
Developer technologies | Windows Forms
how cancel token work in these cases
following code is from https://learn.microsoft.com/en-us/dotnet/csharp/asynchronous-programming/cancel-an-async-task-or-a-list-of-tasks i could not understand when it will show following two messages from last main code. Console.WriteLine("Download…