54,120 questions with Developer technologies-related tags

Sort by: Updated
1 answer

.Net SmtpClient protocol error?

Hi, having an issue sending EMails using System.Net.Mail.SmtpClient to a mail server using postfix and postscreen using postscreen_greet_action = enforce. It seams, that the SmtpClient fails to process all greetings lines prior to sending the EHLO…

Developer technologies | .NET | .NET Runtime
asked 2024-05-03T09:12:57.5866667+00:00
Fs 5 Reputation points
commented 2024-05-15T07:07:25.4866667+00:00
Jiachen Li-MSFT 34,221 Reputation points Microsoft External Staff
0 answers

DeniedBySystem returned when i was used PhoneLineTransportDevice::RequestAccessAsync

I try to requset PhoneLineTransportDevice access with below code. It works fine in my Win10 22H2, but failed when i try to run in my Win11 23H2. would you like to give some advice? 1, Why it was failed DeniedBySystem in win11 ? 2, How to solve it…

Developer technologies | Universal Windows Platform (UWP)
asked 2024-05-07T08:44:33.0533333+00:00
栩 王 0 Reputation points
commented 2024-05-15T06:10:18.97+00:00
Junjie Zhu - MSFT 21,646 Reputation points
4 answers

How to achieve that properties set in Myprops.props override those set for the project?

I want to reuse Visual Studio 2022 project settings, but have trouble to understand the docs. There is said: "Properties in a property sheet are overriden if the same property is set directly in the .vcxproj file. I assume that before adding a new…

Developer technologies | Visual Studio | Other
asked 2024-05-06T13:21:32.1466667+00:00
Fred Verhoeckx 0 Reputation points
commented 2024-05-15T05:59:20.7533333+00:00
Anna Xiu-MSFT 31,056 Reputation points Microsoft External Staff
0 answers

Content Security Policy Violations happening for whitelisted domains only for Netherlands and Switzerland users.

I have a csp policy where I have whitelisted all the domains from which I want to load the content to my application and have added only default-src directive  which is fallback to all the other directives.   I have tested the policy on lower…

Developer technologies | ASP.NET | ASP.NET Core
asked 2024-04-26T11:33:36.0766667+00:00
Gour, Ashish 0 Reputation points
edited the question 2024-05-15T05:49:13.6466667+00:00
SnehaAgrawal-MSFT 22,706 Reputation points Moderator
3 answers

How to fill a ListView?

Dear all, I'm a beginner in C#. Could anyone tell me how to fill a ListView?

Developer technologies | C#
asked 2024-04-30T05:22:04.94+00:00
BenTam 1,781 Reputation points
commented 2024-05-15T04:18:58.6233333+00:00
BenTam 1,781 Reputation points
0 answers

Error squiggle not showing in visual studio code

Can't see error squiggles I have three files in my new C++ empty project, two of which are main.cpp and functions.cpp. I can see error squiggles in main.cpp but it is not in functions.cpp. The show squiggle option is on.

Developer technologies | C++
Developer technologies | Visual Studio | Other
asked 2024-05-11T18:02:21.64+00:00
Samit Singh 0 Reputation points
commented 2024-05-15T04:18:50.4633333+00:00
Anna Xiu-MSFT 31,056 Reputation points Microsoft External Staff
1 answer

How to Integrate .net core application to see logs in Azure Kubernates Cluster container insights

How can we integrate to see logs of our .net core API application in deployed Azure kubernates cluster container insights. what are all the code changes to be done to see errors and exceptions in container insights. I got to know that WriteTo.Console() ,…

Developer technologies | ASP.NET | ASP.NET Core
Azure Kubernetes Service
Azure Kubernetes Service
An Azure service that provides serverless Kubernetes, an integrated continuous integration and continuous delivery experience, and enterprise-grade security and governance.
2,461 questions
asked 2024-05-14T14:29:29.74+00:00
Hemanth Kumar Reddy Rachala 0 Reputation points
answered 2024-05-15T04:14:44.3966667+00:00
Anveshreddy Nimmala 3,550 Reputation points Moderator
1 answer

Automatic UI updates with Blazor

Using a .NET 8 Blazor WebApp, I hope to build an application whose pages automatically send updates to all users. For example, when Joe adds a payment to an invoice, Sue (who is viewing the same invoice) should see the new balace reflected on her screen…

Developer technologies | .NET | Blazor
Developer technologies | .NET | Other
asked 2024-05-14T23:20:47.5966667+00:00
Jeff Bowman 106 Reputation points
answered 2024-05-15T03:28:45.7666667+00:00
Bruce (SqlWork.com) 78,236 Reputation points Volunteer Moderator
1 answer

How To Customize The Finger Print Dialog In Maui

Hi, i want customize the finger print dialog in maui .net 8 for example : set margin or change text color or ... this my codes private async Task AuthByFingerPrint() { // In constructor: var request = new…

Developer technologies | .NET | .NET MAUI
Developer technologies | .NET | Other
asked 2024-05-12T12:46:04.9366667+00:00
Mahdi Elahi 31 Reputation points
commented 2024-05-15T03:16:09.4333333+00:00
Anonymous
0 answers

Docker Build fails when I try to RUN apt-get

I am upgrading my application from .NET 6 to .NET 8. I am using a pod with ubuntu to compile and build my application due to compatibility issues with RHEL7. FROM mcr.microsoft.com/dotnet/aspnet:8.0 RUN apt update --fix-missing && apt install -y…

Developer technologies | ASP.NET | ASP.NET Core
asked 2024-05-14T18:33:40+00:00
Adebayo,Adeniyi (HHSC) 10 Reputation points
edited the question 2024-05-15T01:18:16.0966667+00:00
Lan Huang-MSFT 30,191 Reputation points Microsoft External Staff
2 answers One of the answers was accepted by the question author.

Does NumberBox.Value NaN not equal to double.NaN?

When I use NumberBox (WinUI2), I have trouble as follows: if (NumberBox.Value == double.NaN) // It keeps false. { // Some action codes. } Is there any bug about this equation? I would appreciate it if anyone could solve this problem.

Developer technologies | Universal Windows Platform (UWP)
Developer technologies | C#
asked 2024-05-11T07:35:25.51+00:00
鲤鱼 秀 65 Reputation points
edited the question 2024-05-15T00:54:40.5066667+00:00
鲤鱼 秀 65 Reputation points
4 answers One of the answers was accepted by the question author.

Simple Math Opertation

Hello I need to calculate how many parts an SMS text is, the text is US Ascii so here's the long code with minimum of 15 lines: .Length > 0 AndAlso .Length <= 160 Then Return 1 .Length > 160 AndAlso .Length <= 320 Then Return 2 .Length >…

Developer technologies | VB
asked 2024-05-13T13:12:52.5666667+00:00
StewartBW 1,830 Reputation points
accepted 2024-05-14T22:42:39.8266667+00:00
StewartBW 1,830 Reputation points
1 answer One of the answers was accepted by the question author.

image not loading in modal popup imageurl in asp.net c#

i am trying to load image in image button through modal popup. The problem is modal popup is showing, but image not loading which means it is blank window. i am storing all the images in different server and application hosted in another server. what is…

Developer technologies | ASP.NET | Other
Developer technologies | C#
asked 2024-05-05T17:01:04.1133333+00:00
BeUnique 2,332 Reputation points
edited a comment 2024-05-14T17:54:16.9366667+00:00
BeUnique 2,332 Reputation points
0 answers

How to debug the MAUI app in the Android work profile.

Hello Team, I was working on one of the samples of Microsoft. - https://github.com/Azure-Samples/ms-identity-dotnetcore-maui/tree/main/MauiAppWithBroker which crashing when installed in the work profile. Tried to debug it using the visual studio. Is…

Developer technologies | .NET | .NET MAUI
asked 2023-07-17T08:48:44.5566667+00:00
Vikrant Singh 16 Reputation points Microsoft Employee
edited the question 2024-05-14T16:23:13.52+00:00
Rob Caplan - MSFT 6,037 Reputation points Microsoft Employee Moderator
1 answer

USB on MAC

Hi Bruce, Maui approach is to run windows in a vm, and use visual studio for windows. Is there USB in MAC ? How I protected the app for malicious operation that only the app will have access to it ? Thanks,

Developer technologies | .NET | .NET MAUI
asked 2024-05-14T03:27:55.41+00:00
Dani_S 4,521 Reputation points
answered 2024-05-14T16:15:31.67+00:00
Bruce (SqlWork.com) 78,236 Reputation points Volunteer Moderator
2 answers One of the answers was accepted by the question author.

vs 2022 – copy/paste from vs to ms word is not in color

Hi, coping text from vs 2022 to ms word shows no color. This happened in vs 2017,19, but fixed that. I cannot seem to find the fix for vs 2022. Here is what I tried.   Download power tools with productivity tools 2022. …

Developer technologies | Visual Studio | Other
asked 2024-05-10T19:29:15.1966667+00:00
iqworks Information Quality Works 331 Reputation points
accepted 2024-05-14T15:43:22.2+00:00
iqworks Information Quality Works 331 Reputation points
1 answer One of the answers was accepted by the question author.

Send Emails after Business Trasnaction in Azure

Hi All, We have a requirement to send emails containing business data (and contract file attachments) to external users (outside Org. domains) from applications hosted in Azure. Our backend services are either Az Functions or Services hosted in Azure App…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
5,939 questions
Developer technologies | C#
asked 2024-05-13T13:29:55.01+00:00
Kaushik Dutta 40 Reputation points
accepted 2024-05-14T14:29:13.7633333+00:00
Kaushik Dutta 40 Reputation points
1 answer

How to solve Azure Devops duplicating upt to 10 times what I am uploading via Import using Queries

When I use a prepared CSV sheet to import Taks under Product Backlog itms in Azure DevOps, the system multiplies/duplicates all new items up to ten times. This makes the upload functionality totally useless. How is this solved?

Developer technologies | Visual Studio | Other
asked 2024-05-14T12:53:59.83+00:00
Meulendijks, Ronald 0 Reputation points
answered 2024-05-14T13:45:47.3066667+00:00
Tianyu Sun-MSFT 34,451 Reputation points Microsoft External Staff
3 answers

what's the difference between windows forms app and windows forms app (.netframework) in vs 2022?

what's the difference between windows forms app and windows forms app (.netframework) in vs 2022?

Developer technologies | Windows Forms
asked 2023-03-30T06:15:45.95+00:00
Alick Wang 306 Reputation points
answered 2024-05-14T13:43:26.0466667+00:00
Alee Jee 0 Reputation points
2 answers One of the answers was accepted by the question author.

Why drawing 2 Rectangles on a PictureBox by calling twice a "Function for Drawing" shows only the 2nd Rectangle?

Hi All, Given below is my Function (a Sub) for drawing a "Rectangle" on a "PictureBox". I wanted to draw 2 Rectangles side by side. When I called the function for each Rectangle, only the 2nd Rectangle was drawn, the 1st Rectangle was…

Developer technologies | VB
asked 2024-05-14T11:01:48.48+00:00
VKSB 236 Reputation points
commented 2024-05-14T13:32:19.5533333+00:00
VKSB 236 Reputation points