Is VS Enterprise 18.3.2 update a problematic ?
Hi, Yesterday I had successfully build and published MAUI Blazor Hybrid App successfully with VS.NET 2026 Version 18.3.1. Today I found new update 18.3.2 and thought to update VS before starting the day. But as soon as i trying to compile the app I…
Developer technologies | Visual Studio | Debugging
I cannot open my Visual Studio Installer
Dear programers, I see this when i open it .Actually i think that is because i deleted the Programdata fews ago. Now i find that the VS cannot be used .So i finally uninstalled it by InstallCleanup.exe .Now every time I open the Installer I will see the…
Developer technologies | Visual Studio | Setup
How to only allow one specified person to use Visual Studio on a shared computer
I am the only licenced person to Visual Studio. I want to install it on a shared VM (virtual machine), since our personal laptops are locked down using WDAC and the only way to get it to work is to disable WDAC for my laptop (which is not great for…
Developer technologies | Visual Studio | Setup
WinForms Form icon changes to EXE icon when positioned beside taskbar overflow (Windows 11)
In a VB.NET WinForms application (.NET Framework 4.0) running on Windows 11, a specific icon switching behavior occurs when the taskbar becomes crowded. Here is my code snippet: Public Class Form1 Private Sub Form1_Load(sender As Object, e As…
Developer technologies | Visual Basic for Applications
How to use Tuple?
Hi, I'm using .Net 10. I would like to know what is the best practice of using Tuple? As far as I know, Tuple was changed during C# versions, can you please summarize the changes? Can you give sniped code how to use it , what are the options I have…
Developer technologies | C#
add-migration throws error File web.dll not found. The startup project is where DbContext is. Web is the asp.net core project
Greetings, Ladies and Guys! So finally I found a tutorial of Razor Pages C#, with jQuery AJAX. The solution has 3 projects: Web (asp.net core razor pages app, here goes the config, such as connection string and some services), Core (Model and…
Developer technologies | C#
Integrate Apple pay and google pay on .NET MAUI
Hello, I want to integrate Apple Pay and Google Pay into a .NET MAUI 10 project. If you have any documentation or references, I would really appreciate it. It would be very helpful for me to understand how to integrate this into our project.
Developer technologies | .NET | .NET MAUI
Eski Sürüm Excel ve Word Uygulamalarına İhtiyacım Var
Merhaba, 2017 model macbook air bilgisayarım var ve bilgisayarda monterey 12.7.6 sürümü yüklü, yükleyebileceğim maksimum sürüm bu. Bu bilgisayar fabrika ayarlarına döndürüldü için microsoft office 365 i indiremiyorum, benim bilgisayarımın sürümü…
Developer technologies | C++
Problem with WebView keyboard overlap in .NET MAUI Android
I’m developing a chat application using .NET MAUI. On Android I load the chat UI inside a WebView. The chat works fine in a normal mobile browser (Chrome): when the user taps the message input, the keyboard appears and the input moves up correctly so it…
Developer technologies | .NET | .NET MAUI
Debug with Chat Visual Studio 2026
Hi, I see that in version of Visual Studio 2026, there is Debug with Chat. Where I can use it in all projects types? Only on C# languages? In unit tests it works? Can you give how does it works behind the scene to understand how to work with it? What…
Developer technologies | C#
scheduler tasks with security options “Run whether user is logged on or not”.
We use the package <package id="TaskScheduler" version="2.12.2" targetFramework="net48" /> This is the code with three actions and its behavior: || | -------- | Task || | -------- | GUI || | -------- | Manually run…
Developer technologies | C#
Newly registered personal Outlook email accounts cannot pass SMTP authentication when using MailKit
Hello, I recently created a new personal Outlook mailbox in 2026. The following method fails to authenticate, whereas previously created mailboxes work fine with the same approach: using (var client = new…
Developer technologies | C#
Async Await in C#
Hi, I'm using .NET 10 with VS 2026. Can you please cover the history of this topic , Async Await in C#, along the C# versions? Where can I used this topic ? What is the best practice for this topic? Thanks,
Developer technologies | C#
Switch Statement in C#
Hi, I'm using .NET 10 , VS 2026. The Switch Statement have changed over the C# versions. Can you please summarize how switch statement change over the C# versions ? Why switch statement input is only string ? How to use switch statement in .NET10 as…
Developer technologies | C#
Func<T> VS Action<T>
Hi , I'm using .NET 10 and Visual Studio 2026. Can you please tell me how to use both Func<T> and Action<T> ? When to use each one ? I see it very common used to pass it as a parameters to function. Can yo please demonstrate this usage and…
Developer technologies | C#
Deconstruct in C#
Hi, I'm using .NET 10 with Visual Studio 2026. Can you please explain this topic , how it used in many parts of C# languages? Thanks in advance, For example: public readonly struct Point { public int X { get; } public int Y { get; } public…
Developer technologies | C#
Record VS Class in C#
Hi, I'm using .NET 10 with Visual Studio 2026. Before you explain the difference between: Record VS Class in C#. Can you please why we need Record ? What is the syntax and use cases for it ? Thanks in advance,
Developer technologies | C#
black screen
I have problem with black screen can't run visual code studio
Developer technologies | Visual Studio | Extensions
[.NET MAUI] RenderTargetBitmap does not capture Label BackgroundColor on Windows
Hi Team, I am facing an issue on Windows where RenderTargetBitmap does not capture the BackgroundColor of a .NET MAUI Label. The text appears correctly, but the background is missing in the output image. Reproduction steps Create a .NET MAUI project…
Developer technologies | .NET | .NET MAUI
How do I get a property which is an object, converted to a bool?
I've got a C# class in a Minimal API, which gets returned. The class looks like this: public class APIResponse { public APIResponse() { ErrorMessages = new List<string>(); Result = new object(); …