Category "c++sharp"

Connecting to Dynamics Dataverse from Azure Web App - getting "object not set to an instance of an object"

We have an API, written in C# .NET Framework that connects to the OrganizationService and the OrganizationServiceContext of our Dynamics instance. We are gettin

C# WinForms | Can I detect specific Sounds with a Microphone Input and let my program detect that specific sound and respond to it?

I'm currently trying to make a C# programm that simulates a Dial-Up Connection. So this what the programm should do: When I play a DTMF Tone like 212 5678912 or

Draw a "transparent" triangle over dark background in monogame

I am trying to have a "night" effect on my screen, by setting dark background spriteBatch.Begin(); // my objects here spriteBatch.Draw(darkBackground, Vector2

Resize Texture2D (printscreen) with SharpDX

The following question answers how to resize a printscreen taken with SharpDX by a power of two Resizing a DXGI Resource or Texture2D in SharpDX. I'm trying to

LiveChart.WinForms.CartesianChart scrollable

I am developing a C# WinForm application. I am using cartesianchart from LiveChar.Winforms.I want to do a scrollable graph. I added too many items on chart and

How to automatically add a name from selected id in View page from controller ASP.NET MVC

I want to get a name from selected id in my view page First Model public class Transaction { [Key] public int Id { get; set; } [Required] public

Could not load assembly 'CommonBaseData'. Ensure it is referenced by the startup project 'CommonBaseType'

I want create micro service architecture solution so I add some services for my solution. All my services must have one table in my database in there models so

System.Text.Json 6.0.2 Serialize error - trying to load System.Runtime.CompilerServices.Unsafe, Version=4.0.4.1

We are using C# .Net Framework 4.7.2, JsonSerializer in System.Text.Json Version 6.0.2. Solution builds fine. We get a runtime error when Serializing: Could no

Why nullable value type assignment does not fail with "Converting null literal or possible null value to non-nullable type."

In C#10 I was trying to create a Result type that would have an error or a value (without going for monadic stuff). When trying to use it I was expecting a comp

Calling another EXE with C# on Windows fails on target machine

I have created a Windows shell extension that provides a menu to users when they right-click in File Explorer. This then invokes a small dialogue App. I'm a nov

Edit Datagrid in WPF

How I can provide ComboBox to a particular DataGrid Column in wpf when user tries to edit data grid . For example user can change the Operator at run time from

System.Data.SQLite.SQLiteException : SQL Logic Error

A Sqlite Database was created that consists on a persons FirstName and LastName.When the code is executed, System.Data.SQLite.SQLiteException: 'SQL logic error

Get data from a table after having closed the session

In this moment I´m try to get a List of users and checks if the user is in the BD or not I´m using Web API Net 6 and Sql Server This is the code

C#: Append text to text file between two lines

I have in a txt file the following: TOP: BOTTOM: I want to add between those lines strings adding also a newline. How can I do this? The end Result should be

Object reference not set to an instance of an object on c# EF6

Sometime I get this error message when i run my project in Hosting.There is no problem on the local server. Sometimes this error comes up on the server, sometim

Passing data between pages Xamarin Shell navigation

I have a Xamarin forms app with a form split across multiple pages, I want to pass the object data to the next or previous page. I am navigating using the Xamar

Why is my file downloading only when I click retry .net core

I'm trying to export data from database to an excel file and then download that file on client side. The export works fine but the problem is with the download

Program logic to calculate hexacode checksum?

I have a hexadecimal code for which I have to perform a checksum logic which will give me a checksum that will be added to the end of the Hexacode message and p

unity stop looking down after certain point

hi in my code I have some values I need to get, so far i already have a way to look up and down but I want it to stop after a certain point. I need to get the x

Delete messages from MSMQ queue without iterating on all messages

I have a cleanup method triggered by a timer and each time I verify if I reach or not the max size defined in a configuration file. The cleanup method will dele