c# .net

  1. Programmable Physics

    Question How to remove/delete a string that has been just entered by a user and read by console from Console Interface Screen?

    I want to delete a user input if a condition is not met, and keep the Console interface same and intact without using Console.Clear() or goto menu; I want to delete whatever was entered by the user if a condition is not met. How can I do that? If I use Console.Clear() or goto menu; the same...
  2. manaxarage

    I ask for advice where to download a book on c # for beginners from scratch?

    or if there is a site where you can order such a book in Ukraine
  3. J

    Question How can I get a valid stream from a zip file which contains xml?

    Hi Gents, I have a specific requirement is to get a valid stream(which will be further operate) from given zip path? The situation is use a support code snippet to determine given path is xml/zip file(one of these files inside zip is xml which what I want), if it's a xml then easily get a...
  4. Programmable Physics

    Question Simple Snake Game - Snake Head is not moving after ReadKey()

    The snake head ```0``` does not move anywhere when ```Console.ReadKey()``` happens. Here is the full code: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SimpleSnakeGame_ConsoleApp { internal class Program {...
  5. Programmable Physics

    Basic use of Linklabel tool in winforms gives Exception Handling Error

    This simple code gives Exception Handling Error: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace...
  6. uzeren

    C# timer

    Hello, I'm doing a windows form project, in this project, when I subtract the entry date from the end date, I reflect the result to a column named remaining usage. What I want in the database is that this remaining usage decreases by 1 every 24 hours
  7. W

    Question System.IndexOutOfRangeException

    Hello, I am trying to write a method, that checks if a string is isomorphic and returns true or false. In line 10 in the code posted below, I get a System.OutOfRangeException and I just can't figure out what I am doing false. public static bool IsIsomorphic(string s, string t) {...
  8. P

    Question Use Multiple Type in Generic T C#

    0 I have this interface base repo with genric type T: public interface IRepositoryBase<T> where T : class { void Add(T obj); } and this interfaces heritance from the IRepositoryBase public interface IClass1Repository : IRepositoryBase<Class1> { } public interface IClass2Repository ...
  9. Phani_2204

    Question Push notification using firebase?

    We have created an app which captures error logs. API's help us do that but when the error is created user must be notified. Can you help us? Source code:- GitHub - ranadeepmedagone/LogApp
  10. Tony21

    IIS doesn't load grid JS

    I have my project worked on asp.net mvc i am using jqxGrid but when i publish my project on IIS the grid does not load the data. in my js grid i use URL with parameters. as i have googled i must convert the URL to @url.action, but i don't know how to convert my URL because it has parameters...
  11. X

    Question why do i get Error: Concurrency violation: the UpdateCommand affected 0 of the expected 1 records

    I save the changes in the database by clicking on the button, here is the code itself: else if (comboBox1.SelectedItem == "Работа") { label3.Text = "Работа"; string script = "SELECT id, name, Model_preparation_R_Hr, Time_for_preparation_hr, Time_for_post_processing_hr, YZV_work FROM rabota;"...
  12. G

    c# developer needed

    I'm looking for someone who has a bit of experience with sockets to create a simple server that connects to the client using tcp (the client is already finished), so what you'll have to do is : analyze the client, see what packets it sends over and receive and based on that create the server
  13. M

    Question Summary of all numbers List<>

    Hello, I am new here. I am looking for help / hints. I have code to write that counts articles. After entering the code starting with A, do not count the tax, for B it is 8%, for the other codes 23% of the tax (I already have it), but I have a problem summing up these amounts, and the...
  14. B

    Question How to make Deal or No Deal Game in Windows Forms?

    Hello :) I want to ask if someone can help me with the creation of Deal or No Deal, or if you have any tutorials how to make to share them to me. Thanks!
  15. O

    read csv file but it only reads the first line

    Am trying to read this csv file and make a header of all the distinct elements in it and put it in a datatable but it only reads the first line Am trying to read this current csv file and convert it into a truth table that show if an element exists in a row I out 1 if not I put 0 but it only...
  16. ramsesKouam

    how to export data into an spss file in .net?

    i would like to export some datas in a file in a web service. i used this package it exports datas as i defined in the code below : var variables = new List<Variable> { new Variable { Label = "Nombre de questionnaires envoyés", ValueLabels = new Dictionary<double...
  17. AndreasPapandreou

    Question Randomized Playlist

    Hello i am new to c# and trying to create some simple programs and one of those is a randomized playlist for spotify. When I run the code I get this error: "Unhandled exception. System.ArgumentOutOfRangeException: Index must be within the bounds of the List. (Parameter 'index') at...
  18. J

    Filtering data grid causes UI freeze

    Hi, I have a small WPF application which gets some data (~300 rows) from an API and gets displayed in a DataGrid. Up to this point everything works well. Some Header-columns of the DataGrid have nested textboxes, which should serve as search-boxes. I bound their text to a property in my...
  19. sachin Shrestha

    Child Entity not getting added or updated while updating the parent entity

    For example, we have a car and it is the Parent class of Models so cars can have many models possible so while updating the car with models car is getting updated but models are not getting added or modified in Entity Framework . public class Car{ public string name{get;set;}...
  20. DavidEN

    Temporary folder error when publishing to visual studio 2019 folder

    Good, I have this problem, when I want to publish my visual studio 2019 project in a folder I get an error from the temporary folder, I already tried cleaning the project, deleting the bin folder and obj I deleted the temporary ones and I recompiled the project and I The error keeps coming out...
Back
Top Bottom