A part of the .NET Framework that provides a unified programming model for building line-of-business desktop applications on Windows.
XAML Path Is Not Recognized
I am working with a Transactions class: Public Class Transactions .... Public Property CurrentTransaction As Transaction Public Property Details as DataTable End Class The Details table has a "CategoryID" column. In the wpf for a…
Developer technologies | Windows Presentation Foundation
WPF Datagrid (C# .NET 10)
Hello. How fix this? <UserControl.Resources> <CollectionViewSource x:Key="CollectionViewBusinesDataGrid" Source="{Binding BusinesDataGridItemsSource, IsAsync=True}"> …
Developer technologies | Windows Presentation Foundation
A part of the .NET Framework that provides a unified programming model for building line-of-business desktop applications on Windows.
What are the most effective strategies to convert Figma/UI wireframes into clean, responsive HTML/CSS or React components?
I am building a web application using React and Tailwind CSS (or standard CSS). I have created UI wireframes and high-fidelity mockups in Figma (including landing pages, dashboards, and form components). Now, I am converting these visual designs into…
Developer technologies | Visual Studio | Other
A family of Microsoft suites of integrated development tools for building applications for Windows, the web, mobile devices and many other platforms. Miscellaneous topics that do not fit into specific categories.
Securing .Net 10 WebApi to be called by Windows Application
Hello everyone and thanks for the help in advance. I am developing a .Net 10 WebApi that will be called by a Windows application. When searching for solutions I am confused if the calling application changes how the api is secured. Any help would be…
Developer technologies | .NET | Other
Microsoft Technologies based on the .NET software framework. Miscellaneous topics that do not fit into specific categories.
Visual studio 2026 iOS Simulator do not showing
I have an application based on MAUI, it has application for android and ios. I'm trying to run the iOS Simulator from Visual Studio 2026, but it does not works. I have the configuration The MAC is well connected The output looks like something…
Developer technologies | .NET | .NET Multi-platform App UI
A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
how I get the CPU and memory usage during the program run?
how I get the CPU and memory usage during the program run?
Developer technologies | Visual Studio | Debugging
A core feature of Visual Studio that allows developers to inspect, analyze, and troubleshoot code during execution.
Update Visual Studio 2026 stuck at 99% for 5 hours
I was running VS26 Community and got a popup that said it would install an update to 18.8.0, so I said postpone. I decided to do it and went to help and check for updates. I clicked on update now and it started. About 1 hour later it was at 99% and said…
Developer technologies | Visual Studio | Other
A family of Microsoft suites of integrated development tools for building applications for Windows, the web, mobile devices and many other platforms. Miscellaneous topics that do not fit into specific categories.
Multiple Graph Output
//OpenGL functions, open a window and initialize void display(void) { glClearColor(1.0f, 1.0f, 1.0f, 1.0f); glClear(GL_COLOR_BUFFER_BIT); glLoadIdentity(); //issue the GL commands glTranslatef(-.3, 0., 0.); glRotated(45.,0., 1.,0.); glScalef(.5,…
Developer technologies | Visual Studio | Other
A family of Microsoft suites of integrated development tools for building applications for Windows, the web, mobile devices and many other platforms. Miscellaneous topics that do not fit into specific categories.
WinForms DataGridView: Prevent Enter from moving to the next row and move focus to another column in the same row
I'm using a WinForms DataGridView for entering sales invoice items. Suppose my grid looks like this: RowQtyNet Rate15...------------------------15...26...3*(new empty row)*If I edit Row 2 and change the quantity from 6 to 12, then press Enter, the…
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.
Need to figure out how to create drop down list in Powerpoint using developer option
I've watched the few videos and read articles I can find on this topic but still cannot figure out how to create a drop down list in powerpoint, using developer option. When I get to the point of entering my data in the code field: End…
Developer technologies | Visual Basic for Applications
An implementation of Visual Basic that is built into Microsoft products.
I used to have 3D buttons but not in 2026
I used to use 3D buttons. These had a kind of drop shaddow effect so they would visualy go up and down. What I have now is just a flat button. On a visual basic forum I was told to Right click on project and select properties In application general, I am…
Developer technologies | Windows Forms
A set of .NET Framework managed libraries for developing graphical user interfaces.
Refused to apply style from '' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.
ASP.NET Core + IIS: Browser receives Content-Type: text/javascript,text/html even though application returns text/javascript I'm facing a strange MIME type issue in an ASP.NET Core MVC application hosted on IIS (Windows Server). I've investigated the…
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.
Visual Studio Enterprise subscription renewal link url https://aka.ms/vssentrenew is not valid
After I click on a Visual Studio Enterprise subscription renewal link i get:
Developer technologies | Visual Studio | Setup
The process of installing, configuring, and customizing Visual Studio to support development workflows across languages, platforms, and workloads.
ASHWID API Fails to Retrieve BIOS UUID After 2-3 Minutes Post-Reboot
Our UWP app calls the Windows API ASHWID (Application Specific Hardware ID) to retrieve the device UUID for uniquely identifying the tablet. However, an anomaly occurs where this value cannot be fully or correctly retrieved under certain…
Developer technologies | Universal Windows Platform (UWP)
A Microsoft platform for building and publishing apps for Windows devices.
Reading Datafile in As Few Lines As Necessary
I know the DataReader method, but I thought there was a way using "ReadLine" or something like that.
Developer technologies | VB
An object-oriented programming language developed by Microsoft that can be used in .NET.
.NET SDK10 Roslyn Analyzer Diagnostics `IDE0130` likely buggy
Description IDE0130 makes sure declared C# namespace matches the corresponding folder structure. Issue IDE0130 seems to work as expected in most cases. However, when a partial implementation with a corresponding generated source is analyzed, the analyzer…
Developer technologies | .NET | Other
Microsoft Technologies based on the .NET software framework. Miscellaneous topics that do not fit into specific categories.
I would like to prevent the "Be careful! Your document may contain personal information that cannot be removed by the Document Inspector." dialog from being displayed when saving a document.
I am trying to create a program to remove property information from a Word document in order to ensure that no personal or client information is left behind. I am using C# code with Microsoft.Office.Interop.Word to initiate Word, and I execute…
Microsoft 365 and Office | Development | Other
Building custom solutions that extend, automate, and integrate Microsoft 365 apps.
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.
Can an existing VB.NET ASP.NET Web Forms application be migrated to .NET 10 while keeping VB.NET?
Hello Microsoft Support, We have a legacy enterprise system developed with VB.NET on .NET Framework 3.5 (ASP.NET Web Forms). We are planning to migrate the system to .NET 10 and would like to minimize code changes. Our questions are: Is it possible to…
Developer technologies | VB
An object-oriented programming language developed by Microsoft that can be used in .NET.
Ending a function
void display(void); { glClearColor(1.0f, 0.0f, 0.0f, 1.0f); glClear(GL_COLOR_BUFFER_BIT); glLoadIdentity(); glFlush(); } void glutInit(int* argcp, char** argv); { glutInitDisplayMode(GLUT_RGB | GLUT_DEPTH); …
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.
Problem installing Microsoft Visual C++ 2015-2019 (x86) Redistributable on Windows 10
The application keeps asking me to install this, but it won't install. It tells me there's already a version installed, even though the latest version is Microsoft Visual C++ V14 (x64) Redistributable on Windows 10, and the oldest version is 2013 and…
Developer technologies | Visual Studio | Setup
The process of installing, configuring, and customizing Visual Studio to support development workflows across languages, platforms, and workloads.