I have three buttons, one to insert , another to change and one to write .
The record button will work to save data whether it is an insert or a change.
How to identify which button I pressed for the Save button to know if I am recording an insert or a change?
private void button_inserir_Click(object sender, EventArgs e)
{
this.Text = "Inserir dados";
textBox_ordenado.ReadOnly = false;
textBox_ordenado.Enabled = true;
textBox_ordenado.Focus();
textBox_subsidios.ReadOnly = false;
textBox_subsidios.Enabled = true;
textBox_subsidios.TabStop = true;
dateTimePicker_data.Enabled = true;
button_guardar.Visible = true;
}
private void button_alterar_Click(object sender, EventArgs e)
{
this.Text = "Alterar dados";
textBox_ordenado.ReadOnly = false;
textBox_ordenado.Enabled = true;
textBox_ordenado.Focus();
textBox_subsidios.ReadOnly = false;
textBox_subsidios.Enabled = true;
textBox_subsidios.TabStop = true;
dateTimePicker_data.Enabled = true;
button_guardar.Visible = true;
}
private void button_guardar_Click(object sender, EventArgs e)
{
if (button_inserir) // Não sei como fazer
{
// executa uma stored Procedure (inserir)
}
else if (button_alterar) // Não sei como fazer
{
// executa outra stored Procedure (alterar)
}
}