56,194 questions with Developer technologies-related tags

Sort by: Updated
1 answer

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
asked 2026-08-07T09:57:39.9066667+00:00
Sara Silva 0 Reputation points
edited an answer 2026-08-10T04:53:51.2733333+00:00
Tony Thach (WICLOUD CORPORATION) 240 Reputation points Microsoft External Staff Moderator
3 answers One of the answers was accepted by the question author.

In wpf with vb, there is no closing of a popup opened from another popup with the Staysopen property set to true.

Hello, In WPF with VB, I have a main window representing a toolbar. A button in the main window opens a popup with the StaysOpen property set to True. From a button in the popup, I open a second popup with StaysOpen set to False. After the first time the…

Developer technologies | VB
Developer technologies | VB

An object-oriented programming language developed by Microsoft that can be used in .NET.

2,938 questions
asked 2026-08-08T17:23:32.26+00:00
jacky Perpète 191 Reputation points
accepted 2026-08-10T04:34:35.13+00:00
jacky Perpète 191 Reputation points
2 answers

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
asked 2026-08-07T10:42:45.7433333+00:00
RogerSchlueter-7899 1,756 Reputation points
edited an answer 2026-08-10T03:19:20.4733333+00:00
Tony Thach (WICLOUD CORPORATION) 240 Reputation points Microsoft External Staff Moderator
3 answers

VBA control on worksheet calculations

I woud like to have VBA control over when a work sheet is calculated

Developer technologies | Visual Basic for Applications
asked 2026-08-09T11:35:45.31+00:00
Heinrich Morf 0 Reputation points
answered 2026-08-10T03:06:36.3866667+00:00
Taki Ly (WICLOUD CORPORATION) 3,700 Reputation points Microsoft External Staff Moderator
1 answer

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
asked 2026-08-02T23:40:17.5466667+00:00
Bridget Shoulders 0 Reputation points
commented 2026-08-10T03:05:40.37+00:00
Danny Nguyen (WICLOUD CORPORATION) 8,030 Reputation points Microsoft External Staff Moderator
2 answers

Request for Microsoft guidance: Migration strategy from VB.NET/ASP.NET MVC/System.Web to .NET 10

Dear Microsoft Support Team, We are currently evaluating a modernization strategy for an existing enterprise system, GMTP/F-GDC, and would like to request Microsoft's official technical guidance before deciding on our migration approach. 1. Current…

Developer technologies | VB
Developer technologies | VB

An object-oriented programming language developed by Microsoft that can be used in .NET.

2,938 questions
asked 2026-08-08T06:24:25.0766667+00:00
PHAM VAN NAM 5 Reputation points
answered 2026-08-10T03:01:44.0933333+00:00
Danny Nguyen (WICLOUD CORPORATION) 8,030 Reputation points Microsoft External Staff Moderator
2 answers

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
asked 2026-08-03T10:03:01.0266667+00:00
takiadam1977 ben 0 Reputation points
commented 2026-08-10T02:55:20.3433333+00:00
Lizzy Dinh (WICLOUD CORPORATION) 700 Reputation points Microsoft External Staff Moderator
3 answers

Keep Window Open

Running C++, OpenGL and graphics output with Visual Studio. Running OpenGL with a graphics window, when I execute, the window immediately closes at the program end before I can see what is happening. How does one keep the window open that has been…

Developer technologies | C++
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.

4,103 questions
asked 2026-08-05T01:21:39.1133333+00:00
Sid Kraft 96 Reputation points
commented 2026-08-10T02:48:23.1433333+00:00
Danny Nguyen (WICLOUD CORPORATION) 8,030 Reputation points Microsoft External Staff Moderator
3 answers

Already has a body

//OpenGL functions, open a window and initialize 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 |…

Developer technologies | C++
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.

4,103 questions
asked 2026-08-01T13:52:18.02+00:00
Sid Kraft 96 Reputation points
commented 2026-08-10T02:35:58.7233333+00:00
Danny Nguyen (WICLOUD CORPORATION) 8,030 Reputation points Microsoft External Staff Moderator
1 answer

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
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.

5,818 questions
asked 2026-08-06T19:54:15.8+00:00
Sid Kraft 96 Reputation points
edited the question 2026-08-10T02:35:31.43+00:00
_AW_ 68,651 Reputation points Volunteer Moderator
3 answers

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++
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.

4,103 questions
asked 2026-07-31T13:51:41.21+00:00
Sid Kraft 96 Reputation points
commented 2026-08-10T02:27:46.51+00:00
Taki Ly (WICLOUD CORPORATION) 3,700 Reputation points Microsoft External Staff Moderator
4 answers

VBA trying to launch Outlook 2016

My VBA Excel code is set to send an email, but rather than using the existing Outlook on my laptop is trying to launch and install Outlook 2016

Developer technologies | Visual Basic for Applications
asked 2026-07-31T15:21:20.67+00:00
Marty Sheehan 0 Reputation points
commented 2026-08-10T01:38:27.8633333+00:00
Jay Pham (WICLOUD CORPORATION) 3,905 Reputation points Microsoft External Staff Moderator
3 answers One of the answers was accepted by the question author.

OpenGL glutInit 2

#include <iostream> #include<Gl\gl.h> #include<GL\glut.h> #include<GL\freeglut.h> #include<cmath> using namespace std; int main() { void display(void) { glClearColor(0.f, 0.f, 0.f, 1.f); …

Developer technologies | C++
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.

4,103 questions
asked 2026-08-01T02:09:07.6133333+00:00
Sid Kraft 96 Reputation points
commented 2026-08-10T01:32:56.55+00:00
Jay Pham (WICLOUD CORPORATION) 3,905 Reputation points Microsoft External Staff Moderator
1 answer

Existing VS Code Marketplace publisher cannot generate PAT because Azure DevOps requires Azure subscription

I own an existing Visual Studio Marketplace publisher. Publisher: JashT14 Extension: Symtrace for VS Code The extension is already published (v0.2.0), and I am attempting to publish an update (v0.3.0). Environment: vsce 3.9.2 Windows Personal…

Developer technologies | Visual Studio | Extensions
asked 2026-08-02T19:13:30.5033333+00:00
Jash Thakkar 0 Reputation points
commented 2026-08-10T01:28:05.14+00:00
Leon Tran (WICLOUD CORPORATION) 2,150 Reputation points Microsoft External Staff Moderator
3 answers One of the answers was accepted by the question author.

where to start if I want to learn C#

where should I start if I want to learn C#, I have no previous C# knowledge, but have a lot of experience in C++

Developer technologies | C#
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.

11,812 questions
asked 2026-05-08T19:34:41.1633333+00:00
Vladislav Velimirovic 60 Reputation points
commented 2026-08-09T09:45:54.42+00:00
Mofokeng Kgaile 0 Reputation points
3 answers

VB6 IDE Download

Where can i download VB6 IDE from?

Developer technologies | VB
Developer technologies | VB

An object-oriented programming language developed by Microsoft that can be used in .NET.

2,938 questions
asked 2022-12-01T16:45:09.893+00:00
Renu Rathor 1 Reputation point
edited an answer 2026-08-08T19:59:11.42+00:00
shadowdev ⠀ 0 Reputation points
3 answers

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
Developer technologies | VB

An object-oriented programming language developed by Microsoft that can be used in .NET.

2,938 questions
asked 2026-08-03T18:21:58.1066667+00:00
Stephen Woehr 0 Reputation points
edited an answer 2026-08-08T06:38:45.4133333+00:00
Senthil kumar 1,810 Reputation points
1 answer

How to fix missing dll in VS 2022

Image1.jpg See Image 1 to see the name of the dll file that is preventing the creation of an installer for StaffTrak which I have previously done 382 million time. My investigation into this issue suggests that VS 2022 is corrupted, but I don't know how…

Developer technologies | Visual Studio | Other
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.

5,818 questions
asked 2026-08-07T18:16:04.1033333+00:00
SuperCoder 396 Reputation points
answered 2026-08-08T06:36:53.3933333+00:00
RLWA32 52,786 Reputation points
1 answer

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
asked 2026-08-04T22:36:52.6166667+00:00
Sergey Dorodnov 10 Reputation points
edited a comment 2026-08-07T12:24:17.2633333+00:00
Tony Thach (WICLOUD CORPORATION) 240 Reputation points Microsoft External Staff Moderator
1 answer

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
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.

5,818 questions
asked 2026-08-07T10:33:36.6533333+00:00
BOTCHA CHANDHRA SHEKHAR 0 Reputation points
answered 2026-08-07T12:14:39.2433333+00:00
saleha mubeen 5 Reputation points