Questions tagged as 'c#'

1
answer

Unity code does not compile [closed]

using UnityEngine; using System.Collections; public class Player : MovingObject { public int pointsPerFood = 10; // Numero de pontos cada vez que pegar comida. public int pointsPerSoda = 20; // "" pegar Soda. public int wallDamage =...
asked by 06.09.2015 / 19:51
1
answer

Status of sale in C #

Good afternoon guys, are you okay? I'm creating a car rental system in C # and would like to implement a function that returns all cars to me and a column that shows whether the requested car is leased or not, if it is leased, the ball would...
asked by 28.05.2018 / 22:27
3
answers

How to delete node in linked list?

How to delete the middle value from a linked list C # Element Class; public class NoLista { public float info; public NoLista proximo; //construtor para passar valor ao elemento public NoLista(int valor) { this....
asked by 11.11.2015 / 19:30
1
answer

How to create a dll to be used in asp.net [closed]

It's worth noting that I'm not programming asp.net much less C # or something like that. But I had to support a system in ASP.NET that consumes a .dll I needed to make a change in this dll. Get the ability to decompile and make the change thr...
asked by 14.05.2014 / 14:02
1
answer

Would it be possible to pass a string from one form to another? [closed]

Imagine a Form that asks you for a color, then it would have a TextBox , and from that TextBox I wanted it to Press the "OK" button for example, this sends the text from this TextBox to another Form , so that i...
asked by 09.12.2015 / 15:22
1
answer

How is this class working? [closed]

DataSet OleDbConnection OleDbCommand OleDbDataAdapter OleDbDataReader I still can not understand this class in .NET. What is the purpose of these dataSets and etc? I'm using this: using System; using System.Collections.Generic; using System....
asked by 08.02.2016 / 14:29
1
answer

How to insert date and time in oracle? via c #

I'm developing a desktop application and it was working fine until the time I tried to insert the date and time generated by C # into a table in oracle. Can someone teach me the query to insert date into this format: 21/07/2018 12:54:35: (dd/m...
asked by 11.05.2018 / 16:12
1
answer

How do I create an installation menu with check box?

I'm creating an installation menu with CheckBox , in this menu will have installation softwares in each CheckBox, after selecting the CheckBox, will have a button that will execute all the checkbox > selected. Each CheckBox will run a softwar...
asked by 25.04.2018 / 23:09
3
answers

The user will have 3 attempts to set the password

The next form does not open when the password is correct and if it is wrong it continues even if the password has been entered 3 times. private void btnEntrar_Click(object sender, EventArgs e) { int erro=0; if (senha != ""...
asked by 25.05.2018 / 07:41
1
answer

A view using two MVC models [duplicate]

Good afternoon guys, I have an application in MVC and I need a view to access two models. The models are: Andeachmodelhasitscontroller,whereIconnecttotheWebServicetobringthedatafromanotherapplication. I need that in the Project view...
asked by 14.02.2018 / 20:01