MAUI CollectionView selected item error
Hello. I starts to learn MAUI Enterprise apps patterns and I found en error (or unexpected behavior) in CollectionView. In my example, I have TrainingsViewModel whitch have ObservableCollection of TrainingViewModel property named as AllTrainings. This…
Developer technologies | .NET | .NET MAUI
how to resolve The Android SDK licenses acceptance failed. These must be accepted to continue using Android. For more details, check the Xamarin Output. Double-click on this message to try this again.
Good morning, everyone. I'm trying to create a mobile application using .NET MAUI with .NET 9. When I attempt to debug the application by selecting Android Emulators, it asks me to accept the android-sdk-license. I click "Accept," and after…
Developer technologies | .NET | .NET MAUI
Can I decrypt a file encrypted using the MIP (.NET) File SDK with the MIP (C++) Protection SDK?
I am working on a project that has both iOS and web versions. In the web app, I successfully implemented encryption using the .NET MIP File SDK. However, in the iOS app, I need to decrypt the same encrypted file using the C++ MIP Protection SDK. I…
Developer technologies | .NET | Other

Quering the SQL Server return SQL_NEED_DATA
Hi, ALL, Here is what I have: I made the following query: query2 = L"INSERT INTO abcattbl SELECT ?, 'abcatcol', (SELECT object_id FROM sys.objects o, sys.schemas s WHERE s.schema_id = o.schema_id AND o.name = 'abcatcol' AND s.name = 'dbo'), …
Developer technologies | C++
SQL Server | Other
Azure Isolated Function .NET 8: All HttpClient requests result in timeout error (works locally, not in Azure)
I have a .NET 8 Azure Function using the Isolated model, which has a function that makes an external REST API call via HttpClient. The API call was previously working on the in-process model .NET 6 version without issue. After migrating to the isolated…
Azure Functions
Developer technologies | .NET | Other
Unable to load assembly on Azure Sql that uses Azure.Identity
Hi Team, We need to access the azure key vault from azure sql (managed instance) to retrieve the secret. We have developed an udf that will fetch the secret from azure key vault. Below is the code snippet: using Microsoft.SqlServer.Server; using…
Azure SQL Database
Developer technologies | .NET | Other

Avoid unnecessary updates on MERGE UPSERT
Hi there, You all might have used UPSERT operation using MERGE. Currently the update section updates all rows once the key is matched. Is there a way to update only rows which have column value changed and not update all rows to avoid unnecessary updates…
Azure SQL Database
Developer technologies | Transact-SQL
how to update version in apk maui application automatically?
Hi, i'm using .net maui 8 for Android , and i publish my application in a remote server and when i update my application automatically by comparing version in update.json file. I can't update version in my app. how to do that?
Developer technologies | .NET | .NET MAUI
Developer technologies | C#
Since Update to VS2022 17.12.3 I have many error C2471: cannot update program database
Hi, Since I've update all my build agents with Visual Studio 2022 to version 17.12.3 (instead of 17.11.4) I see a lot of my build to fail with the same error 149>C:\Program Files (x86)\Windows Kits\10\Include\10.0.22621.0\um\ObjectArray.h(338,1):…
Developer technologies | C++
Developer technologies | Visual Studio | Other

How to add contextMenu for toolWindow in vspackage
I want to add contextMenu in toolWindow ,but it's not mentioned in visual studio SDK.Can I add it in commandTable?
Developer technologies | Visual Studio | Extensions
Developer technologies | .NET | Other
Developer technologies | C#
firebase analytics integration issue in .net maui project for android
Xamarin.Firebase.Analytics - installed successfuly Xamarin.Firebase.iOS.Analytics - installed successfully i am trying to integrate firebase analytics in .net maui project but getting some unknown error on android. Added google-services.json to…
Developer technologies | .NET | .NET MAUI
I am migrating application from dot net 4.8 to dot net core 8. facing error Project ..\folder\folder.csproj targets net8.0. It cannot be referenced by a project that targets .NETFramework,Version=v4.8.
I am migrating application from dot net 4.8 to dot net core 8. facing error Project ..\folder\folder.csproj targets net8.0. It cannot be referenced by a project that targets .NETFramework,Version=v4.8. Project ..\folder1\folder1.csproj targets…
Developer technologies | ASP.NET | ASP.NET Core
Developer technologies | .NET | .NET Runtime
Developer technologies | ASP.NET | ASP.NET API
Developer technologies | .NET | Other
Developer technologies | ASP.NET | Other

Error in log - Ariel.ttf/otf
Hi, I got this error in log all times, why ? Thanks,
Developer technologies | .NET | .NET MAUI
Validate file content type for txt, log, JSON file in C#
public static bool IsFileValid(IFormFile file) { using (var reader = new BinaryReader(file.OpenReadStream())) { var signatures = _fileSignatures.Values.SelectMany(x => x).ToList(); // flatten all signatures to single list var headerBytes =…
Developer technologies | ASP.NET | ASP.NET Core
Microsoft 365 and Office | Development | Office JavaScript API

Developer technologies | .NET | Other
Developer technologies | ASP.NET | Other
Developer technologies | C#

How install Visual Basic 6 on OS Windows 11 ?
Hello, I search the installation sources of Visual Basic 6 and install it on Windows 11. Could you inform me where I can download the installation sources and how configure to a Windows 11 ? Best regards Eric
Developer technologies | Visual Studio | Other
Getting recording to work with multiple USB cameras using C# .NET on Raspberry Pi 5
Hello, I have a question opened on the Raspberry Pi forum but I don't see much activity there, especially regarding .NET IoT on ARM. I follow this article https://neilsnotes.net/Software/Coding/dotnetPiCam.html and I simply don't understand why the…
Developer technologies | .NET | .NET Internet of things


Blazor hangs when debugging with authentication
Am I the only one who experience that 9 of 10 times Blazor hangs with this message when I use authentication, and after I have logged in? Any hints on how to get past this issue?
Developer technologies | .NET | Blazor
Developer technologies | Visual Studio | Debugging
Developer technologies | .NET | Other
Developer technologies | C#
I am getting a "Requests from this IP are not allowed" when trying to signin/signup to Entra ID for external providers
I am trying to follow the tutorial in the link https://learn.microsoft.com/en-us/entra/external-id/customers/tutorial-mobile-app-maui-sign-in-sign-out ... I have created the UserFlows ., but when running the app , I get a "Requests from this IP are…
Developer technologies | .NET | .NET MAUI
Microsoft Security | Microsoft Entra | Microsoft Entra ID
How to load dropdown values inside gridview or Listview using DataTable
i'm using dropdown values inside modal popup. whenever i am selecting some values in dropdown, i want to assign those values in datatable. Finally, i want to assign datatable values into either gridview or Listview. Is it possible to load values in…