Hello, I'd like to do something extremely simple, but I'm having trouble applying. I made the following class:
public class nome
{
string aluno = "Olá, eu sou um aluno";
string aluna = "Olá, eu sou um outro aluno";
}...
I have a C # application that performs a search. For this is used a field called 'status' that nothing else a list in a combobox. I need it to appear in addition to the statuses that come from the bank, a status called 'ALL' that does not exist...
I'm working with a main Form and it has several Panels. In one of them, the "general panel" I use to call instances of new forms and show on it using the following code from the FormCall class:
public void chamaFormulario(Form form)
{...
I have a question about our famous MessageBox.Show(); , this command is about an event, method what would it be?
Another question is about instantiating object, in the example below we are getting our login form and creating a variable...
Below I have a code that it needs to do the following: Create a thread, then start it. When you start the thread, according to the time (random time) the program adds a value in the queue, after being added to the queue, it needs to show how man...
I need to validate the input of values and strings, however I have questions about how to use without using the Regex class, how can I get the solution?
var CampoExpressao = new Regex(@"[0-9]");
Above is a regular expression example code....
Is it possible to use the LinkLabel property to open a type of Modal to display history of a certain item that is stored in a table?
Example:
AndinthisFormyouwouldbringthisinformationthatissuppliedfromthe%
When you click on the...
I have an application with digit buttons and I want to capture the keystrokes and execute the events of those buttons. I added an event of keypress in the window and tried to capture the key typed, but I could not.
Code:
private void...
In a financial system already built by another developer, the Boleto.NET library was used to generate Itaú tickets. I would need to add Santander's ticket generation support, but I can not figure out how to use the library at all.
The code of...
My goal is to make a gallows game.
Basically my problem is this: I have a word divided into substrings for each letter of the word, all stored in a vector. For example:
string[] letras = new string[numletras];
for (int i = 0; i < numle...