DirectoryInfo GetDirectories Reverse
Hello, Using this code and need to reverse the list returned by GetDirectories: Dim di As New DirectoryInfo(path) Dim di2 As DirectoryInfo() = di.GetDirectories How to reverse di2 list? Thanks :)
Developer technologies | VB
Developer technologies | C#
Get enum string from integer
Hello I have this enum: Friend Enum Blah As Integer Zero = 0 One = 1 Two = 2 End Enum I will get an integer and need to return the related string. ie will need to convert 1 to One. Select Case InputInteger Case 0 …
Developer technologies | VB
Gridview TextBox value getting null (blank) after button click
i am selecting some checkboxes and trying to enter some feedback value in the corresponding cell of textboxes. But, I am unable to get Gridview textbox value in all paging when i click save button. Getting blank value always. below is my…
Developer technologies | ASP.NET | Other
Developer technologies | C#
How to logout user from all tabs in blazor webassembly standalone with azureb2c
Hi team, I have implemented azure b2c with my blazor webassembly standalone application. Now when user multiple tabs in same browser and log out from one of the session it remains active in other tabs. When user refreshes the page , it still is active.…
Developer technologies | .NET | Blazor
Microsoft Security | Microsoft Identity Manager
How to get the position of NotifyIcon at runtime?
Hi, I want to retrieve the location and size of notifyIcon whenever it be clicked. The purpose is to set the application UI above the notifyIcon like the below photo. Please show me how I can do this with C#. Thank you!
Developer technologies | Windows Forms
Developer technologies | .NET | Other
ASP.NET Core MVC pass a url parameter to the POST
Hi all; I have a Blazor Server app. It uses the ASP.NET Identity Library which is ASP.NET Core MVC. I am trying to pass a parameter to register so a URL like /identity/account/Register?follow=uniqueId gives me the parameter follow=uniqueId. In…
Developer technologies | ASP.NET | ASP.NET Core


C++/CLI breakpoints not stopping
I try to debug an extension for Visual Studio (2019/2022) that I wrote in C++/CLI. Now... the extension itself works. The only problem is, that I cannot jump into the code while it is executing. The breakpoints never stop. But, when I create a C#…
Developer technologies | C++
Developer technologies | .NET | .NET CLI
How to copy big file 5g with task and within impersonation
Hi, How to copy big file 5G from source to destination using impersonation: WindowsIdentity.RunImpersonated( ImpersonationHelper.Token Thanks,
Developer technologies | .NET | .NET MAUI
Developer technologies | .NET | Other
How to get the handle of the mouse cursor icon with API (GetCursorInfo)
hi I need a function to put in the timer and check the status of the mouse cursor every 500 milliseconds. Private Declare Function GetCursorInfo Lib "user32" (ByRef pCI As cursorInfo) As Integer Public Structure POINTAPI Dim x…
Windows development | Windows API - Win32
Developer technologies | VB

SQL Server - Question marks inserted with Hebrew collation
SQL Server 2019, Developer edition, Windows 10. The client is SSMS 18. When database is created with Hebrew collation, for example, Hebrew_CI_AI, there is no problem, Hebrew strings are inserted and being read as they are. When database is created…
Developer technologies | Transact-SQL
SQL Server | Other

Process info - ArgumentList is limited when using user domain and password?
Hi, Process info - ArgumentList is limited when using user domain and password? Thanks in adavnce,
Developer technologies | .NET | Other
Editor is vanish when I move to full screen
Hi, When I resize the page to full screen the editor cotent disappered? why? Thanks, <ScrollView x:Name="scrollView"> <Editor x:Name="editor" IsReadOnly="False" AutoSize="TextChanges"…
Developer technologies | .NET | .NET MAUI
How to create the Left/Right MouseDown And MouseUp click event of Global type(Anywhere from Windows with API)
hi .Require mouse events via API functions
Windows development | Windows API - Win32
Developer technologies | VB

WPF extremely slow when using .Net Standard controls
WPF extremely slow when using .Net Standard controls I have a WPF application in .Net Framework 4.8 and I am trying to compile it in .Net 8. The application employs some DevExpress controls. I have added almost all the Dll's from the directory…
Developer technologies | Visual Studio | Other
Problem with XAMLReader
Hello, I have a xaml file in my Assets folder "MainPage1.xaml" defined as below. <StackPanel xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:local="using:Label" > <Grid…
Developer technologies | Universal Windows Platform (UWP)
ComboBox before drop down event?
Hello I'm looking for an event in ComboBox in .net framework WinForms which fires before the drop down menu is going to drop, when DropDownStyle is set to DropDown, so when user clicks on the far button, I add some items to the list on the fly and then…
Developer technologies | VB
Developer technologies | C#
How do I change the embed media properties (size, text wrapping, border, and so on) in CKEditor 5 (checking for script tag)?
Hi! I have an implementation of CKEditor fields in my project in the form: DecoupledEditor .create( document.querySelector( '#editor' ), { extraPlugins: [ MyCustomUploadAdapterPlugin ], removePlugins: […
Developer technologies | ASP.NET | ASP.NET Core
Microsoft 365 and Office | Development | Office JavaScript API

How to maintain ajax text box calander control value after save button clicked
I am using asp.net text box control for date picking..for that, i am using ajax calander extender. Here, is facing issue that, date control values will be clearing after save button clicked...here I want to maintain the date values till I manually…
Developer technologies | ASP.NET | Other
Developer technologies | C#

XML parsing errors when manually converting app from Xamarin to Maui
I am manually converting my Xamarin app to Maui. After fixing all the conversion errors, I am left with these 16 errors that I do not know how to resolve. Severity Code Description Project File Line Suppression State Error MAUIG1001 An error occured…
Developer technologies | .NET | .NET MAUI
Can't locate and add the System.Management.Automation into my project
Dear All, I trying to search and add the System.Management.Automation and System.Management.Automation.RunSpace that available in VS 2019 and using NuGet as well. Unfortunately, no luck. How to add this reference to my VB.Net 2019 (.NET Framework 4.7.2)…