What would be the step-by-step of such an upgrade so that the software after going through some change or upgrade does this reflect systems that have the same software?
For example, I have the click event of a button calling the method below:
//Evento
this.serviçoToolStripMenuItem1.Click += new System.EventHandler(this.Nivel_Serv_Click);
//Metodo
private void Nivel_Serv_Click(object sender, EventArgs e...
I read a little of Meta and I thought that this question does not go far from the current rules of the site. Risking losing reputation, come on:
I currently work in a small company that currently manages very sensitive data (documents, addres...
In my program, I inserted a button and a panel . When the button is clicked, logic inserts another form in panel overlapping form initial.
No form2 that appears has a return button, which causes form2 to add...
I have a C # signup. There is a "search street" button that opens a form search child. When you run the search, it displays the result in the datagrid of that form child. I would like the event cell_click of the datagrid to comple...
I need to check if listaContrato items exist in listaPendencia , if there is no enable to false to be disabled on the screen.
What can I do to improve the performance of foreach below? Both lists are List<>...
Good afternoon, I performed the migration of an application running on a windows ce for desktop, the Application uses Sql Server Compact 4.0. and runs very well in the development environment, I have tested in other development machines and all...
I have a loop of repetition that does several iterations and has in its scope calculations that require a lot of processing.
The problem is that when running the code snippet, processor usage will gradually rise, until the application crashes...
Apparently I'm having problems with strings :
public partial class Form1 : Form
{
private int _adicionar;
private int _retirar;
public Form1()
{
InitializeComponent();
}
private void _Random_Click(object send...