Why does Button.DoubleClick not fire in WinForms when MouseUp opens another form?
In a VB.NET Winforms application, we have a button. On button click i.e. Button1.MouseUp event, it opens another form. But when we double click on the button, the double click splits into two single clicks i.e. first single click opens another form…
Developer technologies | .NET | Other
Could not start Visual Studio due to an error. StreamJsonRpc.ConnectionLostException: The JSON-RPC connection with the remote party was lost before the request could complete.
Getting the following error while launching the newly installed visual studio 2022
Developer technologies | Visual Studio | Setup
Ensure that the server side is ready
Hi, Further to https://learn.microsoft.com/en-us/answers/questions/5767226/openapi-issue how to ensure that the link like https://localhost:7060/swagger/index.html is ready to be triggered by the client App (or to receive any command from the client…
Developer technologies | ASP.NET | ASP.NET API
Executável gerado pelo VB6 SP6 não está funcionando
Recentemente passei a ter problemas com o VB6. O aplicativo gera programa normalmente, porém na hora da execução ele simplesmente trava sem dar mensagem de erro.
Developer technologies | VB
How to install Microsoft Visual Redistributable package C++ 2019 for VirtualBox 7.2.0
I need Microsoft Visual C++ Redistributable package to install VirtualBox 7.2.0
Developer technologies | C++
how do I fix this watchdog error
trying to debug on iOS with a Mac machine, I get this error in my logs. I saw a thread that said that this was typical for maui versions that are beyond the scope 0f 8.0 and 9.0.120 so I adjusted to the latter, I can debug on the eimulator but only with…
Developer technologies | .NET | .NET MAUI
Publisher account suspended – unable to access Visual Studio Marketplace (404/500)
Hello Visual Studio Marketplace Support Team, My Visual Studio Marketplace publisher account appears to be suspended. I am unable to access both the publisher dashboard and the official support page. The Marketplace management pages return 404 or 500…
Developer technologies | Visual Studio | Extensions
Azure Data Factory SFTP Linked Service: Failed to read binary packet data! (ProtocolError)
Hi everyone, I'm facing a problem with a SFTP server, where some restrictions are applied to avoid the usage of RSA Keys with SHA1 signature. I can connect without any problem to the SFTP server using WinSCP. There are no network restrictions so I can…
Azure Data Factory
Developer technologies | .NET | Other
Unbound columns lost cell values on sorting in datagrid in WPF
Hi All, I have a WPF datagrid on the screen which has three unbound columns. These columns are calculated or updated from database based on values in other columns. The issue is that whenever user click on column header to sort the column these unbound…
Developer technologies | Windows Presentation Foundation
How to reopen a UserForm in File A with the selected row after navigating to File B?
In file A (.xlsm), there are multiple rows. When I select a row and click a button, a popup form (.frm) opens. From this popup, I click another button that opens file B (.xlsm). After clicking a button in B (.xlsm), it should return me to file A (.xlsm)…
Developer technologies | Visual Basic for Applications
Issue with API calls; initially the API is called with blank push id and later it will call with exact push id
I have implemented push notification in my project using Plugin.Firebase package. My problem is on saving the FCM id to database API. I am generating the FCM token on login page constructor and saving it to preferences like below: public…
Developer technologies | .NET | .NET MAUI
Output configuration in Visual Studio
How do I configure Visual Studio output to divert .exe files to a temporary local folder instead of OneDrive?
Developer technologies | Visual Studio | Setup
How to automate Visio Import to build Org Chart
I am trying to make it easy to refresh a Visio Sup Org when data in the linked Excel is Refreshed. The refresh button updates the data but not the structure and the only way I've noticed that creates a new structure is by using the import button. Is…
Developer technologies | Visual Basic for Applications
Getting Could not resolve mscorlib for target framework '.NETFramework,Version=v4.8'. This can happen if the target framework is not installed or if the framework moniker is incorrectly formatted. When trying to "view designer" in Visual Studio for class.
Hello, need help with this error |Could not resolve mscorlib for target framework '.NETFramework,Version=v4.8'. This can happen if the target framework is not installed or if the framework moniker is incorrectly formatted.|Could not resolve…
Developer technologies | Visual Studio | Setup
Developer technologies | .NET | Other
Developer technologies | Visual Studio | Other
OpenAPI issue
Hi, How to resolve it below? I ever changed OpenAPI version to 3.3.1 but there was the other issue.
Developer technologies | ASP.NET | ASP.NET API
Excluding shell and continuing the navigation with content page as in maui same as using the traditional method in xamarin
I am attempting to migrate a Xamarin cross-platform app to MAUI. I am utilizing shell as the Navigation root page for the app. The Xamarin application employs a conventional approach for navigation by establishing a flyout page, which is then linked to…
Developer technologies | .NET | .NET MAUI
Flyout is overlapping with Status bar
Flyout is overlapping with the status bar on the top, after upgrading that to MAUI 10. Please find the attachment for reference Regards, Vaibhav Methuku.
Developer technologies | .NET | .NET MAUI
Bug -Move SharpCompress from 0.42.0 to 0.44.5 failed
Hi, I'm using Console App in .NET 10 reference to class library :netstandard2.1 as follow: <Project Sdk="Microsoft.NET.Sdk"> **<PropertyGroup>** **<TargetFramework>netstandard2.1</TargetFramework>** Before: After:…
Developer technologies | C#
.Net MAUI app broken by new version of iOS
I work intermittently on a .Net MAUI app developed using Visual Studio. The last iOS simulator I had in Xcode before the latest updates was 17.5. I bit the bullet recently and installed the latest versions of Visual Studio and Mac O/S. I immediately had…
Developer technologies | Visual Studio | Debugging
what is the best practice to change the element of IEnuerable?
I have IEnumerable<XY> and how to change all the elements in it? class XY { public int X{get;set;} public int Y{get;set;} } what I want is to adding 1 of the X I have to change it to array ? var arr=xys.ToArray(); for(int…