54,048 questions with Developer technologies-related tags

Sort by: Updated
1 answer One of the answers was accepted by the question author.

Android-specific code on MAUI: Trouble with Android.Resource

What I am trying to achieve right now is something I've done before in other prototypes where I work, but I haven't run into this problem so far. I will give as much context as possible without making this question too long. Our app will use ARCore on…

Developer technologies | .NET | .NET MAUI
asked Mar 11, 2025, 5:26 PM
Kleber Ferreira 20 Reputation points
commented Mar 13, 2025, 2:44 AM
Anonymous
2 answers

Visual Studio 2019 kernel mode driver projects stopped generating .sys files.

Visual Studio 2019 kernel mode driver projects stopped generating .sys files. On a project folder previously built with VS2019 I delete the x86 and x64 output folders and build again. Obj files are built but the only linker output file present is…

Developer technologies | Visual Studio | Other
asked Jan 25, 2021, 9:13 PM
Jack Melville 1 Reputation point
answered Mar 13, 2025, 2:02 AM
Dipsan Dhimal 0 Reputation points
1 answer

'The instance of entity type 'Book' cannot be tracked' Error in Entity Framework and Displaying Uncommitted Changes in the UI

Hello, I encountered the following issue while working on my C# WPF project: I make updates to an entity on the UI side but do not send these changes to the database. Later, when listing the entity objects I updated on the UI side, I noticed that…

Developer technologies | C#
asked Mar 9, 2025, 11:06 AM
fatih uyanık 225 Reputation points
commented Mar 13, 2025, 1:04 AM
Anonymous
1 answer One of the answers was accepted by the question author.

Win32_BIOS version

Hello I'm using this code to get the BIOS version: Dim Search2 As New ManagementObjectSearcher(New SelectQuery("Win32_BIOS")) For Each Info2 As ManagementObject In Search2.Get If Info2("SMBIOSBIOSVersion") IsNot Nothing…

Developer technologies | VB
asked Mar 12, 2025, 1:13 PM
StewartBW 1,870 Reputation points
accepted Mar 12, 2025, 11:50 PM
StewartBW 1,870 Reputation points
1 answer

Microsoft dotnet ef migration error

When I run any dotnet ef command, like "dotnet ef migrations add InitialCreate", i get the following error message: Could not execute because the specified command or file was not found. Possible reasons for this include: * You misspelled a…

Developer technologies | .NET | Other
asked Nov 17, 2022, 4:11 PM
Kefiloe Moshoaliba 6 Reputation points
commented Mar 12, 2025, 11:42 PM
Pon ArunKumar Ramalingam 0 Reputation points
1 answer One of the answers was accepted by the question author.

flipping card update

I create a live tile using System.Diagnostics; namespace LiveTileControl.Controls; public partial class LiveTileControl : ContentView { private bool _isFlipping; public LiveTileControl() { InitializeComponent(); …

Developer technologies | .NET | .NET MAUI
asked Mar 5, 2025, 11:41 PM
Eduardo Gomez Romero 1,355 Reputation points
accepted Mar 12, 2025, 11:04 PM
Eduardo Gomez Romero 1,355 Reputation points
1 answer One of the answers was accepted by the question author.

Visual Studio 2019 sometimes won't compile/link in new changes, resulting in inactive breakpoints?

I'm using Visual Studio 2019 Professional (version 16.7.7+30621.155), and when I'm compiling a big C++ DLL project (incl. our own static libs) the compiler and/or linker sometimes refuses to take in minor updates to the code. Scenario: I stop a…

Developer technologies | Visual Studio | Other
asked Nov 11, 2020, 3:36 PM
Carl Colijn 96 Reputation points
commented Mar 12, 2025, 7:51 PM
Evan Vargas 0 Reputation points
1 answer

As I am microsoft partner,how can I benfet from microsoft partner as financial?

As I am microsoft partner,how can I benfet from microsoft partner as financial?

Developer technologies | ASP.NET | ASP.NET API
asked Mar 12, 2025, 7:41 PM
QASIM ALOUDAT 0 Reputation points
answered Mar 12, 2025, 7:43 PM
QASIM ALOUDAT 0 Reputation points
2 answers

How to get VB 6.0

How and where do I get Visual Basic 6.0? Is it free or do I need to buy it? Can you give me a download link or a file?

Developer technologies | VB
asked Mar 4, 2025, 6:30 PM
Максим Россиев 0 Reputation points
answered Mar 12, 2025, 7:04 PM
Bruce (SqlWork.com) 78,581 Reputation points Volunteer Moderator
1 answer One of the answers was accepted by the question author.

Flyout Navigation - Mouse hover

Hi, In continue to https://learn.microsoft.com/en-us/answers/questions/2202802/flyout-navigation-improvements?page=1#answer-1989782 How I support mouse hover when navigation on collection view ? I want Custom Cursor hand when hovering over an item in…

Developer technologies | .NET | .NET MAUI
asked Mar 10, 2025, 9:39 AM
Dani_S 4,521 Reputation points
commented Mar 12, 2025, 6:34 PM
Dani_S 4,521 Reputation points
1 answer

Linq Cosmos DB ArgumentNullException Exception

I am using LinQ on the client side to query Cosmos DB. All the other properties work fine except two properties. One is the "id" and the other is the "RowKey". I manually checked the database, the type of RowKeys are all string, they…

Azure Cosmos DB
Azure Cosmos DB
An Azure NoSQL database service for app development.
1,927 questions
Developer technologies | C#
asked Jan 29, 2025, 7:13 PM
Yi Gu 0 Reputation points Microsoft Employee
commented Mar 12, 2025, 6:18 PM
Yi Gu 0 Reputation points Microsoft Employee
2 answers One of the answers was accepted by the question author.

CString -- ATL::CStringT<char, StrTraitMFCDLL format problem

Hello, I got this warning. https://learn.microsoft.com/en-us/cpp/code-quality/c6284?view=msvc-160 CString Logging::AddEntry(CString strEntry) { SYSTEMTIME stTimestamp; CString strNewEntry = _T(""); CString strTempEntry =…

Developer technologies | C++
asked Mar 11, 2025, 2:38 PM
Noah Aas 985 Reputation points
edited a comment Mar 12, 2025, 4:53 PM
RLWA32 50,051 Reputation points
2 answers

Requirements to register and authenticate a .NET desktop app in M365

Hi, all. I have a .NET desktop application (C# + WPF) which is to be registered in Microsoft Store and made available via subscription. Part of the process is clear, such as having authentication via MSAL (which I understand as having the user…

Microsoft 365 and Office | Install, redeem, activate | For business | Windows
Microsoft Security | Microsoft Entra | Microsoft Entra ID
Developer technologies | .NET | Other
asked Jan 13, 2025, 5:49 PM
Saulo Silva 0 Reputation points
accepted Mar 12, 2025, 3:29 PM
Saulo Silva 0 Reputation points
2 answers

BulkInsert for Entity Framework Core

Entity Framework core now has ExecuteUpdate and ExecuteDelete for doing large updates and deletes But when is EF core going to get the much need BulkInsert that does the job of SQL SERVER's BCP There are third party tools, but they are very expense…

Developer technologies | .NET | Entity Framework Core
asked Jul 3, 2024, 11:37 PM
Greg Frazer 0 Reputation points
answered Mar 12, 2025, 3:28 PM
Jonathan Magnan 0 Reputation points
1 answer One of the answers was accepted by the question author.

Microsoft Visual Studio Professional 2022 (64-bit) - Preview Version 17.14.0 Preview 2.0 will no longer compile my MAUI app

This afternoon I upgraded Visual Studio to preview 2. After doing so, my MAUI app is broken. Error (active) NU1102 Unable to find package Microsoft.Android.Ref.34 with version (= 34.0.148) Found 23 version(s) in nuget.org [ Nearest version:…

Developer technologies | Visual Studio | Setup
asked Mar 12, 2025, 12:57 AM
Steve Frase 65 Reputation points
commented Mar 12, 2025, 3:21 PM
Steve Frase 65 Reputation points
2 answers One of the answers was accepted by the question author.

Can we able to modify the design of toggle switch in maui ?

Need to increase the Black dot size

Developer technologies | .NET | .NET MAUI
asked May 4, 2023, 4:52 AM
Sowndarrajan Vijayaragavan 470 Reputation points
answered Mar 12, 2025, 3:11 PM
Soumyadip Majumder 120 Reputation points
1 answer

Issue Populating CollectionView with ObservableCollection in .NET MAUI

Hi, I am facing an issue in my .NET MAUI application where I am trying to populate a CollectionView using an ObservableCollection<LeaveSummary> in my ViewModel. The data is correctly fetched, and I can see the ObservableCollection.Count in a Label,…

Developer technologies | .NET | .NET MAUI
asked Mar 6, 2025, 6:02 PM
Arnab Mukherjee 85 Reputation points
commented Mar 12, 2025, 2:25 PM
Arnab Mukherjee 85 Reputation points
1 answer

How do I update the Visual Studio 2022 installer on an offline computer? Note that it refers to "setup.exe", not the VS main program

I had a problem removing an extension.click Modify Prompt: Failed to download installer update. Make sure you are connected to the network and try again.The installer version is 3.10.2157.28521 , The software version is is Visual Studio Community 2022…

Developer technologies | Visual Studio | Setup
asked Mar 7, 2025, 6:00 AM
正寅 吴 0 Reputation points
commented Mar 12, 2025, 1:43 PM
Tianyu Sun-MSFT 34,481 Reputation points Microsoft External Staff
1 answer One of the answers was accepted by the question author.

WMI Availability is always nothing/null?

Hello I'm using this code to get the Availability of system disks, but Availability is always nothing/null: Searcher As New ManagementObjectSearcher(New SelectQuery("Win32_DiskDrive")) For Each MyDisk As ManagementObject In…

Developer technologies | VB
asked Mar 11, 2025, 7:10 PM
StewartBW 1,870 Reputation points
accepted Mar 12, 2025, 12:56 PM
StewartBW 1,870 Reputation points
1 answer

How do I fix my Touchpad

My touchpad was not working. Yes the button on the keyboard did not have anything to do with the issue. So i listened to people and uninstalled my touchpad driver, but after I restrarted my computer windows did not reinstall the driver like it said it…

Developer technologies | .NET | F#
asked Feb 12, 2025, 8:14 PM
Mazie Kasprzak 0 Reputation points
answered Mar 12, 2025, 11:14 AM
Khai 0 Reputation points