Add-on components that enhance and customize the Visual Studio integrated development environment
How to get absolute trusted path to dotnet.exe that is installed with Visual Studio installation?
I have a requirement of launching dotnet.exe with absolute path from a Visual Studio extension. Absolute path is required to avoid CWE-427 risk. In my machine dotnet.exe is at 'C:\Program Files\dotnet\dotnet.exe' but this location is not always…
Developer technologies | Visual Studio | Extensions
Unable to open a windows form in visual studio community 2026/ visual basic
Could not find a part of the path…
Developer technologies | Windows Forms
A set of .NET Framework managed libraries for developing graphical user interfaces.
What Is the Actual Maximum Argument Length for Process.Start?
Description I am trying to determine the actual argument length limits when using Process.Start and ProcessStartInfo in .NET. I found the following references: Microsoft documentation for ProcessStartInfo.Arguments Property :…
Developer technologies | .NET | .NET Runtime
.NET: Microsoft Technologies based on the .NET software framework. Runtime: An environment required to run apps that aren't compiled to machine language.
How to remove the space on the left side of the editor in Visual Studio
How to remove the space on the left side of the editor in Visual Studio? How to remove the space on the left side of the editor in Visual Studio? How to remove the space on the left side of the editor in Visual Studio?
Developer technologies | Visual Studio | Setup
The process of installing, configuring, and customizing Visual Studio to support development workflows across languages, platforms, and workloads.
Client Side validation on dynamically added Telephone objects to bootstrap modal form. Razor Pages
Hello, Lately I was receiving valuable help by @Anonymous and @Anonymous . I'm working over their provided code mostly. What I need now is to validate the new added Telephone objects (Description and PhoneNumber). The Contact fields are already…
Developer technologies | ASP.NET Core | Other
A set of technologies in .NET for building web applications and web services. Miscellaneous topics that do not fit into specific categories.
Issue with transitive package from Plugin.Firebase - Xamarin.GoogleAndroid.Annotations
I am facing below errors when rebuild the project after the .net 10 upgrade from .net 8: The Java type android.annotation.TargetApi is generated by more than one managed type. Please change the [Register] attribute so that the same Java type is not…
Developer technologies | .NET | .NET Multi-platform App UI
A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
ML.NET model accuracy drops after deployment to production
I built a classification model with ML.NET in a .NET 8 application. The model performed well during local testing with about 92% accuracy, but after deploying it to production, the predictions became unreliable and the overall accuracy dropped…
Developer technologies | .NET | .NET Machine Learning
.NET: Microsoft Technologies based on the .NET software framework. Machine learning: A type of artificial intelligence focused on enabling computers to use observed data to evolve new behaviors that have not been explicitly programmed.
marcros in excel has been blocked please help
Dear Team, I cannot disable my marcros in excel has been blocked and i can't disable this and unblock option is also not showing therefore i can't use my vba excel project please help for disable my macro setting so that i can use my vba in excel
Developer technologies | Visual Basic for Applications
An implementation of Visual Basic that is built into Microsoft products.
ActivX component can't create object
Developer technologies | VB
An object-oriented programming language developed by Microsoft that can be used in .NET.
Jarsigner: unable to sign jar: java.util.zip.zipexception: attempt to write past end of STORED entry. Signing package failed.
I am getting below error when distribute my .aab file. Jarsigner: unable to sign jar: java.util.zip.zipexception: attempt to write past end of STORED entry. Signing package failed. I am working on an MAUI project and now I upgraded the target .net…
Developer technologies | .NET | .NET Multi-platform App UI
A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
New outlook (2024) drag drop problem
Hello, I have an application where a user drops a mail (from outlook 365) and I make a copy of the mail) for archive purpose. All is working perfectly but I have seen a message telling me that there will be a new outlook in 2024 (that I can try) and it…
Microsoft 365 and Office | Development | Other
Building custom solutions that extend, automate, and integrate Microsoft 365 apps.
Outlook | Windows | Classic Outlook for Windows | For business
Using classic Outlook for Windows in business environments
Developer technologies | C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
Incorrect DPI Scaling in WinForms Custom Control with PerMonitorV2 on Multi-Monitor Setup
When using a custom WinForms control in a dual‑monitor setup with PerMonitorV2 DPI awareness, the application does not scale correctly based on the monitor where it is launched. I tested the application in a configuration where primary and secondary…
Developer technologies | Windows Forms
A set of .NET Framework managed libraries for developing graphical user interfaces.
How to update Sharepoint list item hyperlink column
I'm trying to update hyperlink column with the following request PATCH https://graph.microsoft.com/v1.0/sites/{site-id}/lists/{list-id}/items/{item-id}/fields Content-Type application/json Request body: { "OriginalImageLink": { …
Microsoft 365 and Office | SharePoint | Development
The process of building custom applications and tools that interact with Microsoft SharePoint, including SharePoint Online in Microsoft 365.
Microsoft Security | Microsoft Graph
An API that connects multiple Microsoft services, enabling data access and automation across platforms
Developer technologies | C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
how to download c++ 2019
how to download c++ 2019 in this page;how to download c++ 2019 in this page;how to download c++ 2019 in this page
Developer technologies | C++
A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.
When you adjust the fontsize on ios it squashes the labels together and makes the containing text bigger than the collectionview
Hi there This is a MAUI problem: We have just seen a problem on iPhone 16 Pro Max, we adjusted the fontsize to be more than the standard and it caused the label text to get bigger, as expected. But now the Labels bleed into each other and they are…
Developer technologies | .NET | .NET Multi-platform App UI
A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
please fix the issue
this error was showing
Developer technologies | Visual Basic for Applications
An implementation of Visual Basic that is built into Microsoft products.
how to use GifBitmapEncoder in winform?
I want to create gif by bitmaps and it seems that I can not use the gifBitmapEncoder
Developer technologies | Windows Forms
A set of .NET Framework managed libraries for developing graphical user interfaces.
I cannot get VBA in Excel to make the Userform Calculator i created to perform operations on numbers with decimals right
Private Sub cmbdecimal_Click() If InStr(txtDisplay.Text, ".") = 0 Then txtDisplay.Text = txtDisplay.Text + "." End If End Sub ^This is the code i used on the command button for "." I can type a decimal, but the answer the…
Developer technologies | Visual Basic for Applications
An implementation of Visual Basic that is built into Microsoft products.
How to enable Control Flow Guard (CFG) in C# UWP Application
How to enable Control Flow Guard (CFG) in C# UWP Application? I have tried to enable <ControlFlowGuard>Guard</ControlFlowGuard> <UseDotNetNativeToolChain>true</UseDotNetNativeToolChain> in Release | x64 . But it is still not…
Developer technologies | Universal Windows Platform (UWP)
A Microsoft platform for building and publishing apps for Windows devices.
How can I create a Datagrid with a nested Datagrid with multiple row in WPF and C#?
I have 2 classes, the first one is Wire class and the second is Subwire Class. A Wire can have 1 to many Subwires so the nested datagrid of Subwire can have multiple rows for 1 Wire Row. The datagrid shouyld show the Wire and when we click on an expander…
Developer technologies | C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.