It marks lines in red, but it compiles.
In Visual Studio 2022 with the latest update and C#, I use two DLLs. In the first DLL, I removed an enumeration and created another one, which I compiled. In the second DLL, it also compiles, but the lines where I reference the new enumeration are…
Developer technologies C#

javascript how to print pdf file through windows.print
inside a aspx file javascript how to print pdf file through windows.print
Developer technologies ASP.NET ASP.NET API
Visual Studio 2022 Build Failure Due to Shortcut Creation Issue
The solution includes a Setup Project that fails to build, causing the build process to be cancelled. This has worked previously without issues. To troubleshoot, the solution was tested on two other computers: one with Visual Studio 2019 and another with…
Developer technologies Visual Studio Debugging
Azure web app call wcf 404
Why is it that after deploying an asp .net web app to azure web app, https://hk-np-focz-aps-ipe-dev-grg5a4dndackdrge.eastasia-01.azurewebsites.net/PriceTag.svc?wsdl can be accessed, but the call interface returns HTTP/1.1 404 Not Found. The local call to…
Developer technologies ASP.NET ASP.NET API
www-authenticate: Bearer error="invalid_token",error_description="The signature key was not found"
I am getting below error while validationg intra auth token www-authenticate: Bearer error="invalid_token",error_description="The signature key was not found" i am not able to find IssuerSigningKey from any where
Developer technologies C#
Microsoft Graph API: createdDateTime filter with gt still returns same timestamped record
I’m facing an issue while fetching sign-in logs from Microsoft Graph API using a time-based polling mechanism. We're fetching logs from the Microsoft Graph API endpoint: https://graph.microsoft.com/v1.0/auditLogs/signIns We use the filter:…
Developer technologies Small BASIC
in shell.flyoutheader Button is not clicking on ios app in maui .net 9 project
<Shell.FlyoutHeader> <ContentView Padding="{OnPlatform iOS='0,0,0,5'}"> <Grid x:DataType="viewModel:AppShellViewModel" Padding="0,0,0,5"> …
Developer technologies XAML
SAML Access Denied from Azure AD - Localhost Sustainsys Setup
I am trying to set up an SAML based authentication using ASP.Net framework 4.8. But after login i am returning back to my localhost site and getting error like https://localhost:44353/Saml2/Acs?error=access_denied . I have assigned users and all the…
Developer technologies ASP.NET ASP.NET API
The wait operation timed out SOURCE...............: FORM.................: http://localhost/Pages/Reports/TDSDetails.aspx
Date.................: 6/26/2025 Time.................: 6:57:03 PM MESSAGE..............: The wait operation timed out SOURCE...............: FORM.................: http://localhost/Pages/Reports/TDSDetails.aspx QUERYSTRING..........: …
Developer technologies C#
Positioning UWP ContentDialog on top of AppWindow.
In UWP app , I have a AppWindow which is opened from the main window with the below code. var appWindow = await AppWindow.TryCreateAsync(); var frame = new…
Developer technologies Universal Windows Platform (UWP)
Why is step into function is working but play has error in VBA?
I have a macro that converts PDF file into excel. For the first file, it works properly not until I encountered this error on the succeeding files: When I tried to check step into, the macro runs smoothly and converts all the PDF files to excel. While…
Developer technologies Visual Basic for Applications
Format SQL Query Result into web menu
I am trying to build a drill-down menu for my website, where the user will click on a category and it will show the subcategories of that clicked category, there could be n-levels. I am able to write an SQL query which returns the output exactly as I…
Developer technologies C#

Blazor Server APP
I’m building a Blazor Server application, which uses WebSockets for real-time communication (via SignalR). By default, Blazor uses MessagePack as the serialization protocol, which results in a binary transfer format. For debugging and interoperability…
Developer technologies .NET Blazor
[Visual Studio 2022] Adding a Project Reference fails
Greetings All, I have a problem with Visual Studio 2022. Firstly, I should tell you that my VS2022 environment is as follows: Microsoft Visual Studio Community 2022 Version 17.14.3 VisualStudio.17.Release/17.14.3+36127.28 Microsoft .NET Framework …
Developer technologies Visual Studio Setup


Edmx codegenerator for legacy project
I have been assigned a task required to use VS 2012 edmx generator. Therefore, I have to get a license for VS 2012 although we bought and use VS 2022. I am looking for a way that I do not have to install VS 2012. But the code won’t generate like VS…
Developer technologies .NET Other
Developer technologies Visual Studio Other
How many threads can Splunk ODBC support concurrent reading simultaneously
Hi there, I would like to know how many concurrent threads Splunk ODBC supports reading data simultaneously? Thanks&Regards, zmsoft
Developer technologies C#
How to call multiple Store Procedures in parallel in MS SQL
Hi All, I have 3 store procedures in MSSQL DB. EXEC sp_test_1 (ID) GO EXEC sp_test_2 (ID) GO EXEC sp_test_3 (ID) GO When I execute each store procedure is taking 15 minutes to complete and total of 45 minutes. When I…
Developer technologies Transact-SQL
SQL Server Other
Visual Studio 2022 Not Responding after adding ContextMenu
I'm using VS 2022 v17.14.7 developing a WinForms app using .Net 8.0 and C#. When I add a ContextMenu to any form and try to add a menu item under it, Visual Studio stops responding and has to be killed via the Task Manager. This also happens when using…
Developer technologies Windows Forms
Error trying to call a C# DLL from a C++ console app
I am on Windows 10 with VS 2022. I want to call a C# DLL from a C++ app. I am trying to register the C# DLL using regasm. I am getting the following error: C:\Users\dbaec\OneDrive\Forex\C++_App\C#_DLL\obj\x64\Debug\net6.0-windows7.0>regasm.exe…
Developer technologies C++
.NET Core Profiler Crashing on 32 bit Application Environment
Hi Team. I have developed my own .NET core profiler using VS 2019. To load my profiler, I have set the environment entry in the web.config file. <environmentVariable name="CORECLR_ENABLE_PROFILING" value="1" /> …