Horje
come controllare se textbox è vuota c# Code Example
come controllare se textbox è vuota c#
  private void button1_Click(object sender, EventArgs e)
        {
            if (CheckText(textBox1, textBox2))
            {
                MessageBox.Show("Compilare tutti i campi obbligatori");
            }

            else
            {
                // il resto del tuo codice qui
            }
        }




Csharp


Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11